Why do you see 'removing additional packages' during the Ubuntu installation? The 2019 Stack Overflow Developer Survey Results Are InCan I leave GParted on a system after installation?Impossible to install Ubuntu 10.10 dual boot with Windows 7 on new Acer desktop computerWhy does the Ubuntu installer not detect the hard drive during installation?Why stuck in the ubuntu 13.04 installation?Ubuntu installation is slow, why?ubuntu username not set during installationRemoving a Corrupted Ubuntu InstallationUbuntu crashes during installationNotice of the city during the installation of UbuntuI/O Error during ubuntu installationI can't see the continue button on screen (Ubuntu installation)
What is preventing me from simply constructing a hash that's lower than the current target?
Output the Arecibo Message
How to notate time signature switching consistently every measure
Dropping list elements from nested list after evaluation
Is it safe to harvest rainwater that fell on solar panels?
How to type a long/em dash `—`
Why does the nucleus not repel itself?
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
How to translate "being like"?
Is bread bad for ducks?
Mathematics of imaging the black hole
Ubuntu Server install with full GUI
Why doesn't UInt have a toDouble()?
Will it cause any balance problems to have PCs level up and gain the benefits of a long rest mid-fight?
Can a flute soloist sit?
Match Roman Numerals
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
A word that means fill it to the required quantity
Straighten subgroup lattice
If a sorcerer casts the Banishment spell on a PC while in Avernus, does the PC return to their home plane?
Star Trek - X-shaped Item on Regula/Orbital Office Starbases
Why was M87 targeted for the Event Horizon Telescope instead of Sagittarius A*?
Currents/voltages graph for an electrical circuit
Are turbopumps lubricated?
Why do you see 'removing additional packages' during the Ubuntu installation?
The 2019 Stack Overflow Developer Survey Results Are InCan I leave GParted on a system after installation?Impossible to install Ubuntu 10.10 dual boot with Windows 7 on new Acer desktop computerWhy does the Ubuntu installer not detect the hard drive during installation?Why stuck in the ubuntu 13.04 installation?Ubuntu installation is slow, why?ubuntu username not set during installationRemoving a Corrupted Ubuntu InstallationUbuntu crashes during installationNotice of the city during the installation of UbuntuI/O Error during ubuntu installationI can't see the continue button on screen (Ubuntu installation)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I just installed Ubuntu 12.04 LTS and was very surprised (and amused :)) about the install-window showing the status information:
"Zusatzpakete werden entfernt"
(means something like "removing additional packages")
Seems very weird to me that in an installation, additional packages are removed...why have they been installed in first place?
Well, not that bad, i used Windows for decades now, i just had the small hope that the linux world would be a little bit saner ;D
system-installation
add a comment |
I just installed Ubuntu 12.04 LTS and was very surprised (and amused :)) about the install-window showing the status information:
"Zusatzpakete werden entfernt"
(means something like "removing additional packages")
Seems very weird to me that in an installation, additional packages are removed...why have they been installed in first place?
Well, not that bad, i used Windows for decades now, i just had the small hope that the linux world would be a little bit saner ;D
system-installation
i think web-e answer is correct however, i would love to tell you that when i installed my ubuntu nothing happened like removing packages, but still not sure cause i sometimes leave the computer installing and also i would love to tell you that linux is amazing, powerful, customizable and beautiful :) and you wont find any OS better than linux in programming, hacking or similar things :D
– OverCoder
Jul 25 '13 at 9:58
add a comment |
I just installed Ubuntu 12.04 LTS and was very surprised (and amused :)) about the install-window showing the status information:
"Zusatzpakete werden entfernt"
(means something like "removing additional packages")
Seems very weird to me that in an installation, additional packages are removed...why have they been installed in first place?
Well, not that bad, i used Windows for decades now, i just had the small hope that the linux world would be a little bit saner ;D
system-installation
I just installed Ubuntu 12.04 LTS and was very surprised (and amused :)) about the install-window showing the status information:
"Zusatzpakete werden entfernt"
(means something like "removing additional packages")
Seems very weird to me that in an installation, additional packages are removed...why have they been installed in first place?
Well, not that bad, i used Windows for decades now, i just had the small hope that the linux world would be a little bit saner ;D
system-installation
system-installation
edited Aug 6 '14 at 20:07
Tim
20.2k1586142
20.2k1586142
asked Jul 25 '13 at 9:16
delfdelf
1284
1284
i think web-e answer is correct however, i would love to tell you that when i installed my ubuntu nothing happened like removing packages, but still not sure cause i sometimes leave the computer installing and also i would love to tell you that linux is amazing, powerful, customizable and beautiful :) and you wont find any OS better than linux in programming, hacking or similar things :D
– OverCoder
Jul 25 '13 at 9:58
add a comment |
i think web-e answer is correct however, i would love to tell you that when i installed my ubuntu nothing happened like removing packages, but still not sure cause i sometimes leave the computer installing and also i would love to tell you that linux is amazing, powerful, customizable and beautiful :) and you wont find any OS better than linux in programming, hacking or similar things :D
– OverCoder
Jul 25 '13 at 9:58
i think web-e answer is correct however, i would love to tell you that when i installed my ubuntu nothing happened like removing packages, but still not sure cause i sometimes leave the computer installing and also i would love to tell you that linux is amazing, powerful, customizable and beautiful :) and you wont find any OS better than linux in programming, hacking or similar things :D
– OverCoder
Jul 25 '13 at 9:58
i think web-e answer is correct however, i would love to tell you that when i installed my ubuntu nothing happened like removing packages, but still not sure cause i sometimes leave the computer installing and also i would love to tell you that linux is amazing, powerful, customizable and beautiful :) and you wont find any OS better than linux in programming, hacking or similar things :D
– OverCoder
Jul 25 '13 at 9:58
add a comment |
3 Answers
3
active
oldest
votes
TLDR; It's basically just a apt-get autoremove performed after installation.
Here's what happens on installation time using a desktop installer (this answer is not valid for server or alternate installers):
- A sort of preinstalled Ubuntu image (
/casper/filesystem.squashfson the CD) is extracted onto your hard drive. It's like taking a shortcut, because it's all in a predefined state and does not require all packages to be installed one by one (opposed to thedebootstrapprocess in the server/alternate installers). - After extraction of the image, the installer
chroots into the target and will apply all changes you entered during installation: user account, language, timezone, etc. It will then also apply updates. - The state of the target filesystem (almost finished installation) after all this will probably result in some packages not needed for your system. E.g. older kernel that is not applicable anymore due to updates, or you didn't choose to use LVM so all packages related to that can be removed. (this is just hypothetical - I did not check if this actually performs the removal of LVM.) It's not much different from applying a large stack of package updates that result in some packages removed using
apt-get autoremove.
I can vouch that the installer removes LVM if you choose not to use it.
– Austin Mullins
Aug 6 '13 at 3:29
add a comment |
Though there can be several reason, I think those packages were removed as they are unneeded now. They are installed because they were on the installation media. Now new updates came in and mark those item as not required. So ubuntu is removing it.
Another reason could be, for installation purpose ubuntu installed some packages which are not used for normal day to day usage. So it is cleaning them up.
add a comment |
There are packages present on the Live CD image which may get uninstalled after the image is copied to your hard drive. One example I can think of is gparted, it is present on the Live CD session but not available on a newly installed system. Other packages that this occurs with are usually filesystem related, for example LVM is present on the Live CD in case you want to use LVM partitioning on your installation. If you don't use this then there is no reason to have the LVM package on your installed system so it is removed. I think that the unused language packs get removed as well.
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%2f324303%2fwhy-do-you-see-removing-additional-packages-during-the-ubuntu-installation%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
TLDR; It's basically just a apt-get autoremove performed after installation.
Here's what happens on installation time using a desktop installer (this answer is not valid for server or alternate installers):
- A sort of preinstalled Ubuntu image (
/casper/filesystem.squashfson the CD) is extracted onto your hard drive. It's like taking a shortcut, because it's all in a predefined state and does not require all packages to be installed one by one (opposed to thedebootstrapprocess in the server/alternate installers). - After extraction of the image, the installer
chroots into the target and will apply all changes you entered during installation: user account, language, timezone, etc. It will then also apply updates. - The state of the target filesystem (almost finished installation) after all this will probably result in some packages not needed for your system. E.g. older kernel that is not applicable anymore due to updates, or you didn't choose to use LVM so all packages related to that can be removed. (this is just hypothetical - I did not check if this actually performs the removal of LVM.) It's not much different from applying a large stack of package updates that result in some packages removed using
apt-get autoremove.
I can vouch that the installer removes LVM if you choose not to use it.
– Austin Mullins
Aug 6 '13 at 3:29
add a comment |
TLDR; It's basically just a apt-get autoremove performed after installation.
Here's what happens on installation time using a desktop installer (this answer is not valid for server or alternate installers):
- A sort of preinstalled Ubuntu image (
/casper/filesystem.squashfson the CD) is extracted onto your hard drive. It's like taking a shortcut, because it's all in a predefined state and does not require all packages to be installed one by one (opposed to thedebootstrapprocess in the server/alternate installers). - After extraction of the image, the installer
chroots into the target and will apply all changes you entered during installation: user account, language, timezone, etc. It will then also apply updates. - The state of the target filesystem (almost finished installation) after all this will probably result in some packages not needed for your system. E.g. older kernel that is not applicable anymore due to updates, or you didn't choose to use LVM so all packages related to that can be removed. (this is just hypothetical - I did not check if this actually performs the removal of LVM.) It's not much different from applying a large stack of package updates that result in some packages removed using
apt-get autoremove.
I can vouch that the installer removes LVM if you choose not to use it.
– Austin Mullins
Aug 6 '13 at 3:29
add a comment |
TLDR; It's basically just a apt-get autoremove performed after installation.
Here's what happens on installation time using a desktop installer (this answer is not valid for server or alternate installers):
- A sort of preinstalled Ubuntu image (
/casper/filesystem.squashfson the CD) is extracted onto your hard drive. It's like taking a shortcut, because it's all in a predefined state and does not require all packages to be installed one by one (opposed to thedebootstrapprocess in the server/alternate installers). - After extraction of the image, the installer
chroots into the target and will apply all changes you entered during installation: user account, language, timezone, etc. It will then also apply updates. - The state of the target filesystem (almost finished installation) after all this will probably result in some packages not needed for your system. E.g. older kernel that is not applicable anymore due to updates, or you didn't choose to use LVM so all packages related to that can be removed. (this is just hypothetical - I did not check if this actually performs the removal of LVM.) It's not much different from applying a large stack of package updates that result in some packages removed using
apt-get autoremove.
TLDR; It's basically just a apt-get autoremove performed after installation.
Here's what happens on installation time using a desktop installer (this answer is not valid for server or alternate installers):
- A sort of preinstalled Ubuntu image (
/casper/filesystem.squashfson the CD) is extracted onto your hard drive. It's like taking a shortcut, because it's all in a predefined state and does not require all packages to be installed one by one (opposed to thedebootstrapprocess in the server/alternate installers). - After extraction of the image, the installer
chroots into the target and will apply all changes you entered during installation: user account, language, timezone, etc. It will then also apply updates. - The state of the target filesystem (almost finished installation) after all this will probably result in some packages not needed for your system. E.g. older kernel that is not applicable anymore due to updates, or you didn't choose to use LVM so all packages related to that can be removed. (this is just hypothetical - I did not check if this actually performs the removal of LVM.) It's not much different from applying a large stack of package updates that result in some packages removed using
apt-get autoremove.
edited Jul 25 '13 at 11:08
answered Jul 25 '13 at 9:53
gertvdijkgertvdijk
51.5k18143240
51.5k18143240
I can vouch that the installer removes LVM if you choose not to use it.
– Austin Mullins
Aug 6 '13 at 3:29
add a comment |
I can vouch that the installer removes LVM if you choose not to use it.
– Austin Mullins
Aug 6 '13 at 3:29
I can vouch that the installer removes LVM if you choose not to use it.
– Austin Mullins
Aug 6 '13 at 3:29
I can vouch that the installer removes LVM if you choose not to use it.
– Austin Mullins
Aug 6 '13 at 3:29
add a comment |
Though there can be several reason, I think those packages were removed as they are unneeded now. They are installed because they were on the installation media. Now new updates came in and mark those item as not required. So ubuntu is removing it.
Another reason could be, for installation purpose ubuntu installed some packages which are not used for normal day to day usage. So it is cleaning them up.
add a comment |
Though there can be several reason, I think those packages were removed as they are unneeded now. They are installed because they were on the installation media. Now new updates came in and mark those item as not required. So ubuntu is removing it.
Another reason could be, for installation purpose ubuntu installed some packages which are not used for normal day to day usage. So it is cleaning them up.
add a comment |
Though there can be several reason, I think those packages were removed as they are unneeded now. They are installed because they were on the installation media. Now new updates came in and mark those item as not required. So ubuntu is removing it.
Another reason could be, for installation purpose ubuntu installed some packages which are not used for normal day to day usage. So it is cleaning them up.
Though there can be several reason, I think those packages were removed as they are unneeded now. They are installed because they were on the installation media. Now new updates came in and mark those item as not required. So ubuntu is removing it.
Another reason could be, for installation purpose ubuntu installed some packages which are not used for normal day to day usage. So it is cleaning them up.
answered Jul 25 '13 at 9:26
Web-EWeb-E
17.9k114489
17.9k114489
add a comment |
add a comment |
There are packages present on the Live CD image which may get uninstalled after the image is copied to your hard drive. One example I can think of is gparted, it is present on the Live CD session but not available on a newly installed system. Other packages that this occurs with are usually filesystem related, for example LVM is present on the Live CD in case you want to use LVM partitioning on your installation. If you don't use this then there is no reason to have the LVM package on your installed system so it is removed. I think that the unused language packs get removed as well.
add a comment |
There are packages present on the Live CD image which may get uninstalled after the image is copied to your hard drive. One example I can think of is gparted, it is present on the Live CD session but not available on a newly installed system. Other packages that this occurs with are usually filesystem related, for example LVM is present on the Live CD in case you want to use LVM partitioning on your installation. If you don't use this then there is no reason to have the LVM package on your installed system so it is removed. I think that the unused language packs get removed as well.
add a comment |
There are packages present on the Live CD image which may get uninstalled after the image is copied to your hard drive. One example I can think of is gparted, it is present on the Live CD session but not available on a newly installed system. Other packages that this occurs with are usually filesystem related, for example LVM is present on the Live CD in case you want to use LVM partitioning on your installation. If you don't use this then there is no reason to have the LVM package on your installed system so it is removed. I think that the unused language packs get removed as well.
There are packages present on the Live CD image which may get uninstalled after the image is copied to your hard drive. One example I can think of is gparted, it is present on the Live CD session but not available on a newly installed system. Other packages that this occurs with are usually filesystem related, for example LVM is present on the Live CD in case you want to use LVM partitioning on your installation. If you don't use this then there is no reason to have the LVM package on your installed system so it is removed. I think that the unused language packs get removed as well.
answered Jul 25 '13 at 10:19
CheesemillCheesemill
86167
86167
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%2f324303%2fwhy-do-you-see-removing-additional-packages-during-the-ubuntu-installation%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
i think web-e answer is correct however, i would love to tell you that when i installed my ubuntu nothing happened like removing packages, but still not sure cause i sometimes leave the computer installing and also i would love to tell you that linux is amazing, powerful, customizable and beautiful :) and you wont find any OS better than linux in programming, hacking or similar things :D
– OverCoder
Jul 25 '13 at 9:58