Opera browser installation on Ubuntu Debian CentOS systems
The guide below describes how to install the opera browser on Ubuntu systems, Debian and CentOS
We start the terminal and depending on the system:
Ubuntu, Debian, Linux Mint:
We take the key:
1 | wget -qO- https://deb.opera.com/archive.key | sudo apt-key add - |
We serve the repo:
1 | sudo add-apt-repository "deb [arch=i386,amd64] https://deb.opera.com/opera-stable/ stable non-free" |
We update packages:
1 | sudo apt update |
We're installing Opera:
1 | sudo apt install opera-stable |
Fedora, Red Hat, AlmaLinux, Centos:
We add the Key:
1 | sudo rpm --import https://rpm.opera.com/rpmrepo.key |
For a centos:
1 2 3 4 5 6 7 8 9 | sudo tee /etc/yum.repos.d/opera.repo <<RPMREPO [opera] name=Opera packages type=rpm-md baseurl=https://rpm.opera.com/rpm gpgcheck=1 gpgkey=https://rpm.opera.com/rpmrepo.key enabled=1 RPMREPO |
We install:
1 | sudo dnf install opera-stable |