M HYPE SPLASH
// news

problem in updating Opera browser

By Sarah Scott

I'm a new user of Ubuntu (16.04 LTS). I want to update my Opera browser, but I have this problem:

My Opera version is 46.0.2597.57 and the new version 47.0.2631.55 is available, but when I want to update my Opera it says: opera-stable is already the newest version (46.0.2597.57), but IT IS NOT!

I did this:

  • sudo add-apt-repository 'deb non-free'
  • wget -O - | apt-key add -
  • apt-get update
  • apt-get install opera-stable

and the response was:

Reading package lists... Done
Building dependency tree
Reading state information... Done
opera-stable is already the newest version (46.0.2597.57).
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.

what is the problem with it?

thank you in advance :-)


NOTE: I've downloaded opera-stable_47.0.2631.55_amd64.deb and tried to install it by Ubuntu Software, but it didn't work!

2

1 Answer

If you already downloaded the .deb package, just click it and the installation will start. Alternatively do in a terminal:

sudo dpkg -i opera-stable_47.0.2631.55_amd64.deb

They way you wanted to do it of course also works, but you forgot the first step. However, this is totally unnecessary if you install the .deb package directly, as it will add the repository automatically.

  1. add the repository:

    sudo add-apt-repository 'deb stable non-free'
  2. add the key:

    wget -qO- | sudo apt-key add -
  3. update your sources:

    sudo apt update
  4. install the package:

    sudo apt install opera-stable
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy