My things will be straigtforward
sudo apt-get update
sudo apt-get upgrade
sudo apt get install iceweasel
My things will be straigtforward
sudo apt-get update
sudo apt-get upgrade
sudo apt get install iceweasel
The way I did it was I went here, the instructions were to run:
aptitude install iceweasel
But I got a message saying it must be run as root so I ran:
sudo aptitude install iceweasel
And Iceweasel was installed.
As an update to this Iceweasel is no longer available. Attempting to install it will instead install Firefox. The package for Iceweasel was discontinued in February of 2016. For more information on this please see this thread.
To install Firefox start by running:
sudo apt-get update && apt-get upgrade
Followed by:
sudo apt-get icesweasel
This will install Firefox not Iceweasel.
To install the latest beta version of Firefox:
sudo nano /etc/apt/sources.list
In the file add the following lines of code:
deb http://ppa.launchpad.net/ubuntu-mozilla-security/ppa/ubuntu trusty main
deb-src http://ppa.launchpad.net/ubuntu-mozilla-security/ppa/ubuntu trusty main
deb http://ppa.launchpad.net/mozillateam/thunderbird-next/ubuntu trusty main
deb-src http://ppa.launchpad.net/mozillateam/thunderbird-next/ubuntu trusty main
Then save the file with exiting. The following command installs Firefox and Thunderbird:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A6DCF7707EBC211F && sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9BDB3D89CE49EC21 && sudo apt-get update && sudo apt-get install firefox thunderbird
The second method will only work with a Pi 2 or a Pi 3. For more information see here.
apt
andapt-get
are different commands. Last one should besudo apt install iceweasel
.apt-get
is legacy, preferapt
. – Mikko Ohtamaa Mar 04 '16 at 22:32