黄日 发表于 2004-11-13 02:01:39

不想开新贴的,实在是找不到,怎么添加自动启动程序??

怎么添加自动启动程序??
按照WINDOWS下面的思维来说,应该很简单的,但是我就是不知道.

fox_eagle2003 发表于 2004-11-13 02:17:42

/etc/rc.d/rc.local
如果有这文件的话,直接在这文件的末尾加命令就行了。

黄日 发表于 2004-11-13 02:57:39

#!/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


只有这些而已
没有别的说明了
不明白.

fox_eagle2003 发表于 2004-11-13 03:11:04

比如你想开机自己运行mount,则在文件加上命令,像这一样:

#!/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
mount -o iocharset=cp936 /dev/hda1 /mnt/c



这样就可以自动挂载了。

河豚宝宝 发表于 2004-11-13 12:36:56

哈哈,多多学习,宝宝也试试~~

黄日 发表于 2004-11-14 02:18:35

我不是想用它来挂载分区的
是启动那个输入法的,输入法的名字忘了……
就是很象紫光的那个

fox_eagle2003 发表于 2004-11-14 03:16:00

这 :roll:
想起来了,在debian/gentoo版里有教启动系统时启动输入法的,去找找linky_fan版主吧,他很好心,而且知识非常丰富,发个信给他就知道了。
我只记得是修改.bashXXXXX的文件了。 :mrgreen::mrgreen:

黄日 发表于 2004-11-14 07:02:19

谢谢啦
马上去找找看
页: [1]
查看完整版本: 不想开新贴的,实在是找不到,怎么添加自动启动程序??