{{tag>Brouillon Debian}} # Notes Raspberry light Voir : * [[Notes Raspberry]] Voir aussi : * [[ubuntu-light]] Désactivation de l'IPV6 ~~~bash echo "blacklist ipv6" > /etc/modprobe.d/blacklist-ipv6.conf ~~~ Désactivation du Bluetooth ~~~bash cat < /etc/modprobe.d/blacklist-bluetooth.conf blacklist bluetooth blacklist hci_uart blacklist bnep blacklist btbcm EOF systemctl stop hciuart.service systemctl disable hciuart.service systemctl stop bluetooth.service systemctl disable bluetooth.service ~~~ Désactivation du reste ~~~bash lsmod | awk '{print $2 "\t" $1 "\t" $3 "\t" $4}' | sort -n ss -tlnau systemctl list-units --state active --type service ps -ef systemctl stop avahi-daemon.service systemctl disable avahi-daemon.service systemctl stop triggerhappy.service systemctl disable triggerhappy.service ~~~