1、方法一,编辑rc.loacl脚本
Ubuntu开机之后会执行/etc/rc.local文件中的脚本,
所以我们可以直接在/etc/rc.local中添加启动脚本。
当然要添加到语句:exit 0 前面才行。
如:
sudo vim /etc/rc.local
然后在 exit 0 前面添加好脚本代码,按ESC退出编辑,:wq!保存编辑。
2、方法二,添加一个Ubuntu的开机启动服务。
在init.d目录建立一个脚本文件svnd.sh
# cd /etc/init.d # vim svnd.sh
输入svnd.sh内容如下(/srv/svn 为svn仓库目录):
#!/bin/bash #svnserve startup svnserve -d -r /srv/svn
保存退出。
更新,修改权限:
# update-rc.d svnd.sh defaults # chmod 777 svnd.sh
# cd /etc/init.d # update-rc.d -f svnd.sh remove
评论已关闭。