2023-08-02 09:36:53 +00:00
|
|
|
|
blatte :
|
|
|
|
|
DO NOT REBOOT IT. it sometimes fails…
|
|
|
|
|
-i 'firmware-amd-graphics firmware-realtek'
|
|
|
|
|
|
2023-09-13 08:46:02 +00:00
|
|
|
|
raku :
|
|
|
|
|
+ ajouter nonfree dans les sources
|
2024-10-16 09:41:44 +00:00
|
|
|
|
-i firmware-atheros -i firmware-realtek
|
|
|
|
|
|
|
|
|
|
cheri :
|
|
|
|
|
cat > /etc/init.d/autoreboot <<EOF
|
|
|
|
|
#!/bin/bash
|
|
|
|
|
### BEGIN INIT INFO
|
|
|
|
|
# Provides: autoreboot
|
|
|
|
|
# Required-Start: \$local_fs \$syslog
|
|
|
|
|
# Required-Stop: \$local_fs \$syslog
|
|
|
|
|
# Default-Start: 2 3 4 5
|
|
|
|
|
# Default-Stop: 0 1 6
|
|
|
|
|
# Short-Description: starts autoreboot
|
|
|
|
|
# Description: starts autoreboot
|
|
|
|
|
### END INIT INFO
|
|
|
|
|
sleep 120
|
|
|
|
|
ip -4 -o a > /dev/tty1
|
|
|
|
|
if ! ip a | grep -q 'eth0' ; then
|
|
|
|
|
echo 'eth0 not found. rebooting' >/dev/tty1
|
|
|
|
|
sleep 3
|
|
|
|
|
reboot
|
|
|
|
|
else
|
|
|
|
|
echo 'eth0 found' >/dev/tty1
|
|
|
|
|
sleep 3
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
exit 0
|
|
|
|
|
EOF
|
|
|
|
|
chmod +x /etc/init.d/autoreboot
|