Saturday, September 26, 2009

Google Earth install

Previous: Firefox 3.5 install

The Linux installation for Google Earth isn't a simple click or double-click. Here's what I did:

1. Open a browser and navigate to http://earth.google.com/download-earth.html.

2. Download the installer for Linux. At the time I did it, the file name was GoogleEarthLinux.bin. Download it to whatever directory you please.

3. Open a Terminal window and go to the directory where you downloaded the installer.

4. Grant execute privileges on the installer. I used

chmod +x GoogleEarthLinux.bin


5. Run the installer with

sh GoogleEarthLinux.bin

Set the installation directory and bin path as you please, following the prompts displayed by the installer.

The install worked fine, but it didn't add an entry to the Applications menu in Gnome. They don't make any assumptions about which desktop you might be using. To add it, I took the following steps:

1. Copied the Google Earth icon from the installation directory to /usr/share/pixmaps.

2. Created a googleearth.desktop file in /usr/share/applications with the following contents:

[Desktop Entry]
Name=Google Earth
GenericName=Google Earth
Exec=googleearth
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=googleearth-icon.png
Categories=Application;Network;
StartupNotify=true

This worked fine.

Next: Freemind install

Friday, September 25, 2009

Firefox 3.5 install

Previous: Value Stream Mapping font

A "normal" Firefox 3.5 for Ubuntu has been created, and it was a recommended system upgrade as of this morning's automatic upgrades. I chose it, and it messed me up badly. The Shiretoko install was gone, but the new Firefox 3.5 did not work.

I got around the problem by running sudo apt-get remove firefox-3.5 and then sudo apt-get install firefox-3.5. Fortunately, this cleared up whatever had been clobbered by the earlier install.

Next: Google Earth install

Monday, September 14, 2009

Value Stream Mapping font

Previous: Partial success with Logitech EX100 wireless keyboard and mouse

I came across a useful tool for Value Stream Mapping: A free VSM TrueType font, offered by ambor.com. The ambor.com site provides instructions for installing on Windows and OS X. To install on Ubuntu, I did the following:

  1. Downloaded the .ttf file from ambor.com

  2. Copied the .ttf file to /usr/share/fonts/truetype

  3. Ran the command: sudo fc-cache -fv


The font works nicely with OpenOffice under Ubuntu.

Next: Firefox 3.5 install