Day two of running Kubuntu Hardy Heron revealed a minor issues: my VirtualBox wouldn't run. VirtualBox appeared to open up fine, until I selected one of my virtual machines to run. It tried to load it, but errored out because it couldn't find the VM files on the system. I'm sure this stemmed from the upgrade process from Gutsy Gibbon and how it rewrites files. The fix was really easy. I simply reinstalled the Deb package and alls good again!
Note: I use the Deb package directly from Innotek, not the one in the Kubuntu repository. At the time of this writing, they only had a Gutsy Gibbon version, but it seems to work just fine on Hardy Heron.
Well, I upgraded my system from Kubuntu Fiesty Fawn to Hardy Heron today. Five minutes into using it, I found my first oddity: the left channel was playing ten time louder than the right on my headphones. After a little bit of digging, playing around, and tweaking, I discovered that if you open up KMix, Right Click on the Output for the device you are using, and select split channels, the problem goes away.
Now that KAMP has successfully been set up on a Kubuntu box, setting up multiple sites on one server is the next logical step. This allows you to do Drupal testing in multiple versions/setups at the same time on one localhost server. To begin, open up Konsole (command line utility) and change to the Apache2 sites-available directory (this is where Apache stores the setup files for each Virtual Host):
cd /etc/apache2/sites-available/
Next, login as root and copy the existing default setup file and name it to the "server" you want to use:
sudo -s (prompts you for your password)
cp default exampleSiteUsing your favorite text editor, modify the newly copied file so that it points to the correct files (using VI in this example):
vi exampleSite
Modify/Add the following lines:
NameVirtualHost * to NameVirtualHost exampleSite:80
<VirtualHost *> to <VirtualHost exampleSite:80>
Add ServerName exampleSite
DocumentRoot /var/www/ to DocumentRoot /var/www/exampleSite/
Over the weekend, Sarah and I went to a bar to listen to her boss' band play (Backhanded Compliment). Overall, it wasn't half bad! However, when I went to search for their MySpace page, I was informed that the site was unable "to find a 'backhanded compliment' on Myspace.com" Huh! Way to go Tom! Way to go MySpace! Now if you could only get rid of the eyesores that people call their page layouts!
Here is the screenshot:
I can't tell you how many times having a Subversion (SVN) repository has saved my butt with clients in the past. Most recently, one of my clients had inadvertently deleted their entire site and did not have any backups to restore it. Dun-Dun-Dah! SVN to the rescue!
However, when restoring the files, it became increasingly frustrating how many times I was asked for my password when browsing the file directories in KDESVN (Hey! Back off! I like using a GUI tool to browse my SVN repos and will eventually learn the command line syntax). So, after I "fixed" somebody else's mistake, I turned my attention to setting up a RSA private key/public key cryptographic pair to be able to access my SVN repository securely, and without being repeatedly asked for my password. Here are the steps I followed: