也就是说,我有任何想要在开机时就进行的工作时,直接将他写入 /etc/rc.d/rc.local ,
那么该工作就会在开机的时候自动被载入喔!而不必等我们登入系统去启动呢!
是否很方便啊!也就是说,在linux启动的最后阶段,系统会执行存于rc.local中的命令。
和windows里面的“启动”菜单有点像,但是设置麻烦些,功能更强大些。
心得:想让系统启动的时候就自动启动可以将其放入到/etc/rc.d/rc.local文件中去。那系统启动就可以马上启动起来!
示例:
编辑 /etc/rc.d/rc.local
[root@localhost etc]# vi rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don’t
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
#cd /usr/local/mysql; /usr/local/mysql/bin/safe_mysqld –user=mysql &
/usr/local/mysql/support-files/mysql.server start
/usr/local/apache/bin/apachectl start
心得:怪不得经常会看到安装脚本这样写echo > /etc/rc.d/rc.local
阅读(1034) | 评论(0) | 转发(0) |