quick-docs/modules/ROOT/pages/_partials/proc_installing-chromium-web-browser.adoc

96 lines
2.4 KiB
Text
Raw Normal View History

2018-01-01 18:05:24 +00:00
[id='installing']
= Installing the browsers
2018-01-01 18:05:24 +00:00
Both Chromium and Google Chrome can be installed on Fedora.
2018-01-01 18:05:24 +00:00
[id='installing-chromium']
== Installing Chromium
2021-01-05 11:12:47 +00:00
Chromium can be installed using the Software application and via command line.
2018-01-01 18:05:24 +00:00
2021-01-17 06:00:51 +00:00
=== Installing Chromium using Software (GUI)
. Click on Software tool in Fedora.
2018-01-01 18:05:24 +00:00
. Search for Chromium Web Browser.
. Click on Install.
2021-01-17 06:00:51 +00:00
=== Installing Chromium using Terminal
. To install Chromium Web Browser, use the command:
2018-01-01 18:05:24 +00:00
+
----
# dnf install chromium
----
+
. To upgrade Chromium, use the command:
+
----
# dnf upgrade chromium
----
2021-01-28 21:32:08 +00:00
[TIP]
====
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.
====
2018-01-01 18:05:24 +00:00
[id='installing-chrome']
== Installing Chrome
2021-01-05 11:12:47 +00:00
Chrome can be installed using Software or a terminal, once the repository is enabled.
2021-01-17 06:00:51 +00:00
=== Installing Chrome using Software (GUI)
2021-01-05 10:40:00 +00:00
. Open the *Software* application.
2021-01-05 10:40:00 +00: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 10:08:29 +00:00
+
2021-01-22 09:22:23 +00:00
image:installing-chromium-or-google-chrome-browsers-0.png[]
2021-01-22 10:08:29 +00:00
+
2021-01-05 10:40:00 +00:00
. Scroll down to find the repository called *google-chrome*. Click on it and choose *Enable*.
2021-01-22 10:08:29 +00:00
+
2021-01-22 09:22:23 +00:00
image:installing-chromium-or-google-chrome-browsers-1.png[]
2021-01-05 10:40:00 +00:00
You can now search for *Google Chrome* in Software, and install it.
2021-01-17 06:00:51 +00:00
=== Installing Chrome using Terminal
2021-01-05 10:40:00 +00:00
The additional repositories can also be managed using a terminal and DNF.
. Install Third Party Repositories
2021-01-05 11:01:12 +00:00
+
2021-01-05 10:40:00 +00:00
----
$ sudo dnf install fedora-workstation-repositories
----
+
. Enable the Google Chrome repo:
+
----
$ sudo dnf config-manager --set-enabled google-chrome
----
+
2021-01-05 10:40:00 +00:00
. Finally, install Chrome:
2021-01-05 11:01:12 +00:00
+
----
2021-01-16 12:19:58 +00:00
$ sudo dnf install google-chrome-stable
----
[NOTE]
====
2021-01-16 12:19:58 +00:00
If you want to install the Chrome Dev Channel version, use the following command:
2018-01-01 18:05:24 +00:00
----
2021-01-16 20:55:59 +00:00
$ sudo dnf install google-chrome-unstable
2018-01-01 18:05:24 +00:00
----
2021-01-16 12:19:58 +00:00
If you want to install Chrome Beta use the following:
2018-01-01 18:05:24 +00:00
----
2021-01-16 20:55:59 +00:00
$ sudo dnf install google-chrome-beta
2018-01-01 18:05:24 +00:00
----
====