Installing Firefox on Linux (Debian)
I read somewhere that Firefox was renamed to Iceweasel on Debian. Thus, I can’t install the Google Toolbar for it. So here are the steps for installing Firefox manually in a linux system.
-
Download the source from Mozilla’s site
-
Unpack the source. tar -zxvf firefox-2.0.0.12.tar.gz
-
Create a shell script pointing to the binary of the source.
#!/bin/sh cd /home/rupert/firefox ./firefox & |
-
Grant execute rights to the script.
-
Right click on the top-panel and click “Add To Panel”
-
Choose “Custom Application Launcher” and specify the ff:
Name: "Firefox" Command: /home/rupert/firefox.sh Comment: Mozilla Firefox Browser. |
-
Click on the Left Button to specify an icon to the launcher.
-
Click on Browse and navigate to /home/rupert/firefox/icons
-
Let’s install Google Toolbar.
-
Restart Firefox.
If you want to install the Adobe Flash Plugin, then download the player (install_flash_player_9_linux.tar.gz) from Adobe.
# tar -zxvf install_flash_player_9_linux.tar.gz # cd /home/rupert/install_flash_player_9_linux.tar.gz # ./flashplayer-installer |