Archive for December, 2011
Installing NetBeans on Xubuntu 10.04
by Blake on Dec.14, 2011, under Computer Stuff, Linux
Installing NetBeans is simple in Ubuntu, but Xubuntu doesn’t seem to have the package in its repositories. The following will guide you through the install.
First thing needed is Java. You can install the openJDK or the sunJDK.
For openJDK
sudo apt-get install openjdk-7-jdk
For Sun JDK
sudo apt-get install sun-java6-jdk
Next we need to download the NetBeans installer. Navigate to NetBeans.org and download the version you require.
After the download has completed run the following to begin the install.
sudo sh ./netbeans-x.sh
Replace x with the version you have downloaded.
And that is it! You now have NetBeans installed.
VirtualBox Guest Additions install Kubuntu 10.04
by Blake on Dec.13, 2011, under Computer Stuff, Linux
Install VirtualBox’s guest additions are relativly stright forward in Ubuntu. But for Kubuntu 10.04 it’s takes a little more work.
Open the terminal and execute the following commands. First, check to make sure the system is up to date.
sudo apt-get update sudo apt-get upgrade
Restart the system after these have been installed. Next we need to install and get a few things.
sudo apt-get install dkms sudo apt-get install build-essential
Restart the system again.
Now we can install the guest additions. Devices -> Install Guest Additions… Virtual CD should mount automatically.
cd /media/VBoxLinuxAdditions_x sudo ./VBoxLinuxAdditions.run
Install might take a little while to compile. After it has completed, restart the system. Guest additions have now been successfully installed.