Ubuntu 16.04设置开机自启动脚本

1.创建脚本(.sh文件)
可以在/home/user/Documents/scripts路径下建立名为auto_run_test.sh的文件;auto_run_test.sh里面写上具体要做的事,例如我这里:

#! /bin/bash

echo “helloStartup” > ./output.txt

cd /home/user/mywbc_v5_usb/build

echo “EnterBuildDir” > ./output.txt

./sim/sim

echo “AfterSim” > ./outputend.txt


具体解释:
1)#! /bin/bash固定写法,照抄;
2)后面写你想实现的操作,我这里是要将helloStartup写入当前路径下的output.txt文件。

2.设置脚本执行权限
这里直接简单粗暴:
sudo chmod 777 auto_run_test.sh

3.设置rc.local文件可写权限
一般rc.local文件不支持更改,所以要更改权限,这里和上一步类似:
cd /etc
sudo chmod 777 rc.local

4.更改rc.local文件内容
直接上命令:
vim rc.local
输完命令之后在文本最后将auto_run_test.sh添加进去:

#!/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.
cd /home/user/Documents/scripts
sudo sh auto_run_test.sh

exit 0


具体解释:
1)cd 后面的~是前面提到的auto_run_test.sh所在路径;
2)"exit 0"在最后加上就好,固定格式

5.重启检查
终端上输入:sudo reboot
重启之后找到output.txt文件就会看到里面写入了"hello"

============================================

有的ubuntu版本没有rc.local脚本

可以直接将shell指令追加写到/etc/profile文件的最后面

你可能感兴趣的:(机器人软件,linux)