How to purge unused packages on Debian
Posted on | luglio 31, 2008 | No Comments
If you want to automatically purge unused .deb packages on your debian distro (perhaps after an aptitude upgrade), you can safely use this piece of code:
#!/bin/bash while [ `deborphan | wc -l` -gt 0 ]; do deborphan | xargs dpkg --purge done |
Comments
Leave a Reply


