Can't uninstall certain default softwares from ubuntu software GUI
I am trying to uninstall "Libreoffice", "onboard", "onlineaccounts" etc. from ubuntu software center GUI after authenticating remove these are removed from there for short time after some time they appear back. Kindly tell me how to uninstall these items completely and delete there data as well.
software-center uninstall libreoffice
add a comment |
I am trying to uninstall "Libreoffice", "onboard", "onlineaccounts" etc. from ubuntu software center GUI after authenticating remove these are removed from there for short time after some time they appear back. Kindly tell me how to uninstall these items completely and delete there data as well.
software-center uninstall libreoffice
add a comment |
I am trying to uninstall "Libreoffice", "onboard", "onlineaccounts" etc. from ubuntu software center GUI after authenticating remove these are removed from there for short time after some time they appear back. Kindly tell me how to uninstall these items completely and delete there data as well.
software-center uninstall libreoffice
I am trying to uninstall "Libreoffice", "onboard", "onlineaccounts" etc. from ubuntu software center GUI after authenticating remove these are removed from there for short time after some time they appear back. Kindly tell me how to uninstall these items completely and delete there data as well.
software-center uninstall libreoffice
software-center uninstall libreoffice
asked Feb 14 '17 at 16:06
Ahmed RazaAhmed Raza
32
32
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Use the apt command. It will look something like this
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
Here is the link to the Ubuntu forum for more detail. How to uninstall LibreOffice?
add a comment |
Even if the Ubuntu software center GUI is a very pretty eye candy i suggest learning your way around the Linux cli because there lays the true power of this operating system.
You can use the purge command from the apt package manager to permanently delete some pack and its dependencies.
For example for libre office you should type:
sudo apt purge libreoffice
libreoffice
is just a met-package. Removing/purging it won't actually uninstall any of the LO components.sudo apt purge libreoffice*
will remove everything with libreoffice in its name.
– user589808
Feb 14 '17 at 16:47
correct forgot about the globbing sorry
– Tiberiu Lepadatu
Feb 14 '17 at 16:49
add a comment |
Or if you are uncomfortable with terminal you can also remove them using Ubuntu Software->Installed->Remove. You might need to retry it a couple of times if it failsenter image description here
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%2f883298%2fcant-uninstall-certain-default-softwares-from-ubuntu-software-gui%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
Use the apt command. It will look something like this
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
Here is the link to the Ubuntu forum for more detail. How to uninstall LibreOffice?
add a comment |
Use the apt command. It will look something like this
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
Here is the link to the Ubuntu forum for more detail. How to uninstall LibreOffice?
add a comment |
Use the apt command. It will look something like this
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
Here is the link to the Ubuntu forum for more detail. How to uninstall LibreOffice?
Use the apt command. It will look something like this
sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove
Here is the link to the Ubuntu forum for more detail. How to uninstall LibreOffice?
edited Apr 13 '17 at 12:24
Community♦
1
1
answered Feb 14 '17 at 17:01
JoeJoe
1224
1224
add a comment |
add a comment |
Even if the Ubuntu software center GUI is a very pretty eye candy i suggest learning your way around the Linux cli because there lays the true power of this operating system.
You can use the purge command from the apt package manager to permanently delete some pack and its dependencies.
For example for libre office you should type:
sudo apt purge libreoffice
libreoffice
is just a met-package. Removing/purging it won't actually uninstall any of the LO components.sudo apt purge libreoffice*
will remove everything with libreoffice in its name.
– user589808
Feb 14 '17 at 16:47
correct forgot about the globbing sorry
– Tiberiu Lepadatu
Feb 14 '17 at 16:49
add a comment |
Even if the Ubuntu software center GUI is a very pretty eye candy i suggest learning your way around the Linux cli because there lays the true power of this operating system.
You can use the purge command from the apt package manager to permanently delete some pack and its dependencies.
For example for libre office you should type:
sudo apt purge libreoffice
libreoffice
is just a met-package. Removing/purging it won't actually uninstall any of the LO components.sudo apt purge libreoffice*
will remove everything with libreoffice in its name.
– user589808
Feb 14 '17 at 16:47
correct forgot about the globbing sorry
– Tiberiu Lepadatu
Feb 14 '17 at 16:49
add a comment |
Even if the Ubuntu software center GUI is a very pretty eye candy i suggest learning your way around the Linux cli because there lays the true power of this operating system.
You can use the purge command from the apt package manager to permanently delete some pack and its dependencies.
For example for libre office you should type:
sudo apt purge libreoffice
Even if the Ubuntu software center GUI is a very pretty eye candy i suggest learning your way around the Linux cli because there lays the true power of this operating system.
You can use the purge command from the apt package manager to permanently delete some pack and its dependencies.
For example for libre office you should type:
sudo apt purge libreoffice
answered Feb 14 '17 at 16:40
Tiberiu LepadatuTiberiu Lepadatu
213
213
libreoffice
is just a met-package. Removing/purging it won't actually uninstall any of the LO components.sudo apt purge libreoffice*
will remove everything with libreoffice in its name.
– user589808
Feb 14 '17 at 16:47
correct forgot about the globbing sorry
– Tiberiu Lepadatu
Feb 14 '17 at 16:49
add a comment |
libreoffice
is just a met-package. Removing/purging it won't actually uninstall any of the LO components.sudo apt purge libreoffice*
will remove everything with libreoffice in its name.
– user589808
Feb 14 '17 at 16:47
correct forgot about the globbing sorry
– Tiberiu Lepadatu
Feb 14 '17 at 16:49
libreoffice
is just a met-package. Removing/purging it won't actually uninstall any of the LO components. sudo apt purge libreoffice*
will remove everything with libreoffice in its name.– user589808
Feb 14 '17 at 16:47
libreoffice
is just a met-package. Removing/purging it won't actually uninstall any of the LO components. sudo apt purge libreoffice*
will remove everything with libreoffice in its name.– user589808
Feb 14 '17 at 16:47
correct forgot about the globbing sorry
– Tiberiu Lepadatu
Feb 14 '17 at 16:49
correct forgot about the globbing sorry
– Tiberiu Lepadatu
Feb 14 '17 at 16:49
add a comment |
Or if you are uncomfortable with terminal you can also remove them using Ubuntu Software->Installed->Remove. You might need to retry it a couple of times if it failsenter image description here
add a comment |
Or if you are uncomfortable with terminal you can also remove them using Ubuntu Software->Installed->Remove. You might need to retry it a couple of times if it failsenter image description here
add a comment |
Or if you are uncomfortable with terminal you can also remove them using Ubuntu Software->Installed->Remove. You might need to retry it a couple of times if it failsenter image description here
Or if you are uncomfortable with terminal you can also remove them using Ubuntu Software->Installed->Remove. You might need to retry it a couple of times if it failsenter image description here
answered Jan 11 at 2:51
NITISH BAHLNITISH BAHL
1
1
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%2f883298%2fcant-uninstall-certain-default-softwares-from-ubuntu-software-gui%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