ubuntu 14以后的系统默认没有rc.local文件来配置开机启动,在这里我们需要手动加入rc.local启动服务。
方法一 rc-local开机启动服务一键安装脚本(推荐)
wget -qO- --no-check-certificate https://www.uulap.com/download/rc-local-install.sh | bash
安装完成后,手动修改/etc/rc.local
中****-****-****-****
替换为用户的网络TOKEN并保存。
方法二 手动添加rc-local服务
1、执行以下命令,添加开机服务
下面的命令块建议直接复制黏贴进终端
cat > /etc/systemd/system/rc-local.service << EOF
[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
EOF
4、将下列内容中****-****-****-****
替换为用户的网络TOKEN
cat > /etc/rc.local << EOF
#!/bin/sh -e
nohup /root/nattunnel -t****-****-****-**** &
exit 0
EOF
5、给rc.local加上权限
sudo chmod +x /etc/rc.local
6、启用服务
sudo systemctl enable rc-local
开机启动设置完成.
文档更新时间: 2024-04-05 08:07 作者:admin