1. remove opera folder
opera is installed in:
/usr/lib/x86_64-linux-gnu/opera
to remove a folder, in this case opera
sudo rm -rf /usr/lib/x86_64-linux-gnu/opera
2. remove /usr/bin/opera binary[command]
to know where is an app, you can start by checking with whereis
command:
whereis opera
opera: /usr/bin/opera /usr/lib/x86_64-linux-gnu/opera
/usr/bin/opera
is where your "exe" binaries live, this is the one that makes run your app, when you type opera in terminal. if you run another command, you will notice that the opera binary is not this folder but in the one above /usr/lib/x86_64-linux-gnu/opera
, this is soft link, in windows,mac is known as a shortcut.
ll /usr/bin/opera
/usr/bin/opera -> ../lib/x86_64-linux-gnu/opera/opera* #returns
remove dependencies, and other stuff installed
when you install opera. it install other stuff so you can see videos or just work, in this case these are the other packages installed:
- chromium-codecs-ffmpeg-extra
to remove this:
sudo apt remove chromium-codecs-ffmpeg-extra
this was the manual way
when you install apps froms browser usually is better to do it manually. but in this case you can do it with:
sudo apt remove opera-stable
and to remove dependencies and other stuff installed when you installed opera
sudo apt purge opera-stable
And even sometimes when you do this the folder created and other libraries aren't removed, this is why manually is better.