Mac OS X List ports
Posted by pebuchmann on 27 Jun 2010 | Tagged as: Mac OS X
This command lists all port entries which contain the token LISTEN:
lsof -i | grep LISTEN
Posted by pebuchmann on 27 Jun 2010 | Tagged as: Mac OS X
This command lists all port entries which contain the token LISTEN:
lsof -i | grep LISTEN
Posted by pebuchmann on 25 Jun 2010 | Tagged as: Uncategorized
I found this useful hint on how to reset the password for any postgres user on Windows:
net user postgres postgres
Posted by pebuchmann on 17 Jun 2010 | Tagged as: Uncategorized
Explanation for the “Version …” conflict error message when deplyoing a portlet to liferay:
Posted by pebuchmann on 16 Jun 2010 | Tagged as: Software Development
Instrcutions on how to change the system time in a VirtualBox BIOS can be found here.
Note: For my version I used
VBoxManage modifyvm WindowsXP --biossystemtimeoffset -206150400000
rather then the sugested
VBoxManage modifyvm "Windows Whistler 2419" -biossystemtimeoffset -206150400000
Posted by pebuchmann_super on 12 Jun 2010 | Tagged as: Software Development
Posted by pebuchmann on 11 Jun 2010 | Tagged as: Software Development
Tutorial about logging in Grails
Posted by pebuchmann_super on 29 Nov 2009 | Tagged as: Uncategorized
To create a symbolic link:
ln -s /Volumes/Classic/ Classic
results in:
Classic -> /Volumes/Classic/
To get rid of the symbolic link:
unlink Classic
Posted by pebuchmann_super on 14 Sep 2009 | Tagged as: Uncategorized
This annoying error message when working with subversions is most likely due to locked files. To unlock files in a folder recursively use:
chflags -R nouchg [files]
More background information on the problem can be found at unlocking files on Mac OS X.
Posted by pebuchmann_super on 12 Sep 2009 | Tagged as: Uncategorized
Found this great blog entry that explains the minutes of setting up an infrastructure on Mac OS X for working with the Apache build system.