Results 1 to 4 of 4

Thread: What can be a minimum install & upgrade

  1. #1
    Join Date
    Feb 2011
    Beans
    24

    What can be a minimum install & upgrade

    Hello. was hoping some could describe to me how to extract programs, to reduce the size of my OS. As well as pick the updates . thanks.

  2. #2
    Join Date
    Oct 2011
    Location
    ZZ9 Plural Z Alpha
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: What can be a minimum install & upgrade

    1. ??
    2. Use the Ubuntu Minimal CD to create a system from CLI up.
    3. Run

    Code:
    sudo apt-get --only-upgrade install package_name
    to only upgrade (update) package_name.

  3. #3
    Join Date
    Nov 2012
    Location
    Halloween Town
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: What can be a minimum install & upgrade

    I'm not completely sure I understood what you're asking. When you say "... extract programs, to reduce the size of my OS...", do you mean to remove them from your computer? If so, you can do it, but you have to be sure of what you are removing, because there is a real risk of data loss or making other programs or Ubuntu unusable when uninstalling and this might leave your system in a funky state, or you might select a critical system file for deletion and this leaves your system unusable.

    But you can achieve it either by clicking Remove in the Ubuntu Software Center or at a terminal window, using the following command:
    Code:
    sudo apt-get remove --purge <package_name>
    which will remove the package and it's config files.

  4. #4
    ibjsb4 is offline Ubuntu addict and loving it
    Join Date
    Sep 2012
    Beans
    4,987

    Re: What can be a minimum install & upgrade

    Its better to build from the ground up instead of taking a full install and removing packages.

    An example. To build a desktop using Unity you could install only the packages Unity depends on and not the recommended packages.

    http://packages.ubuntu.com/precise/ubuntu-desktop

    Like cortman said, use the mini iso and this command:

    Code:
    sudo apt-get install --no-install-recommends ubuntu-desktop
    That basically turns the Unity 850MB install into a 150MB install.

    And there are a 100 different ways to to a mini install, thats just one. Minimum GUIs are sometimes install on servers.

    http://www.googlubuntu.com/results/?...ch&cof=FORID:9

    This can also be done with the mini iso.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •