M HYPE SPLASH
// news

How can I uninstall Opera from Xubuntu?

By Emma Payne

I have downloaded opera from the website (deb package) and installed it. Now I want to remove it but I don't know how. I tried sudo apt-get remove opera but it didn't work.

4 Answers

@Thomas W.'s answer didn't work for me on Ubuntu 14.04. I had to use:

sudo dpkg -r opera-stable

And to remove the apt sources file added by Opera:

sudo rm -f /etc/apt/sources.list.d/opera-stable.list
1

When you install via the downloaded .deb binaries/installer and not the opera repository for Opera, then it was installed with dpkg, and not apt-get.

Try using sudo dpkg --remove opera or sudo dpkg -r opera to remove it.

2
sudo apt-get remove --purge opera-stable

Try this, it's gonna work.

2

Use

dpkg -l | grep opera

to find out proper package name. For me opera-stable then

sudo apt-get remove opera-stable

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