A Django site.
November 14, 2008
» Install Google Earth on Ubuntu 8.10 “Intrepid Ibex”

Recently I blogged about “What Do You Do Post-Install?” to find out what little tweaks everyone applies to their systems on a fresh machine.  It appears that a lot of you enable the Medibuntu repository right away and take advantage of that for media and codecs.  Did you know there are also other applications available, like Google Earth?

This post is an update to a previous article I wrote, this time specific to Ubuntu 8.10 “Intrepid Ibex”.

Configure the Medibuntu Repository

As mentioned above, the first thing that you’ll need to configure is the addition of the Medibuntu repositories.  Setting up this third-party repository can be done by way of a few quick commands:

sudo wget http://www.medibuntu.org/sources.list.d/intrepid.list -O /etc/apt/sources.list.d/medibuntu.list

sudo aptitude update && sudo aptitude install medibuntu-keyring && sudo aptitude update

This will add the Medibuntu repository, import the Medibuntu GPG key and make the new packages available.

Install Google Earth

To then install Google Earth simply use:

sudo aptitude install googleearth-4.3

You should now have Google Earth added to your “Applications > Internet” menu and, assuming your video card supports the requirements, you’re ready to virtually travel the planet!

Depending on your video card you may want to disable the atmospheric rendering, which can greatly increase performance. This can be done by unchecking the following setting:

View > Atmosphere

If, for some reason, Google Earth doesn’t load properly or crashes on your machine you could try to revert to an older version which seems to have less issues. To do that remove the 4.3 version and try the 4.2:

sudo aptitude remove googleearth-4.3 && sudo aptitude install googleearth-4.2

Other Points of Interest

June 24, 2008
» Install Google Earth on Ubuntu 8.04

Recently I blogged about installing Adobe Acrobat reader by way of the Medibuntu repository.  This got me thinking about some of the other great (albeit non-free) software that is available there.  Here I’ll review how to add the Medibuntu repository and then how to install Google Earth!

Configure the Medibuntu Repository

Setting up this third-party repository can be done by way of a few quick commands:

sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list

sudo apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get update

This will add the Medibuntu repository, import the Medibuntu GPG key and make the new packages available.

Install Google Earth

To then install Google Earth simply use:

sudo apt-get install googleearth-4.3

You should now have Google Earth added to your “Applications” menu and, assuming your video card supports the requirements, you’re ready to virtually travel the planet!

One thing that I did find which helped greatly regarding performance was disabling the atmosphere rendering.  This can be done via:

View > Atmosphere : uncheck

If, for some reason, Google Earth doesn’t load properly or crashes on your machine you could try to revert to an older package version which seems to have less issues.  To do that use:

sudo apt-get install googleearth-4.2

Related

June 23, 2008
» Install Adobe Acrobat Reader 8.1.2 on Ubuntu 8.04

I figured it was time to update my previous posts on how to install Adobe Acrobat Reader for Ubuntu 8.04.  It has become much simpler to install than it has been in the past, meaning it can be installed via a proper .deb package.  It is not available in the main Ubuntu repositories, but it is available in Medibuntu.

Install Adobe Reader 8.1.2 on Ubuntu 8.04

All you’ll need to do in order to install Adobe Reader is add the Medibuntu repository.  This can be done via:

sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list

Once that is done you’ll likely want to add the Medibuntu GPG key as well:

sudo apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get update

..and finally install Adobe Reader v8.1.2 (at the time of this writing) by using:

sudo apt-get install acroread

Related