Difference between revisions of "Mozilla Firefox"
Views
Actions
Namespaces
Variants
Tools
imported>Dalto m (Dalto moved page Install Firefox in your home directory to Mozilla Firefox: Use this article as the basis for a generic firefox page) |
imported>Dalto (First pass update and generalization of the page) |
||
Line 1: | Line 1: | ||
__TOC__ | |||
=Installing Firefox= | |||
Firefox can be installed using the package '''firefox''' in your favorite package manager or using the command: | |||
pamac install firefox | |||
=Other Versions= | |||
{| class="wikitable" | |||
! Package Name !! Source !! URL !! Description | |||
|- | |||
| firefox-developer-edition || repo || https://www.mozilla.org/firefox/channel/#developer || Official Developer Edition builds | |||
|- | |||
| firefox-nightly || aur || https://www.mozilla.org/en-US/firefox/nightly || Official Nightly builds | |||
|- | |||
| firefox-kde-opensuse || aur || https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox || OpenSUSE's version of Firefox includes appmenu integration and native plasma integration | |||
|- | |||
| firefox-appmenu || aur || https://aur.archlinux.org/packages/firefox-appmenu/ || Unofficial Firefox build with appmenu patches added | |||
|- | |||
| firefox-esr || aur || https://www.mozilla.org/en-US/firefox/organizations/ || Official ESR releases. This is the oldest supported version of Firefox | |||
|} | |||
=Installing Firefox directly from the Mozilla Website= | |||
Generally it is better to use the version of Firefox that is available in the repos but installing Firefox directly has one advantage: Firefox will update itself automatically as soon as an update is available. | |||
This is great for users, who want to get the latest update as soon as possible without waiting for the next Manjaro update. | |||
==Download Firefox from Mozilla== | |||
Download the latest Firefox in your language from here: https://www.mozilla.org/en-US/firefox/all/ | |||
Most users will download "Linux 64-bit" in your chosen language. If you are using manjaro32, download "Linux 32-bit" | |||
==Extract the files== | |||
Ensure that '''~/bin''' exists with | |||
mkdir -p ~/bin | |||
Unpack/extract the downloaded <code>firefox-xx.x.tar.bz2</code> file to ''~/bin/'' using a graphical tool or with the ''tar'' command. Here is an example: | |||
tar -xf ~/Downloads/firefox-66.0.5.tar.bz2 --directory ~/bin | |||
You can now start to use Firefox by double clicking on the file (or executing it in a terminal): | You can now start to use Firefox by double clicking on the file (or executing it in a terminal): | ||
Line 28: | Line 50: | ||
==Create an icon== | |||
Let's create an icon in order to start Firefox much more easily. | |||
Create an empty file | |||
mkdir -p ~/.local/share/applications | |||
touch ~/.local/share/applications/firefox.desktop | |||
Edit the file ''~/.local/share/applications/firefox.desktop'' in your favorite editor. For a list of common editors see [[Viewing_and_editing_configuration_files|this page]] | |||
Copy and paste the following code into your <code>firefox.desktop</code> file and save it: | Copy and paste the following code into your <code>firefox.desktop</code> file and save it: | ||
Line 45: | Line 71: | ||
StartupNotify=false | StartupNotify=false | ||
In most Desktop Environments(DEs), Firefox will now be added to the menu. In some DEs you can click on the desktop to launch the application as well. | |||
=See also= | |||
* [https://wiki.archlinux.org/index.php/Firefox The arch wiki page] | |||
* [[Internet_Browsers|Internet Browsers wiki page]] | |||
[[Category:Contents Page]] | [[Category:Contents Page]] |
Revision as of 01:09, 21 May 2019
Installing Firefox
Firefox can be installed using the package firefox in your favorite package manager or using the command:
pamac install firefox
Other Versions
Package Name | Source | URL | Description |
---|---|---|---|
firefox-developer-edition | repo | https://www.mozilla.org/firefox/channel/#developer | Official Developer Edition builds |
firefox-nightly | aur | https://www.mozilla.org/en-US/firefox/nightly | Official Nightly builds |
firefox-kde-opensuse | aur | https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox | OpenSUSE's version of Firefox includes appmenu integration and native plasma integration |
firefox-appmenu | aur | https://aur.archlinux.org/packages/firefox-appmenu/ | Unofficial Firefox build with appmenu patches added |
firefox-esr | aur | https://www.mozilla.org/en-US/firefox/organizations/ | Official ESR releases. This is the oldest supported version of Firefox |
Installing Firefox directly from the Mozilla Website
Generally it is better to use the version of Firefox that is available in the repos but installing Firefox directly has one advantage: Firefox will update itself automatically as soon as an update is available. This is great for users, who want to get the latest update as soon as possible without waiting for the next Manjaro update.
Download Firefox from Mozilla
Download the latest Firefox in your language from here: https://www.mozilla.org/en-US/firefox/all/
Most users will download "Linux 64-bit" in your chosen language. If you are using manjaro32, download "Linux 32-bit"
Extract the files
Ensure that ~/bin exists with
mkdir -p ~/bin
Unpack/extract the downloaded firefox-xx.x.tar.bz2
file to ~/bin/ using a graphical tool or with the tar command. Here is an example:
tar -xf ~/Downloads/firefox-66.0.5.tar.bz2 --directory ~/bin
You can now start to use Firefox by double clicking on the file (or executing it in a terminal):
~/bin/firefox/firefox
Create an icon
Let's create an icon in order to start Firefox much more easily.
Create an empty file
mkdir -p ~/.local/share/applications touch ~/.local/share/applications/firefox.desktop
Edit the file ~/.local/share/applications/firefox.desktop in your favorite editor. For a list of common editors see this page
Copy and paste the following code into your firefox.desktop
file and save it:
[Desktop Entry] Name=Firefox GenericName=Web Browser Icon=~/bin/firefox/browser/icons/mozicon128.png Type=Application Categories=Application;Network;WebBrowser; Exec=~/bin/firefox/firefox Terminal=false StartupNotify=false
In most Desktop Environments(DEs), Firefox will now be added to the menu. In some DEs you can click on the desktop to launch the application as well.