最近使用了Linux系统,因为要开发PHP所以使用了Xampp,可是Xampp默认不会开机自启动,所以手动增加,百度了一下方法大致如下
Ubuntu/Debian:
方法一:
1. 在/etc/init.d 目錄下建立lampp.sh 文件,然后添加以下内容:
#!/bin/sh /opt/lampp/lampp start
2.
chmod 755 /etc/init.d/lampp.sh
3. 编辑/etc/init.d/rc.local在最后一行加上:
sh /etc/init.d/lampp.sh
或者
exec /etc/init.d/lampp.sh
(注:这种方法即使开机后没有登入,XAMPP还是会启动)
4. 重启ubuntu
方法二:
sudo ln -s /opt/lampp/lampp /etc/init.d/lampp sudo update-rc.d -f lampp defaults
P.S:Deepin用方法二才成功
CentOS:
#ln -s /opt/lampp/xampp /etc/rc.d/init.d/xampp #chkconfig --add xampp #chkconfig xampp on