Non so da quando accade.
Ma ultimamente se do il comando sudo reboot
Mi si spegne e non si riaccende
Devo scollegare l alimentazione e ridare l alimentazione per farlo partire. Non so perché il reboot non lo fa.
Code: Select all
tail -n100 /var/log/syslog
Code: Select all
sudo rm /var/log/syslog
sudo touch /forcefsck
sudo reboot
Code: Select all
more /var/log/syslog
Code: Select all
...
# automatically repair filesystems with inconsistencies during boot
FSCKFIX=yes
Code: Select all
...
# automatically repair filesystems with inconsistencies during boot
FSCKFIX=yesCode: Select all
sudo nano /etc/rc.localCode: Select all
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
touch /forcefsck
exit 0