update-rc.d详解 Debian系统启动脚本


Insert links using the defaults:
  update-rc.d foobar defaults

Equivalent command using explicit argument sets:
  update-rc.d foobar start 20 2 3 4 5 . stop 20 0 1 6 .

More typical command using explicit argument sets:
  update-rc.d foobar start 30 2 3 4 5 . stop 70 0 1 6 .

Remove  all  links  for  a  script  (assuming  foobar  has been deleted
already):
  update-rc.d foobar remove

Example of disabling a service:
  update-rc.d -f foobar remove
  update-rc.d foobar stop 20 2 3 4 5 .

Example of a command for installing a  system  initialization-and-shut‐
down script:
  update-rc.d foobar start 45 S . start 31 0 6 .

Example of a command for disabling a system initialization-and-shutdown
script:
  update-rc.d -f foobar remove
  update-rc.d foobar stop 45 S .

修改LINUX默认启动级别

# 0 - 停机(千万不要把initdefault设置为0 )
# 1 - 单用户模式
# 2 - 多用户,但是没有NFS
# 3 - 完全多用户模式
# 4 - 没有用到
# 5 - X11
# 6 - 重新启动(千万不要把initdefault设置为6 )
# 对各个运行级的详细解释:
0 为停机,机器关闭。
1 为单用户模式,就像Win9x下的安全模式类似。
2 为多用户模式,但是没有NFS支持。
3 为完整的多用户模式,是标准的运行级。
4 一般不用,在一些特殊情况下可以用它来做一些事情。例如在笔记本电脑的电池用尽时,可以切换到这个模式来做一些设置。
5 就是X11,进到X Window系统了。
6 为重启,运行init 6机器就会重启。

修改级别
vi /etc/inittab
把id:3:initdefault:中的3改为5就是默认进入图形界面了