快捷搜索:   nginx

ubuntu9.04设置系统启动级别

级别的是/etc/event.d/rc-default

cat -n /etc/event.d/rc-default复制代码

可以看到


1        # rc - runlevel compatibility


2        #


3        # This task guesses what the "default runlevel" should be and starts the


4        # appropriate script.


5       


6        start on stopped rcS


7       


8        script


9                runlevel --reboot || true


10       


11                if grep -q -w -- "-s\|single\|S" /proc/cmdline; then


12                    telinit S


13                elif [ -r /etc/inittab ]; then


14                    RL="$(sed -n -e "/^id:[0-9]*:initdefault:/{s/^id://;s/:.*//;p}" /etc/inittab || true)"


15                    if [ -n "$RL" ]; then


16                        telinit $RL


17                    else


18                        telinit 2


19                    fi


20                else


21                    telinit 2


22                fi


23        end script



第13行表示/etc/inittab文件还是起作用的,只不过默认没有这个文件



修改的办法有2种


1,手动添加/etc/inittab文件,设定启动级别


2,修改/etc/event.d/rc-default文件的第21行

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论