scripts-bash/ecoleA/update.sh

12 lines
313 B
Bash

#!/bin/bash
# Suppression des kernels non utilisé
echo -e "\n [INFO] Kernel installé mais plus utilisé"
dpkg --list 'linux-image*' | grep ^ii | awk '{print $2}' | sort | egrep "[0-9]-generic" | head -n 3 | tr '\n' ' ' > list-kernel
echo -e "\n"
apt update
apt -y upgrade
apt -y autoremove
do-release-upgrade