🧔 Hello World

My name is Emil. I am a programmer, passionate by coding, music, video and photography

Installing firefox 29 on Ubuntu 9.10

It may be that you simply cannot change the Ubuntu version on your device for some reasons, like notebook display size. Some Ubuntu versions don't work well on 10.1 ich display, but most of them without problems on 14-15 inch or bigger screens. Because of this, you need to use old Ubuntu distribution having new softwares. Default Firefox version in Ubuntu 9 is Firefox 3.5, and there is no way to do update using Ubuntu software Center because there is no repository exept this one:
http://old-releases.ubuntu.com/releases/

So, here how can do it, get last Firefox version 34.5Mb (firefox-29.0.1.tar.bz2) using old firefox 3.5 for dowload or download in terminal.

Start terminal and write following commands:


@ubuntu:cd ~/Downloads/ # select Downloads Folder from /home/your_user
@ubuntu:wget http://dm-download02.mozilla.org/pub/mozilla.org/mozilla.org/firefox/releases/29.0.1/linux-i686/el/firefox-29.0.1.tar.bz2 # download file
@ubuntu:tar -xf firefox-29.0.1.tar.bz2 # extract tar file
@ubuntu:sudo cp -R firefox -d /opt # copy content to /opt Folder


Once the folder copy is in /OPT/ you can create the desktop launcher. Create firefox.desktop file:


sudo gedit /usr/share/applications/firefox.desktop # edit firefox.desktop using gedit


Add this code in firefox.desktop file:


Encoding=UTF-8
Name=Firefox
Comment=Run Firefox
Exec=/opt/firefox/firefox
TryExec=/opt/firefox/firefox
StartupNotify=true
Terminal=false
Type=Application
Icon=/usr/share/pixmaps/firefox.png
GenericName=Web Browser
Categories=Application;Network


Intalling firefox icon for desktop launcher:


@ubuntu:sudo cp /opt/firefox/browser/icons/mozicon128.png /usr/share/pixmaps/ # copy icon to pixmaps folder
@ubuntu:sudo cd /usr/share/pixmaps/ # select pixmaps
@ubuntu:sudo mv mozicon128.png firefox.png # rename png file


End of story :)

Related links


How to install New Firefox on Ubuntu
http://www.maketecheasier.com/8-really-useful-ubuntu-unity-quicklists/

8 Really Useful Ubuntu Unity Quicklists
http://www.maketecheasier.com/8-really-useful-ubuntu-unity-quicklists/