Linux基本命令(五)
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-03-27
initdefault -->指出系统启动了,从哪个runlevel启动 sysinit -->system initialization wait -->加入启动了一个wait的process,别的process在它结束前,无法运行 respawn -->程序在结束后,会被重新启动,登录的命令 ctraltdel -->接收ctr alt del快捷键 --process -->执行什么命令 4. 启动级别 3 5 4.1 /etc/rc.d/rc X 4.2 ll /etc/rc.d drwxr-xr-x. 2 root root 4096 8月 26 17:55 init.d -rwxr-xr-x. 1 root root 2617 9月 2 2010 rc drwxr-xr-x. 2 root root 4096 8月 27 19:44 rc0.d drwxr-xr-x. 2 root root 4096 8月 27 19:44 rc1.d drwxr-xr-x. 2 root root 4096 8月 27 19:44 rc2.d drwxr-xr-x. 2 root root 4096 8月 27 19:44 rc3.d drwxr-xr-x. 2 root root 4096 8月 27 19:44 rc4.d drwxr-xr-x. 2 root root 4096 8月 27 19:44 rc5.d drwxr-xr-x. 2 root root 4096 8月 27 19:44 rc6.d -rwxr-xr-x. 1 root root 220 9月 2 2010 rc.local -rwxr-xr-x. 1 root root 19088 9月 2 2010 rc.sysinit 4.3 /etc/rc.d/init.d/ -->服务的脚本 /etc/init.d/和它内容相同 4.4 /etc/rc.d/rcX.d/ -->里面的文件是/etc/rc.d/init.d/内脚本的软链接 S -->start 开机自动启动 K -->Kill 开机不自动启动 数字 -->启动|关闭时的序号 4.5 自己定义脚本方式 /etc/rc.d/init.d/ -->脚本的真实文件 /etc/rc.d/rcX.d/ -->建立相应的软链接 5. 几个关键文件 /etc/issue -->本地登录终端的提示信息 [root@study1 init.d]# cat /etc/issue Red Hat Enterprise Linux Server release 6.0 (Santiago) Kernel \r on an \m /etc/issue.net -->net下登录终端的提示信息 [root@study1 init.d]# cat /etc/issue.net Red Hat Enterprise Linux Server release 6.0 (Santiago) Kernel \r on an \m /etc/motd -->登录成功后的提示信息,默认为空 6. RHEL6的boot SysVInit(redhat9 rhel5) --> upstart(rhel6) SysV-style: System V init examines the /etc/inittab file for an :initdefault: entry, which tells init whether there is a default runlevel. If there is no default runlevel, then the user is dumped to a system console, where a runlevel must be entered manually. Upstart is an event-based replacement for the traditional init daemon — the method by which several Unix-like computer operating systems perform tasks when the computer is started. It was written by Scott James Remnant, a former employee of Canonical Ltd. 启动速度比SysVInit要快,基于事件的启动模式 **************************part 2: 服务管理************************** 1.手动的打开|关闭服务,查看服务的状态 1.1 service命令 service httpd status --查看状态 service httpd start --打开 service httpd stop --关闭 service httpd restart --重启 service dhcpd configtest --测试dhcpd.conf文件 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 鸟哥基础-读书笔记一下一篇: linux程序性假死机
关于Linux基本命令(五)的所有评论