Remove packages to transform Desktop to Server?How do I remove all desktop-related packages, leaving server only?Removing everything from my Ubuntu install, even GUI..?Log of all dependencies installed with a packageAuto remove limitations?Safely removing *unused* packagesHow to remove ubuntu-gnome-desktop?Ubuntu Server Initial Packages?How do you completely remove ubuntu-desktop along with all installed packages with it?Ubuntu Server 18.04 = Ubuntu Desktop - all GUI and other stuff?
Does Dangerous Sorcery apply to cantrips?
Can a Rod of Absorption Absorb a spell that was Twinned?
Is it possible to conserve the total kinetic energy of a system, but not its momentum?
As of 2019, why do mountaineering courses still teach how to use a paper map?
Carlsen beat a high ranking GM with 1 Nh3. Conclusions?
Would it have been possible to re-fuel the planes in the air?
What happens when a photon "dies"?
What would it take for a mainstream UK political party to cease to exist
What's the difference between "men of violence" and "violent men"?
How to explain my complicated family background to people that I don't know very well?
How scammy are cashback sites?
Senate Impeachment rule change?
GeoServer parametric SQL view. ERROR: function key(boolean) does not exist
Can you suck magic away from a wizard?
Why didn't classical music use drums?
Does Magic Stone require an action or a bonus action for attacking with it?
How can I create a zip archive without a file extension using the "zip" command?
Why was LEGO reluctant to use additional colours for regular bricks in former times?
Were ancient languages as sophisticated as modern languages?
Creating 2020 in the fewest number of steps
What is the moral difference between abortion and infanticide?
Why there is difference between performance of Vanguard S&P500 (VUSA) and S&P500 index
Why is the apostrophe positioned differently in "ones' complement" than "two's complement"?
How to prevent stopping a macro on unsuccessful substitution?
Remove packages to transform Desktop to Server?
How do I remove all desktop-related packages, leaving server only?Removing everything from my Ubuntu install, even GUI..?Log of all dependencies installed with a packageAuto remove limitations?Safely removing *unused* packagesHow to remove ubuntu-gnome-desktop?Ubuntu Server Initial Packages?How do you completely remove ubuntu-desktop along with all installed packages with it?Ubuntu Server 18.04 = Ubuntu Desktop - all GUI and other stuff?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I have a VPS that has Ubuntu 11.10 on it. Unfortunately, only the 11.10 Desktop (not server) image was available as an image to install your VPS with. How can I remove the packages included in the Desktop install, and, if needed, install the packages that only the server install has?
I've tried sudo apt-get remove ubuntu-desktop
and then sudo apt-get autoremove
. Unfortunately, that didn't work: it only removed 'libjudy-debian' (or something like that) which was installed from having 'miredo' installed at one point.
server xorg apt
add a comment
|
I have a VPS that has Ubuntu 11.10 on it. Unfortunately, only the 11.10 Desktop (not server) image was available as an image to install your VPS with. How can I remove the packages included in the Desktop install, and, if needed, install the packages that only the server install has?
I've tried sudo apt-get remove ubuntu-desktop
and then sudo apt-get autoremove
. Unfortunately, that didn't work: it only removed 'libjudy-debian' (or something like that) which was installed from having 'miredo' installed at one point.
server xorg apt
add a comment
|
I have a VPS that has Ubuntu 11.10 on it. Unfortunately, only the 11.10 Desktop (not server) image was available as an image to install your VPS with. How can I remove the packages included in the Desktop install, and, if needed, install the packages that only the server install has?
I've tried sudo apt-get remove ubuntu-desktop
and then sudo apt-get autoremove
. Unfortunately, that didn't work: it only removed 'libjudy-debian' (or something like that) which was installed from having 'miredo' installed at one point.
server xorg apt
I have a VPS that has Ubuntu 11.10 on it. Unfortunately, only the 11.10 Desktop (not server) image was available as an image to install your VPS with. How can I remove the packages included in the Desktop install, and, if needed, install the packages that only the server install has?
I've tried sudo apt-get remove ubuntu-desktop
and then sudo apt-get autoremove
. Unfortunately, that didn't work: it only removed 'libjudy-debian' (or something like that) which was installed from having 'miredo' installed at one point.
server xorg apt
server xorg apt
edited Oct 2 at 15:17
Nico Schlömer
1,5962 gold badges12 silver badges21 bronze badges
1,5962 gold badges12 silver badges21 bronze badges
asked Oct 28 '11 at 15:39
AzendaleAzendale
10.3k7 gold badges41 silver badges68 bronze badges
10.3k7 gold badges41 silver badges68 bronze badges
add a comment
|
add a comment
|
3 Answers
3
active
oldest
votes
Right autoremove only removes packages that were installed automatically as part of other package installs. The things installed in the image are seeded and so all are basically considered "manual".
You'll probably get rid of most of them by getting rid of Xorg:
sudo apt-get remove xserver-xorg-core
And then do another autoremove.
There will likely be other things that are left around that you don't need.. but .. really.. why not just ask your VPS provider for a server image.. isn't it a little silly that they even offer the desktop image?
1
I was hoping there would be a better way, but thanks anyways.
– Azendale
Dec 7 '11 at 20:00
add a comment
|
To remove x11 and everything that uses it, including all configuration:
apt-get purge libx11.* libqt.*
Unlike the accepted answer (remove xserver-xorg-core) this one will also remove all desktop packages like Firefox etc.
Will this remove xserver as the accepted answer? Or does that remove need to be done as well?
– IanVaughan
Feb 4 '15 at 23:17
3
Yes it will be removed. Doapt-get --assume-no remove libx11.* libqt.*
to see all of the packages that will be removed.
– bain
Feb 6 '15 at 13:23
yes, i'm doing this now, it removes quite a lot more than the accepted answer and it's all things you don't want there anyway. pastebin.com/mQK1MYCH
– spezticle
Dec 21 '15 at 15:09
apt autoremove
will also remove a ton of "unneeded" packages after the purge operation
– andrei
Dec 1 '18 at 18:26
add a comment
|
sudo apt-get purge -y libx11.* libqt.* libgtk.
sudo apt-get autoremove -y
2
A code only answer is not high quality. It would be better to explain what this does, how this is better than other answers. You should also link to any references you used to write this answer.
– Stephen Ostermiller
May 16 at 11:44
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/4.0/"u003ecc by-sa 4.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%2f73219%2fremove-packages-to-transform-desktop-to-server%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
Right autoremove only removes packages that were installed automatically as part of other package installs. The things installed in the image are seeded and so all are basically considered "manual".
You'll probably get rid of most of them by getting rid of Xorg:
sudo apt-get remove xserver-xorg-core
And then do another autoremove.
There will likely be other things that are left around that you don't need.. but .. really.. why not just ask your VPS provider for a server image.. isn't it a little silly that they even offer the desktop image?
1
I was hoping there would be a better way, but thanks anyways.
– Azendale
Dec 7 '11 at 20:00
add a comment
|
Right autoremove only removes packages that were installed automatically as part of other package installs. The things installed in the image are seeded and so all are basically considered "manual".
You'll probably get rid of most of them by getting rid of Xorg:
sudo apt-get remove xserver-xorg-core
And then do another autoremove.
There will likely be other things that are left around that you don't need.. but .. really.. why not just ask your VPS provider for a server image.. isn't it a little silly that they even offer the desktop image?
1
I was hoping there would be a better way, but thanks anyways.
– Azendale
Dec 7 '11 at 20:00
add a comment
|
Right autoremove only removes packages that were installed automatically as part of other package installs. The things installed in the image are seeded and so all are basically considered "manual".
You'll probably get rid of most of them by getting rid of Xorg:
sudo apt-get remove xserver-xorg-core
And then do another autoremove.
There will likely be other things that are left around that you don't need.. but .. really.. why not just ask your VPS provider for a server image.. isn't it a little silly that they even offer the desktop image?
Right autoremove only removes packages that were installed automatically as part of other package installs. The things installed in the image are seeded and so all are basically considered "manual".
You'll probably get rid of most of them by getting rid of Xorg:
sudo apt-get remove xserver-xorg-core
And then do another autoremove.
There will likely be other things that are left around that you don't need.. but .. really.. why not just ask your VPS provider for a server image.. isn't it a little silly that they even offer the desktop image?
answered Nov 30 '11 at 0:06
SpamapSSpamapS
16.9k4 gold badges27 silver badges49 bronze badges
16.9k4 gold badges27 silver badges49 bronze badges
1
I was hoping there would be a better way, but thanks anyways.
– Azendale
Dec 7 '11 at 20:00
add a comment
|
1
I was hoping there would be a better way, but thanks anyways.
– Azendale
Dec 7 '11 at 20:00
1
1
I was hoping there would be a better way, but thanks anyways.
– Azendale
Dec 7 '11 at 20:00
I was hoping there would be a better way, but thanks anyways.
– Azendale
Dec 7 '11 at 20:00
add a comment
|
To remove x11 and everything that uses it, including all configuration:
apt-get purge libx11.* libqt.*
Unlike the accepted answer (remove xserver-xorg-core) this one will also remove all desktop packages like Firefox etc.
Will this remove xserver as the accepted answer? Or does that remove need to be done as well?
– IanVaughan
Feb 4 '15 at 23:17
3
Yes it will be removed. Doapt-get --assume-no remove libx11.* libqt.*
to see all of the packages that will be removed.
– bain
Feb 6 '15 at 13:23
yes, i'm doing this now, it removes quite a lot more than the accepted answer and it's all things you don't want there anyway. pastebin.com/mQK1MYCH
– spezticle
Dec 21 '15 at 15:09
apt autoremove
will also remove a ton of "unneeded" packages after the purge operation
– andrei
Dec 1 '18 at 18:26
add a comment
|
To remove x11 and everything that uses it, including all configuration:
apt-get purge libx11.* libqt.*
Unlike the accepted answer (remove xserver-xorg-core) this one will also remove all desktop packages like Firefox etc.
Will this remove xserver as the accepted answer? Or does that remove need to be done as well?
– IanVaughan
Feb 4 '15 at 23:17
3
Yes it will be removed. Doapt-get --assume-no remove libx11.* libqt.*
to see all of the packages that will be removed.
– bain
Feb 6 '15 at 13:23
yes, i'm doing this now, it removes quite a lot more than the accepted answer and it's all things you don't want there anyway. pastebin.com/mQK1MYCH
– spezticle
Dec 21 '15 at 15:09
apt autoremove
will also remove a ton of "unneeded" packages after the purge operation
– andrei
Dec 1 '18 at 18:26
add a comment
|
To remove x11 and everything that uses it, including all configuration:
apt-get purge libx11.* libqt.*
Unlike the accepted answer (remove xserver-xorg-core) this one will also remove all desktop packages like Firefox etc.
To remove x11 and everything that uses it, including all configuration:
apt-get purge libx11.* libqt.*
Unlike the accepted answer (remove xserver-xorg-core) this one will also remove all desktop packages like Firefox etc.
edited Jun 17 '14 at 10:19
answered Jun 17 '14 at 8:53
bainbain
9,6212 gold badges32 silver badges43 bronze badges
9,6212 gold badges32 silver badges43 bronze badges
Will this remove xserver as the accepted answer? Or does that remove need to be done as well?
– IanVaughan
Feb 4 '15 at 23:17
3
Yes it will be removed. Doapt-get --assume-no remove libx11.* libqt.*
to see all of the packages that will be removed.
– bain
Feb 6 '15 at 13:23
yes, i'm doing this now, it removes quite a lot more than the accepted answer and it's all things you don't want there anyway. pastebin.com/mQK1MYCH
– spezticle
Dec 21 '15 at 15:09
apt autoremove
will also remove a ton of "unneeded" packages after the purge operation
– andrei
Dec 1 '18 at 18:26
add a comment
|
Will this remove xserver as the accepted answer? Or does that remove need to be done as well?
– IanVaughan
Feb 4 '15 at 23:17
3
Yes it will be removed. Doapt-get --assume-no remove libx11.* libqt.*
to see all of the packages that will be removed.
– bain
Feb 6 '15 at 13:23
yes, i'm doing this now, it removes quite a lot more than the accepted answer and it's all things you don't want there anyway. pastebin.com/mQK1MYCH
– spezticle
Dec 21 '15 at 15:09
apt autoremove
will also remove a ton of "unneeded" packages after the purge operation
– andrei
Dec 1 '18 at 18:26
Will this remove xserver as the accepted answer? Or does that remove need to be done as well?
– IanVaughan
Feb 4 '15 at 23:17
Will this remove xserver as the accepted answer? Or does that remove need to be done as well?
– IanVaughan
Feb 4 '15 at 23:17
3
3
Yes it will be removed. Do
apt-get --assume-no remove libx11.* libqt.*
to see all of the packages that will be removed.– bain
Feb 6 '15 at 13:23
Yes it will be removed. Do
apt-get --assume-no remove libx11.* libqt.*
to see all of the packages that will be removed.– bain
Feb 6 '15 at 13:23
yes, i'm doing this now, it removes quite a lot more than the accepted answer and it's all things you don't want there anyway. pastebin.com/mQK1MYCH
– spezticle
Dec 21 '15 at 15:09
yes, i'm doing this now, it removes quite a lot more than the accepted answer and it's all things you don't want there anyway. pastebin.com/mQK1MYCH
– spezticle
Dec 21 '15 at 15:09
apt autoremove
will also remove a ton of "unneeded" packages after the purge operation– andrei
Dec 1 '18 at 18:26
apt autoremove
will also remove a ton of "unneeded" packages after the purge operation– andrei
Dec 1 '18 at 18:26
add a comment
|
sudo apt-get purge -y libx11.* libqt.* libgtk.
sudo apt-get autoremove -y
2
A code only answer is not high quality. It would be better to explain what this does, how this is better than other answers. You should also link to any references you used to write this answer.
– Stephen Ostermiller
May 16 at 11:44
add a comment
|
sudo apt-get purge -y libx11.* libqt.* libgtk.
sudo apt-get autoremove -y
2
A code only answer is not high quality. It would be better to explain what this does, how this is better than other answers. You should also link to any references you used to write this answer.
– Stephen Ostermiller
May 16 at 11:44
add a comment
|
sudo apt-get purge -y libx11.* libqt.* libgtk.
sudo apt-get autoremove -y
sudo apt-get purge -y libx11.* libqt.* libgtk.
sudo apt-get autoremove -y
answered May 16 at 5:23
vochicongvochicong
11 bronze badge
11 bronze badge
2
A code only answer is not high quality. It would be better to explain what this does, how this is better than other answers. You should also link to any references you used to write this answer.
– Stephen Ostermiller
May 16 at 11:44
add a comment
|
2
A code only answer is not high quality. It would be better to explain what this does, how this is better than other answers. You should also link to any references you used to write this answer.
– Stephen Ostermiller
May 16 at 11:44
2
2
A code only answer is not high quality. It would be better to explain what this does, how this is better than other answers. You should also link to any references you used to write this answer.
– Stephen Ostermiller
May 16 at 11:44
A code only answer is not high quality. It would be better to explain what this does, how this is better than other answers. You should also link to any references you used to write this answer.
– Stephen Ostermiller
May 16 at 11:44
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%2f73219%2fremove-packages-to-transform-desktop-to-server%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