Under /etc/init.d/
, create a file called always-boot
. Then run the following commands:
sudo service always-boot start
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: always boot | |
# Required-Start: $local_fs | |
# Required-Stop: $local_fs | |
# Default-Start: S | |
# Default-Stop: 1 | |
# Short-Description: always boot | |
# Description: always boot | |
### END INIT INFO | |
set -e | |
PATH="/sbin:/bin" | |
setpci -s 00:1f.0 0xa4.b=0 | |
exit 0 |
Under /etc/init.d/
, create a file called always-boot
. Then run the following commands:
sudo service always-boot start