1 / 3
Caption Text
2 / 3
Caption Two
3 / 3
Caption Three margin testing

Saturday, January 30, 2010

How to install Firefox 3.6 in Ubuntu Karmic/Jaunty/Intrepid/Hardy

How to install Firefox 3.6 in Ubuntu Karmic/Jaunty/Intrepid/Hardy | Ubuntu Geek

Install Firefox 3.6 on Intreped, HL 20100130

(Using GUI to remove Firefox 3.0 first, keep configuration by not selecting completely remove)

Problem:
First you need to edit /etc/apt/sources.list file
deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu intrepid main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu intrepid main

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 247510BE
sudo apt-get update
W: GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9BDB3D89CE49EC21
W: You may want to run apt-get update to correct these problems

Fix:
Enter this command, replacing 247D1CFF with your NO_PUBKEY-key last eight digits from the error-message to import the key:
gpg --keyserver keyserver.ubuntu.com --recv CE49EC21

Then add the key to your software sources, again, replace 247d1cff with the keynumber used in above command:
gpg --export --armor CE49EC21 | sudo apt-key add -

Then update your software sources and install:
sudo apt-get update
sudo apt-get install firefox-3.6

-----------

If you want to install this on your ubuntu system use this tutorial (Ubuntu Karmic/Jaunty/Intrepid/Hardy)

You can check here what is new in firefox 3.6 from here

Note:- This will install Firefox 3.6 daily builds

For Ubuntu 9.10 Users

Open the command prompt and run the following commands

sudo add-apt-repository ppa:ubuntu-mozilla-daily/ppa

Update source list

sudo apt-get update

Install firefox 3.6

sudo apt-get install firefox-3.6

For Other ubuntu version Users

First you need to edit /etc/apt/sources.list file

gksudo gedit /etc/apt/sources.list

Add the one of the following lines

For Ubuntu 9.04 (Jaunty) Users

deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu jaunty main

For Ubuntu 8.10 (Intrepid) Users

deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu intrepid main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu intrepid main

For Ubuntu 8.04 (Hardy) Users

deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu hardy main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu hardy main

Save and exit the file

Now you need to add PPA GPG key

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 247510BE

Update the source list

sudo apt-get update

Install Firefox 3.6

sudo apt-get install firefox-3.6

If you already have a version of Firefox 3.5 installed from a repo then upgrade using the following command

sudo apt-get upgrade

Featured Post

Windows和Ubuntu双系统完全独立的安装方法

http://www.ubuntuhome.com/windows-and-ubuntu-install.html  | Ubuntu Home Posted by Snow on 2012/06/25 安装Windows和Ubuntu双系统时,很多人喜欢先安装windows,然...