2018-01-01 19:05:24 +01:00
[id='installing']
= Installing the browsers
2017-12-14 18:31:42 +05:30
2018-01-01 19:05:24 +01:00
Both Chromium and Google Chrome can be installed on Fedora.
2017-12-14 18:31:42 +05:30
2018-01-01 19:05:24 +01:00
[id='installing-chromium']
== Installing Chromium
2021-01-05 22:12:47 +11:00
Chromium can be installed using the Software application and via command line.
2018-01-01 19:05:24 +01:00
2021-01-17 17:00:51 +11:00
=== Installing Chromium using Software (GUI)
2017-12-14 18:31:42 +05:30
. Click on Software tool in Fedora.
2018-01-01 19:05:24 +01:00
. Search for Chromium Web Browser.
2017-12-14 18:31:42 +05:30
. Click on Install.
2021-01-17 17:00:51 +11:00
=== Installing Chromium using Terminal
2017-12-14 18:31:42 +05:30
. To install Chromium Web Browser, use the command:
2018-01-01 19:05:24 +01:00
+
----
# dnf install chromium
----
+
. To upgrade Chromium, use the command:
+
----
# dnf upgrade chromium
----
2017-12-14 18:31:42 +05:30
2021-01-29 08:32:08 +11:00
[TIP]
====
2021-01-22 19:58:16 +11:00
If you require support for non-free multimedia formats like H.264 or AAC, or the ability to play DRM-protected media such as Netflix, Spotify, etc. it may be preferable to install the *chromium-freeworld* package from the https://docs.fedoraproject.org/en-US/quick-docs/setup_rpmfusion/[RPM Fusion] repositories, as the necessary plug-ins are already built-in.
====
2017-12-14 18:31:42 +05:30
2018-01-01 19:05:24 +01:00
[id='installing-chrome']
2017-12-14 18:31:42 +05:30
== Installing Chrome
2021-01-05 22:12:47 +11:00
Chrome can be installed using Software or a terminal, once the repository is enabled.
2017-12-14 18:31:42 +05:30
2021-01-17 17:00:51 +11:00
=== Installing Chrome using Software (GUI)
2017-12-14 18:31:42 +05:30
2021-01-05 21:40:00 +11:00
. Open the *Software* application.
2017-12-14 18:31:42 +05:30
2021-01-05 21:40:00 +11:00
. Click on the menu at the top right and select *Software Repositories*.
. Make sure Third Party Repositories is enabled. If the button label is *Install*, then click that button to install the third party repositiories. If the button reads *Remove All* then the third party repositories are already installed.
2021-01-22 21:08:29 +11:00
+
2021-01-22 20:22:23 +11:00
image:installing-chromium-or-google-chrome-browsers-0.png[]
2021-01-22 21:08:29 +11:00
+
2021-01-05 21:40:00 +11:00
. Scroll down to find the repository called *google-chrome*. Click on it and choose *Enable*.
2021-01-22 21:08:29 +11:00
+
2021-01-22 20:22:23 +11:00
image:installing-chromium-or-google-chrome-browsers-1.png[]
2021-01-05 21:40:00 +11:00
You can now search for *Google Chrome* in Software, and install it.
2021-01-17 17:00:51 +11:00
=== Installing Chrome using Terminal
2021-01-05 21:40:00 +11:00
The additional repositories can also be managed using a terminal and DNF.
. Install Third Party Repositories
2021-01-05 22:01:12 +11:00
+
2021-01-05 21:40:00 +11:00
----
$ sudo dnf install fedora-workstation-repositories
----
+
. Enable the Google Chrome repo:
+
----
$ sudo dnf config-manager --set-enabled google-chrome
----
2017-12-14 18:31:42 +05:30
+
2021-01-05 21:40:00 +11:00
. Finally, install Chrome:
2021-01-05 22:01:12 +11:00
+
2017-12-14 18:31:42 +05:30
----
2021-01-16 23:19:58 +11:00
$ sudo dnf install google-chrome-stable
2017-12-14 18:31:42 +05:30
----
[NOTE]
====
2021-01-16 23:19:58 +11:00
If you want to install the Chrome Dev Channel version, use the following command:
2017-12-14 18:31:42 +05:30
2018-01-01 19:05:24 +01:00
----
2021-01-17 07:55:59 +11:00
$ sudo dnf install google-chrome-unstable
2018-01-01 19:05:24 +01:00
----
2017-12-14 18:31:42 +05:30
2021-01-16 23:19:58 +11:00
If you want to install Chrome Beta use the following:
2017-12-14 18:31:42 +05:30
2018-01-01 19:05:24 +01:00
----
2021-01-17 07:55:59 +11:00
$ sudo dnf install google-chrome-beta
2018-01-01 19:05:24 +01:00
----
2017-12-14 18:31:42 +05:30
====