Outils du site

Il y a plusieurs façons d'être con, mais le con choisit toujours la pire ! [F. Dart]

04-linux:10-administration:start

Administration

Free root space

sudo apt clean

sudo apt autoremove

Removing old headers and images

# Check:
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d'

# remove:
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge

Dernière modification : 2023/04/19 03:08