TOPIC 4
Date: 2/13/2019
Package management
Linux System Administration
Removing Ubuntu packages with APT
Exercises
Remove package
make
by running
apt-get remove
:
apt-get remove make
Simulate package removal by using option
-s
:
apt-get remove -s netpbm
Notice package
libnetpbm10
won't be removed
Simulate package removal with the dependencies:
apt-get autoremove -s netpbm
Notice the both packages would be removed.
Remove the package with the dependencies:
apt-get autoremove netpbm
Both
netpbm
and
libnetpbm10
should be gone now.
Ubuntu packages
Package installation with APT (exercise)
Package removal with APT (exerci se)
Package search
Package quiry with dpkg
RPM package installation and removal with YUM
Quiry RPM packages with YUM
Quiry RPM packages with rpm
References
Take me to the Course Website