install/remove list of packages from command line with apt-get

10,131

Like so...

sudo apt-get remove $(cat packages.txt)
  • But how do you determine if any of the packages in the file was not already installed on the system or added later from another bit of software? Removing it might break other programs ;) You probably need to remove them one at the time and also check if you can delete them without un-installing any other program.
Share:
10,131

Related videos on Youtube

Russkiy
Author by

Russkiy

Updated on September 18, 2022

Comments

  • Russkiy
    Russkiy over 1 year

    I'm writing a Makefile for our team to be able to set up a local environment with all of the software they need to install packages, etc so that they can develop quickly without having to figure out which software to install. Our repository has a PACKAGES file that has all of the required ubuntu packages that can be installed with this little gem:

    [unix]$ sudo dpkg --set-selections < PACKAGES
    [unix]$ sudo apt-get -u dselect-upgrade
    

    This is great because its easy for everyone to get their environment set up by putting this in a Makefile. The challenge is how to restore their environment when the project is done. How do you uninstall all of the PACKAGES (and their unused dependencies) if you want to clean the environment? Is there an equivalent approach to remove a list of packages from the command line?

  • Russkiy
    Russkiy almost 11 years
    good point on not removing the software if it was already installed. was hoping to avoid the cat call, but thanks!
  • Nobody
    Nobody over 5 years
    It's an overhead to go and create a packages.txt file. Is there a simple method like apt-get remove package1 package2 package3? I'm sure apt-get must have some of this basic capabilities that yum on RedHat systems has been able to do for decades..