添加开机自动任务,可以省去开机后手动输入初始化命令的操作
一、方式1
run-parts方式,也就是rc.local的方式(这种方式有时候不生效,按照4中的配置就好了)
1、Linux Deploy配置
1.点击右下角的设置图标进入设置界面
2.划到“初始化”那块,“启用”打上勾
选项“run-parts”
初始化路径: /etc/rc.local
2、编写配置文件
1、自行创建 /etc/rc.local 添加以下默认内容(在 exit 0 之前加入自定义内容,第一行不可删除)
#!/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.
exit 0