apt-get: How to remove a package in Ubuntu?
In Ubuntu, you can easily remove a package using apt-get Take for example, you want to remove the vim editor package You can check the shell script to remove all the packages mentioned in a file
apt-get: Shell Script to remove the packages mentioned in a File
Check this simple shell script which reads all the packages mentioned in a file and removes them one by one. To use this script, mention the packages to be removed in a file. Take for example, pkgs.txt contains the files to be removed To execute the above script, It will remove all the packages one [...]
How to install packages in Ubuntu from Command Line?
Ubuntu offers two tools which can easily help you to install the packages from the command line. The basic package installation steps in Ubuntu are as follows Search for the correct package name to be installed Install the correct package Two important command line tools for package installation in Ubuntu aptitude apt-get Let’s explore each [...]