How To

Install Opera Web Browser on Ubuntu 18.04: Complete Setup Guide

Opera is one of the most popular cross-platform web browsers in the world, available on Windows, macOS, Linux, iOS, and Android. On Linux, it offers a genuinely differentiated experience compared to Chrome or Firefox.

Opera is built on the same Blink rendering engine as Google Chrome, which means near-identical compatibility with modern websites. What sets it apart is a strong collection of built-in features. It ships with a free built-in VPN that routes your browser traffic through Opera’s servers to mask your IP address, making it useful for accessing geo-restricted content without installing a third-party extension. It also includes a built-in ad blocker, a Battery Saver mode that reduces background tab activity to extend laptop runtime, and a Crypto Wallet for managing digital assets and interacting with Web3 applications.

Opera is also compatible with Google Chrome extensions. You can install any Chrome extension directly from the Google Web Store using Opera’s built-in Chrome extension compatibility add-on, giving you access to thousands of tools without switching browsers.

Opera is not open-source and is not included in Ubuntu’s default repositories. This guide explains how to install Opera on Ubuntu 18.04 from the official Opera APT repository.

<strong>Prerequisite:</strong>&nbsp;You need sudo access.

Install Opera on Ubuntu

Add the Opera GPG signing key:

bashwget -qO- https://deb.opera.com/archive.key | sudo apt-key add -

Add the Opera APT repository to your sources list:

bashecho deb https://deb.opera.com/opera-stable/ stable non-free | sudo tee /etc/apt/sources.list.d/opera.list

Update the package list and install Opera:

bashsudo apt updatesudo apt install opera-stable

During installation, you will be prompted whether to create a new repository file. Select No — you already added the repository manually in the step above. Selecting Yes creates a duplicate entry.

Launch and Configure Opera

Once installed, start Opera from the command line by typing opera, or open it from the application launcher via Activities > Opera.

The first time you open Opera, you are taken to a welcome screen where you can set your preferred theme, configure the sidebar, and set up your start page. If you are switching from Chrome or Firefox, Opera can import your bookmarks and saved passwords directly from this screen without any manual export step.

The sidebar gives you quick access to bookmarks, history, downloads, messaging apps like WhatsApp and Telegram, and a feature called Workspaces. Workspaces let you group tabs into separate contexts, such as one for work and one for personal browsing, and switch between them instantly without mixing all tabs together in a single bar.

Update and Uninstall Opera

Opera is tied to the APT repository you added during setup. When a new version is released, update it the same way you update any system package:

bashsudo apt updatesudo apt upgrade

To remove Opera and disable the repository:

bashsudo apt remove --auto-remove opera-stablesudo rm -f /etc/apt/sources.list.d/opera.list

The --auto-remove flag also removes any packages that were installed solely as Opera dependencies and are no longer needed on your system.

Opera is now set up on your Ubuntu 18.04 desktop. The built-in VPN, ad blocker, and Chrome extension compatibility make it a strong alternative to mainstream browsers. Leave a comment below if you run into any issues during installation.

Cyber Defence

Recent Posts

Install PHP on Ubuntu 26.04: Apache, Nginx, and Multiple Versions

PHP 8.5 is included in Ubuntu 26.04's default repositories and is the recommended version for…

2 days ago

Upgrade to Ubuntu 26.04 from 25.10 and 24.04 LTS: Complete Guide

Ubuntu 26.04 LTS "Resolute Raccoon" arrived on April 23, 2026 with Linux kernel 7.0, GNOME 50,…

2 days ago

Install Kubernetes on Ubuntu 26.04 with kubeadm and containerd

Kubernetes is the standard platform for running containerized workloads across multiple servers with self-healing, rolling…

2 days ago

Install Ubuntu 26.04: Bootable USB, Partitioning, and First Steps

Ubuntu 26.04 LTS "Resolute Raccoon" was released on April 23, 2026 with Linux kernel 7.0, GNOME desktop, and standard security support until April 2031. A clean install gives you a known-good starting point on new hardware, when replacing another operating system, or when an upgrade path is not practical. This guide walks through how to install Ubuntu 26.04: downloading and verifying the ISO, writing a bootable USB drive, completing the installer, and doing the initial setup after the first boot. Before you start: You need a USB drive with at least 12 GB of free space. Back up any existing data on the target machine — the installer can erase the entire disk. Install Ubuntu 26.04: Download the ISO…

2 days ago

Change Timezone on Ubuntu: timedatectl and Desktop GUI Guide

The correct timezone affects more than the clock on your screen. It drives cron job scheduling, systemd timer execution, log file timestamps, database record timing, and SSL certificate validity checks. A mismatched timezone can cause scheduled jobs to fire at the wrong hour and make log timestamps impossible to match with real-world events. This guide shows how to change timezone on Ubuntu using the timedatectl command (the recommended approach for servers and remote machines) and through the graphical Date & Time settings on desktop systems. The steps apply to all current Ubuntu releases including 24.04 and 26.04. <strong>Prerequisite:</strong>&nbsp;Only&nbsp;the&nbsp;root&nbsp;user&nbsp;or&nbsp;a&nbsp;user&nbsp;with&nbsp;sudo&nbsp;access&nbsp;can&nbsp;change&nbsp;the&nbsp;system&nbsp;timezone. Check the Current Timezone Before You Change It Run timedatectl with no arguments to see the active timezone and clock status: bashtimedatectl Sample output: Local…

2 days ago

Install Atom on Ubuntu 18.04: GitHub’s Code Editor APT Setup

Atom is a free, open-source, cross-platform code editor developed by GitHub. Built on Electron, it uses…

2 days ago