ubuntu 开机执行脚本

#在 /etc/rc.local 文件中添加要执行的命令,exit 0结尾
xyang@xyang-Latitude-E5440:~$ cat /etc/rc.local
#!/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.
sudo -u postgres /opt/pg94/bin/pg_ctl -D /export/pg940_data start -l /home/postgres/logfile
sudo ifconfig wlan0 mtu 1200
sudo ifconfig tun0 mtu 1112
sudo ifconfig wlan0 down
sudo rmmod -f ath9k
sudo modprobe ath9k nohwcrypt=1
sudo ifconfig wlan0 up
exit 0

#或者将要执行的脚本添加到/etc/init.d/ 目录下


你可能感兴趣的:(linux)