Answers for "uninstall all packages linux"

2

uninstall packages linux terminal

$ sudo apt-get --purge remove {PACKAGE_NAME}
Posted by: Guest on March-01-2021
0

Delete all linux package

grep "YYYY-MM-DD.*.install " /var/log/dpkg.log | awk '{ print $4 }' | cut -d: -f1 | xargs sudo apt-get --yes purge
Posted by: Guest on June-29-2021

Code answers related to "uninstall all packages linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language