[root@OracleRAC-data1 ~]# vi /etc/inittab # # inittab This file describes how the INIT process should set up # the system in a certain run-level. # # Author: Miquel van Smoorenburg, <> # Modified for RHS Linux by Marc Ewing and Donnie Barnes #
# Default runlevel. The runlevels used by RHS are: # 0 - halt (Do NOT set initdefault to this) 关机 # 1 - Single user mode 单人维护模式,和Windows的安全模式一样,用于修复的时候才用 # 2 - Multiuser, without NFS (The same as 3, if you do not have networking)多人无网络模式 # 3 - Full multiuser mode 多人模式,就是我们所希望的命令行模式 # 4 - unused 系统预制,为了以后扩展方便 # 5 - X11 X-Windows模式,就是图形界面 # 6 - reboot (Do NOT set initdefault to this)重新启动 # id:5:initdefault: #<----改这个地方
# System initialization. si::sysinit:/etc/rc.d/rc.sysinit
# Trap CTRL-ALT-DELETE ca::ctrlaltdel:/sbin/shutdown -t3 -r now
# When our UPS tells us power has failed, assume we have a few minutes # of power left. Schedule a shutdown for 2 minutes from now. # This does, of course, assume you have powerd installed and your # UPS connected and working correctly. pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down"
# If power was restored before the shutdown kicked in, cancel it. pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled"
# Run gettys in standard runlevels # 在登录的时候,用Ctrl+Alt+F1到F7可以切换登陆模式,其中F1到F6是命令行,F7是图形界面
# Run xdm in runlevel 5 x:5:respawn:/etc/X11/prefdm -nodaemon h1:35:respawn:/etc/init.d/init.evmd run >/dev/null 2>&1 h2:35:respawn:/etc/init.d/init.cssd fatal >/dev/null 2>&1 h3:35:respawn:/etc/init.d/init.crsd run >/dev/null 2>&1