Ubuntu18.04创建rc.local

ln -fs /lib/systemd/system/rc-local.service /etc/systemd/system/rc-local.service  
touch /etc/rc.local  
chmod 755 /etc/rc.local  

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.
#
# nohup /usr/local/frp/frpc -c /usr/local/frp/frpc.ini &
exit 0

发表回复

您的电子邮箱地址不会被公开。