Opera is a freeware, cross-platform web browser developed by Opera Software and operates as a Chromium-based browser. Opera offers a clean, modern web browser that is an alternative to the other major players in the Browser race. Its famous Opera Turbo mode and its renowned battery saving mode are the best amongst all known web browsers by quite a margin, with a built-in VPN and much more.
In the following tutorial, you will learn how to install Opera Browser on Fedora 36 Linux workstation desktop with optional branches stable, beta, or the nightly development version using the command line terminal with tips on maintaining and removing the browsers if required.
Table of Contents
Update Fedora
First, update your system to ensure all existing packages are up to date to avoid any potential conflict issues during the installation.
sudo dnf upgrade --refresh -y
Import Opera Repository
By default, Opera Browser is not included in the standard Fedora repositories. However, you can quickly create and import the official repository on your system by doing the following.
Import Opera GPG Key
sudo rpm --import https://rpm.opera.com/rpmrepo.key
Import Opera Repository
sudo dnf config-manager --add-repo https://rpm.opera.com/rpm
Optionally, you can update your repository list to reflect the new repository changes.
sudo dnf upgrade --refresh
Install Opera Browser
Install Opera Browser Stable
Now that you have imported the repository, you can now be installed Opera using the following.
Now install the software with the following command:
sudo dnf install opera-stable -y
Once installed, confirm the version of Opera Browser installed. This will also verify the installation was successful.
opera --version
Example output:
Optional. Install Opera Browser Beta or Developer build
Alternatively, you can install Brave Beta or Developer builds if you have downloaded the repositories. These two versions are not recommended daily, especially not on a main desktop or production server. However, you can install alternative versions for those who want to live on the edge.
Install Opera Browser Beta
sudo dnf install opera-beta -y
Verify Opera Browser Beta
opera-beta --version
Example output:
Install Opera Browser Developer
sudo dnf install opera-developer -y
Verify Opera Browser Developer
opera-developer --version
Example output:
Note these do not replace your stable version, and they are installed separately.
How to Launch Opera Browser
With the installation complete, you can run Opera in a few different ways.
First, while you are in your terminal, you can use the following command:
opera
Alternatively, run the opera & command in the background of the current session in your terminal, allowing you to continue using the terminal if need be.
opera &
However, this isn’t practical, and you would use the following path on your desktop to open the course.
Activities > Show Applications > Opera Browser {version}
Alternatively, if you cannot find it, use the search function in the Show Applications menu if you have many applications installed.
Example:
Now open Opera Browser, and you will see the landing page. From here, you can customize the browser to suit your tastes and needs, and it is a beautiful browser with plenty of eye candy while maintaining excellent performance.
Congratulations, you have installed Opera Browser.
How to Update/Upgrade Opera Browser
To update, run the dnf refresh in your terminal as you would check your entire system for any updates, including from the Opera repository.
sudo dnf upgrade --refresh
This should be run as often as possible.
How to Remove (Uninstall) Opera Browser
To remove Opera Browser, execute the following terminal command. Remember to replace the stable version with beta or developer if you use an alternative arrangement.
Remove Opera Browser Stable
sudo dnf autoremove opera-stable
Remove Opera Browser Beta
sudo dnf autoremove opera-beta
Remove Opera Browser Developer
sudo dnf autoremove opera-developer
Note unused dependencies will also be removed.
Ideally, you will want to disable the repository using the following command.
sudo dnf config-manager --set-disable rpm.opera.com_rpm
Comments and Conclusion
In the tutorial, you have learned how to import the Opera repository into the dnf source list and install the web browser by choosing either stable, beta, or developers branches on Fedora 36 Linux.
Opera uses the Chromium page-rendering engine, so you’ll rarely encounter site incompatibilities. Performance is fast, perhaps not the feast in the field. Still, it keeps its own and has unique features that make this an attractive alternative for many mainstream Linux users who want something different besides Firefox that comes standard on nearly all Linux machines.