How can I uninstall Opera from Xubuntu?
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.
xubuntu uninstall opera
add a comment |
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.
xubuntu uninstall opera
add a comment |
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.
xubuntu uninstall opera
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.
xubuntu uninstall opera
xubuntu uninstall opera
edited Aug 4 '14 at 15:01
Bernmeister
1,00921232
1,00921232
asked May 16 '13 at 2:14
user159082user159082
61124
61124
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
@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
add a comment |
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.
3
You're welcome, @user159082! Don't forget to mark this as accepted if it helped!
– Thomas Ward♦
May 16 '13 at 2:28
Or equally use:sudo dpkg -r opera
– Farahmand
Oct 7 '14 at 16:07
add a comment |
Use
dpkg -l | grep opera
to find out proper package name. For me opera-stable then
sudo apt-get remove opera-stable
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f296020%2fhow-can-i-uninstall-opera-from-xubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
@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
add a comment |
@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
add a comment |
@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
@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
answered Dec 25 '14 at 11:50
nhylatednhylated
36126
36126
add a comment |
add a comment |
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.
3
You're welcome, @user159082! Don't forget to mark this as accepted if it helped!
– Thomas Ward♦
May 16 '13 at 2:28
Or equally use:sudo dpkg -r opera
– Farahmand
Oct 7 '14 at 16:07
add a comment |
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.
3
You're welcome, @user159082! Don't forget to mark this as accepted if it helped!
– Thomas Ward♦
May 16 '13 at 2:28
Or equally use:sudo dpkg -r opera
– Farahmand
Oct 7 '14 at 16:07
add a comment |
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.
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.
edited Oct 7 '14 at 17:04
answered May 16 '13 at 2:16
Thomas Ward♦Thomas Ward
44.1k23122174
44.1k23122174
3
You're welcome, @user159082! Don't forget to mark this as accepted if it helped!
– Thomas Ward♦
May 16 '13 at 2:28
Or equally use:sudo dpkg -r opera
– Farahmand
Oct 7 '14 at 16:07
add a comment |
3
You're welcome, @user159082! Don't forget to mark this as accepted if it helped!
– Thomas Ward♦
May 16 '13 at 2:28
Or equally use:sudo dpkg -r opera
– Farahmand
Oct 7 '14 at 16:07
3
3
You're welcome, @user159082! Don't forget to mark this as accepted if it helped!
– Thomas Ward♦
May 16 '13 at 2:28
You're welcome, @user159082! Don't forget to mark this as accepted if it helped!
– Thomas Ward♦
May 16 '13 at 2:28
Or equally use:
sudo dpkg -r opera– Farahmand
Oct 7 '14 at 16:07
Or equally use:
sudo dpkg -r opera– Farahmand
Oct 7 '14 at 16:07
add a comment |
Use
dpkg -l | grep opera
to find out proper package name. For me opera-stable then
sudo apt-get remove opera-stable
add a comment |
Use
dpkg -l | grep opera
to find out proper package name. For me opera-stable then
sudo apt-get remove opera-stable
add a comment |
Use
dpkg -l | grep opera
to find out proper package name. For me opera-stable then
sudo apt-get remove opera-stable
Use
dpkg -l | grep opera
to find out proper package name. For me opera-stable then
sudo apt-get remove opera-stable
answered 9 mins ago
user125417user125417
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f296020%2fhow-can-i-uninstall-opera-from-xubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown