1、切换至root,建立rc-local.service文件
- sudo su
- vim /etc/systemd/system/rc-local.service
复制代码 2、在里面写入如下内容
- [Unit]
- Description=/etc/rc.local Compatibility
- ConditionPathExists=/etc/rc.local
- [Service]
- Type=forking
- ExecStart=/etc/rc.local start
- TimeoutSec=0
- StandardOutput=tty
- RemainAfterExit=yes
- SysVStartPriority=99
- [Install]
- WantedBy=multi-user.target
复制代码 3、然后在创建文件rc.local
4、里面写入下面内容(红色部分就是开机所要执行的脚本和命令)
- #!/bin/sh -e
- sleep 3
- mount -t cifs -o iocharset=utf8,username=your_username,password=your_password,uid=1000,gid=1000 //192.168.123.1/软件 /home/kylin/桌面/share_test
- mount -t cifs -o iocharset=utf8,username=your_username,password=your_password,vers=1.0 //192.168.123.1/7F-file-62 /home/kylin/桌面/share_test
- exit 0
复制代码 5、加上权限
6、启动服务
- systemctl enable rc-local
复制代码 7、开启服务
- systemctl start rc-local.service
复制代码
|
评分
-
查看全部评分
|
|
|
|
版权说明:论坛帖子主题均由合作第三方提供并上传,若内容存在侵权,请进行举报