Skip to main content

Virtualbox with Ubuntu and Xubuntu

It has been a few years since I last used Ubuntu Linux and since some of my students are using it, I decided to install it on Virtualbox and see what the fuss is all about.  Ubuntu used to be quite a nice system, but it seems to have regressed terribly and is now almost unusably slow and clunky due to the Unity/Gnome desktop.

My favourite desktop system is KDE.  I like my rotating desktop cube and wobbly windows, but on slower systems, I use the simpler XFCE or LXDE.  Gnome/Unity however, is the Win8 of Linux at this stage of its development and is much unloved.

Security Problems

The Ubuntu desktop also presents a serious security risk in its default configuration, since the Lens sends all your local and remote search activities to various third parties.  Ubuntu now is really a spyware system just like that other legacy system when it is infected with viruses and junkware. The only difference is that in Ubuntu, the spyware is deliberately installed, though it can be deactivated with a dozen or so clicks of the mouse, it doesn't deactivate everything.  The result is that Ubuntu is a total no-no for government users, lawyers, doctors and the like.  Anybody that needs FIPS compliance, should use Red Hat Fedora Linux.

However, Linux is Linux is Linux - so it can be fixed without too much trauma, by switching to the XFCE desktop.

Of course, you can avoid half the hassle by installing Xubuntu to begin with and not Ubuntu, but most people select the default download and then they are disappointed with the performance and don't know how to fix it.  So here, I deliberately use the bad version and then repair it.

Get It

Go to http://www.ubuntu.com/download/desktop and download the latest and greatest version of Ubuntu desktop edition.

Make a VM

Run Virtualbox and make a new VM.  Select Ubuntu Linux for the type, size the disk as 30GB and allocate 1GB RAM to it.  Boot up and select the ISO image file you downloaded from Canonical and let it go with all the defaults.

Fixit

Once you have Ubuntu up and running and experience its sluggishness, you'll be permanently cured of this  version of Linux in no time.

Click the lens at the top left, search for a 'terminal' and install some fixes:
$ sudo apt-get install linux-headers-$(uname -r) build-essential xubuntu-desktop

That lot will ensure that you can use the system for software development as well.

Restart Using XFCE

Restart the VM:
$ sudo reboot

 When you log in, select the XFCE desktop in the round little thingy to the right of your user name.

Your system will now run a hundred times faster.

Install Guest Additions

To make it work properly, you also need to install the guest additions, so that you can resize the screen, make the mouse move smoothly, share files with the host and make sound work.

Click on the top Virtualbox menu bar Devices and Install Guest Additions.  Nothing much will happen.  Open the File System browser and click VBoxAdditions.  Right click and select Open Terminal Here.  Run the VBoxLinux.run file:
$ sudo ./VBoxL[tab] 

Now when you reboot the VM again, things should be honky dory.

Browser Security

While I am on the security complaints topic, you can make your internet browsing a lot more pleasant by installing a couple of add-ons called Adblock Plus and Ghostery.  These two will make your internet browsing much faster and will suppress the worst of the web. These are available for most browsers, even for Google Chrome.  In Firefox, click on Tools, Add-ons and search for them.  In Chrome, click the Spanner, then Tools, Extensions.  It is a similar process in other browsers.

Other VM Optimizations

In a Virtual Machine, you should also disable power management and the screen saver, since they will cause trouble and you already got these features on your host.

Bugs

If the Virtualbox guest additions process complains that it cannot find the correct kernel headers even though you know that you installed them and other things compile just fine, then you may need to upgrade Virtualbox itself on the host machine.  The error message is a maybe a little subtle - it cannot find the correct kernel headers, so you got to upgrade.

La voila!

Herman

Comments

Popular posts from this blog

PCB Mill

PCB Mill Kit My latest toy is a small PCB Mill, a CNC 3018 Pro, there are many available from Ali Express for the enormous sum of 285 Dirhams or so, which is about 70 Euro.  I thought that even if it didn't work at all, it would not be a big loss. Assembled CNC 3018 Kit It will help if you have a little previous workshop experience, but these machines are so simple and relatively slow moving, that any radio-geek can safely experiment. Carving With a V-bit in a Puddle of Oil Of course I can have boards made in China by Dirty PCBs , but what is the fun in that? The problem with making PCB antennas, is that you need to experiment to change the design 1 mm this way or that, to tune it just so and just such and having to wait 2 weeks for each experiment doesn't work.  A few hours playing with a router is more practical. It turned out to be a pretty nice little kit, made from aluminium and 1/4 inch Bakelite (paper reinforced phenol formaldehyde).  This Pre...

Yagi Antenna for 900 MHz ISM Band

I like tinkering with wire antenna designs, since they are simple and cheap to make.  Mr Yagi invented his antenna about 100 years ago, but there are still some things left to learn about it. 900 MHz ISM Band Yagi The 900 MHz ISM band ranges from 902 to 928 MHz.  Covering the whole band with a single Yagi antenna is difficult, since they are inherently narrow band devices.  Consequently some tweaking is required and the result below is a desensitized design that can be built and replicated quite easily, but you need a network analyzer - "To Measure, is to Know!" A Yagi generally consists of a Reflector, Radiator and one or more Director elements, arranged on a boom.  For a small Yagi, a wooden ruler works a treat, since one can easily mark the position of the wires.  The wire elements are fastened to the bottom of the ruler with hot glue.  The wire elements are  made from straightened out jumbo size paper clips.  The balun, is tw...

OpenEMS with Octave and SciLAB

I wanted to do some advanced RF antenna development work and needed an electromagnetic field solver that is a bit more up to date than NEC2 .  Commercial solvers from Matlab , Ansys and others are hideously expensive (in the order of $20,000 to $50,000) and do not fit in the wallet of a hobbyist or a small consulting company.  Recently, openEMS became available and it fills the niche with a capable free tool.  In general, openEMS is a solver - a Finite-Difference Time-Domain (FDTD) numerical engine.  You interact with it through Octave , which is almost identical to Matlab .  You can watch a good video by Thorsten Liebig here: https://www.youtube.com/watch?app=desktop&v=ThMLf0d5gaE   Getting it to work is a little painful, but it is free, so bear with it - then save a backup clone, or a zipped copy of the whole virtual machine directory and NEVER update it, to ensure that it keeps going and doesn't get broken by future updates, right when you are ...