To enable bash autocompletion in Ubuntu Jaunty you need to perform 2 simple actions:
Install bash-completion:
sudo apt-get install bash-completion
Add these lines to the end of /etc/bash.bashrc:
if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi
After installing Ubuntu 9.04 server at some VPS providers you get one with POSIX locale by default. It makes Midnight Commander look ugly when working over ssh from Windows box with CP1251 locale enabled. To return UTF-8 back two simple actions should be done:
sudo locale-gen en_US.UTF-8 sudo update-locale LANG=en_US.UTF-8
If your WordPress installation won't download and install modules and themes from web interface after filling in FTP username/password saying Unable to locate WordPress Content directory (wp-content) and you can't manage your FTP account settings you could try to modify wp-config.php.
To enable Java server VM on your Windows box set JAVA_HOME to your JDK installation path. Then add %JAVA_HOME%\bin to the beginning of Path variable and work is done.