Vous êtes ici : Accueil / Ubuntu GNU/Linux / Logiciels / Installer le navigateur Internet Opera sur Ubuntu

Installer le navigateur Internet Opera sur Ubuntu

Par Pierre-Yves Landuré Dernière modification 02/03/2018 18:04

Opera est une alternative commerciale gratuite à Mozilla Firefox (et autres navigateurs du monde GNU / Linux). Cette page vous aide à l'installer sur Ubuntu.

Ce guide est testé sur:

  • Ubuntu 8.10 Intrepid Ibex
  • Ubuntu 9.04 Jaunty Jackalope
  • Ubuntu 11.04 Natty Narwhal
  • Ubuntu 11.10 Oneiric Ocelot
  • Ubuntu 13.04 Raring Ringtail
  • Ubuntu 13.10 Saucy Salamander

Installation

Installez le logiciel:

sudo bash -c 'command echo "# This file makes sure that Opera Browser is kept up-to-date
# as part of regular system upgrades

deb http://deb.opera.com/opera/ stable non-free #Opera Browser (final releases)

# The line above will make sure you get all final public releases.
# Uncomment the following line if you want to get alpha and beta
# releases, too.

# deb http://deb.opera.com/opera-beta/ stable non-free #Opera Browser (beta releases)" \
> "/etc/apt/sources.list.d/opera.list"
command wget -q "http://deb.opera.com/archive.key" \
--quiet --output-document="-" \
| command apt-key add -
command apt-get update
command apt-get install opera'

Détails de l'installation

Configurez les dépôts de l'application:

echo "# This file makes sure that Opera Browser is kept up-to-date
# as part of regular system upgrades

deb http://deb.opera.com/opera/ stable non-free #Opera Browser (final releases)

# The line above will make sure you get all final public releases.
# Uncomment the following line if you want to get alpha and beta
# releases, too.

# deb http://deb.opera.com/opera-beta/ stable non-free #Opera Browser (beta releases)" \
| sudo tee "/etc/apt/sources.list.d/opera.list"

Ajoutez la clef publique des dépôts aux trousseau apt:

command wget -q "http://deb.opera.com/archive.key" \
--quiet --output-document="-" \
| sudo apt-key add -

Mettez à jour la liste des paquets disponibles:

sudo apt-get update

Installez l'application:

sudo apt-get install opera

Remerciements