HowTo: Install Firefox 3.5 in Ubuntu
July 02nd, 2009 | Category: UncategorizedIf you’re impatient like me you won’t want to wait for Firefox 3.5 to hit the repositories to take advantage of its slick new features such as location aware browsing, and native open audio/video support under HTML5 . Luckily installing from source is a piece of cake. Simply download the Linux source file most relevant to you and read on below:
Note: Whenever you’re compiling from source code you’ll need to make sure you’ve got the build-essential package installed. If you’re unsure, enter the following command in your terminal:
sudo apt-get install build-essential
After downloading the source file, a tar.bz2 file, you’ll need to extract it. To keep things simple, I recommend extracting the file to your home folder. First, use the command line to navigate to the directory to which you downloaded the file. Then enter this to extract to your home folder :
tar -xvjf ./firefox-3.5.tar.bz2 -C ~/ && rm ./firefox-3.5.tar.bz2
Note: this command also removes the downloaded archive after extracting to your home folder.
To run your updated Firefox simply enter this command:
~/firefox/firefox
You’ll want to redirect any icons on your panel/desktop/dock to that file for the time being. That is, until the most recent version of Firefox is added to the Ubuntu repositories. You’ll notice that this method leaves any previously installed versions of Firefox intact on your system. Which means that your plugins, add-ons, and profiles will all be fine. So, when the upgrade manages to percolate its way onto your system through the repositories simply remove the directory created above and point your icons back to ~/.mozilla/firefox to restore them.
No comments
Creative Commons #1: All-Star Wallpaper
January 15th, 2009 | Category: Art, Creative CommonsHere’s the first of what I hope to be a series of posts in which I publish some sort of free content under the Creative Commons license. The idea for this design originated from a shirt in the movie “Step Brothers” with Will Ferrell and John C. Reilly. Though, the design itself is based off of these Creative Commons licensed photographs by users BigGolf and tombothetominator. Without further ado:
In the spirit of sharing, here is a vector file so that you may build upon the work if you wish.
All-Star Wallpaper by Patrick Micka is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License.
Based on these two works.
2 comments
HowTo: Change the Google Search Box Icon In Ubuntu Linux
January 15th, 2009 | Category: How To, Linux, UbuntuEarlier this month Google unveiled yet another of it’s favicons. Though some disagree, I feel that this version is a lot nicer than any previous iteration, especially the one they released June of last year. Popular productivity blog Lifehacker recently posted instructions on how to replace the old Google icon in the search bar with the newer version. Though they didn’t provide any instructions for Linux users.
Here’s how I changed the Google favicon in the search bar through the command line:
To download the new .xml file which stores the search engine plugin to the desktop, we first need to change the current directory with this command:
cd ~/Desktop
Next, grab the new file with the following command:
wget http://www.mozillalinks.org/download/google.xml
Then, delete, and subsequently replace, the old one by entering the two commands below:
sudo rm /usr/lib/firefox-addons/searchplugins/google.xml
sudo cp ~/Desktop/google.xml /usr/lib/firefox-addons/searchplugins/google.xml
If you get some sort of “no such file or directory” message when trying to delete the old google.xml file use the following command to locate it and modify the steps noted above to reflect the directory which it is located in.
sudo find / -name ‘google.xml’
After you’ve completed the switch successfully simply restart Firefox and enjoy responsibly.
1 comment
HowTo: Ubuntu Eye Candy
January 10th, 2009 | Category: How To, Linux, UbuntuLet’s face it. Not everyone likes orange and brown that much.
This guide will serve as a reference for future posts. Additionally, I hope that it will provide you with the framework and knowledge needed to customize your desktop in a way that reflects your personal preference. However, nothing in this post is set in stone, take as much or as little of it as you’d like. I’m open to criticism about what things you think I left off this list, so feel free to add more in the comments section. Take this as a list of ideas and suggestions to shape the feel of your desktop any way you’d like.
Compiz
Compiz is a compositing window manager for the X Window System that allows you to take advantage of all sorts of desktop effects, such as translucency, dimming, and desaturation. You should find a basic control panel in System > Preferences > Appearance > Visual Effects. Unfortunately, this set of controls does not provide the ability to fine tune individual effects and setting. Another program exists that will allow you to take advantage of a broader range of features, as well as turn off those you don’t want. However, this compiz settings manager is not installed by default. To enable it simply type the following command into the terminal:
sudo apt-get install compizconfig-settings-manager
After that’s finished installing, you should have a new entry in your main menu under System > Preferences > CompizConfig Settings Manager.
Emerald
Emerald is a window decorator for the Compiz compositing window manager. As opposed to the standard GTK+ engine packaged with GNOME this manager, in my opinion, allows for a much prettier overall look. Though not necessary, it’s worth a look. To install it just run the following command in the terminal:
sudo apt-get install emerald
Afterwards, you’ll want to download a theme from one of the many sites dedicated to customization such as www.gnome-look.org or www.beryl-themes.org and install them via the menu located in System > Preferences > Emerald Theme Manager.
Conky
Conky is a highly customizable free software system monitor for the X Window System that has been getting a lot of attention recently by websites likeLifehacker. To get started, install with the following command:
sudo apt-get install conky
Installation is simple, though customization can be tricky if you’re unfamiliar with using a text editor to do these sorts of things. I recommend simply running the program with its default setup by typing “conky” into your terminal as well as familiarizing yourself with the documentation on Conky’s website before proceeding. Once you’re ready to move on, create a .conkyrc file in your home folder or grab one from one of the many places where you might find one.
Avant Window Navigator
Avant Window Navigator, AWN, is a dock-like bar which sits at the bottom your screen and tracks open windows and provides useful applets. It is a bit more abstract than simply managing your windows as buttons or segments in a panel. I recommend changing the shape of the bar. Though it does use icons to minimize screen space and adds visual appeal, I do not recommend this application for users with smaller screens. To install AWN follow this steps:
First, add the AWN personal package archive repository to your sources with the following command:
sudo gedit /etc/apt/sources.list
Then paste the following three lines at the bottom of the text ediror:
#AWN PPA
deb http://ppa.launchpad.net/awn-testing/ubuntu intrepid main
deb-src http://ppa.launchpad.net/awn-testing/ubuntu intrepid main
Install with the following two commands:
sudo apt-get update
sudo apt-get install avant-window-navigator-trunk awn-manager-trunk awn-extras-applets-trunk
You should then find AWN in your Applications menu.
This is by no means and exhaustive set of instructions for customizing your desktop. Though, it should provide you with some basic tools for customizing your experience. If you run into any problems with any of these instructions, let me know.
3 comments
HowTo: Install Mozilla Thunderbird 3 Beta
December 22nd, 2008 | Category: How To, Linux, Muxtape Monday, Ubuntu
One of the things I’ve never really been fond of, on any computer, are desktop email clients. This is especially the case when they come preloaded on the machine. I find that using Gmail fulfills most of my needs, however, if you’re on a Linux machine and simply must have a desktop email client I highly recommend using Mozilla’s Thunderbird over Evolution.
First, grab your preferred version here.
Next, you’re going to need to open a terminal and enter the following two commands to extract the archive you just downloaded:
cd ~/Desktop
tar xfvj thunderbird-3.0b1.tar.bz2
You don’t need the original archive any longer, so delete with the following command:
rm ~/Desktop/thunderbird-3.0b1.tar.bz2
After you’ve unpacked the archive enter the following command to move it to a more convenient location:
mv thunderbird /opt/thunderbird3.0b1
Everything should be in order now, so let’s move to the directory and make sure it works:
cd /opt/thunderbird3.0b1/
Finally, run the following command to launch Thunderbird:
./thunderbird
If everything works fine and you’ve set up your email accounts with little frustration. Next, you may want to create a clickable icon on your desktop so you don’t have launch the program via the command line. To create a desktop icon, simply right-click and select “Create Launcher…” Then follow out the dialogue box with the following information:
Type: Application
Name: Thunderbird 3.0b
Command: /opt/thunderbird3.0b1/thunderbird
Commont: This launches Thunderbird 3.0 beta.
2 comments




