|
|
我的/etc/rc.d/rc.local文件内容如下,我本想是系统进入图形界面后让这三个小程序自动起来的,但事实上没有。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
/usr/bin/fcitx
/usr/bin/gaim
/usr/bin/stardict |
|