6、startup-shutdown(linux启动流程) --A、boot sequence(important) linux启动过程 a. load bios(hardware information) b. read MBRs config to find out the OS (MBR--Master Boot Record,硬盘第一个物理扇区,柱面0、磁头0、扇区1,包含主引导程序和硬盘分区表) c. load the kernel of the OS (加载为kernel核心的OS) d. init process starts... (启动linux第一个进程init) e. execute /etc/rc.d/sysinit (执行系统最重要的配置文件,后台启用进程) (rc.d--run command) f. start other modules(stc/modules.conf) (开启各种模块,如内存管理模块、硬盘管理模块) g. execute the run level scripts (系统启动是分层次的,根据情况执行,每个层次之间没关系) 0 - 系统停机状态 1 - 单用户工作状态 root 2 - 多用户状态(没有NFS) 3 - 多用户状态(有NFS) NFS - Network File System 网络文件系统,联网系统 4 - 系统未使用,留给用户 5 - 图形界面 6 - 系统正常关闭并重新启动 如:cd /etc -- 有rc0.d、rc1.d、rc2.d、rc3.d、rc4.d、rc5.d等多个文件夹,保存着各个层次执行的进程文件 h. execute /etc/rc.d/rc.local (重要) (保存其它进程脚本,如tomcat自动启动,要修改此配置文件) i. execute /bin/login (登录界面) j. shell started...
7、vi 文本编辑器 --两种模式:命令模式 编辑模式 --vi [文件名] (切换到编辑模式) a append-光标后添加 i insert-光标前插入 o open-另起一行编辑 esc (切换回命令模式) :w 存盘 :wq 存盘退出 :q 退出 :q! 不存盘退出 dd 删除其中一行 dw 删除一个单词