关于linux启动的问题

关于linux启动的问题

请问:如何让linux启动时自动执行我写的脚本?
谢谢
Redhat 加入 /etc/rc.local
SuSE 加入 /etc/init.d/boot.local

debian 上使用 rc.local
touch /etc/init.d/rc.local
设置可执行:
chmod +x /etc/init.d/rc.local
用update-rc.d设置启动级别:
update-rc.d rc.local start 99 2 3 4 5 . stop 99 0 1 6 .
为了编辑方便,创建一个链接:
ln -s /etc/init.d/rc.local /etc/rc.local
fc3上呢?
FC 也是 Redhat 系的,应该一样。
了解System V风格和BSD风格的区别就可以在所有发行版上修改了