You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.3 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

init
===
init进程是所有Linux进程的父进程
## 补充说明
**init命令** 是Linux下的进程初始化工具init进程是所有Linux进程的父进程它的进程号为1。init命令是Linux操作系统中不可缺少的程序之一init进程是Linux内核引导运行的是系统中的第一个进程。
### 语法
```
init(选项)(参数)
```
### 选项
```
-b不执行相关脚本而直接进入单用户模式
-s切换到单用户模式。
```
### 参数
运行等级指定Linux系统要切换到的运行等级。
### 实例
几个常用的命令
查看系统进程命令:`ps -ef | head`
查看init的配置文件`more /etc/inittab`
查看系统当前运行的级别:`runlevel`
**运行级别**
到底什么是运行级呢简单的说运行级就是操作系统当前正在运行的功能级别。这个级别从0到6 ,具有不同的功能。你也可以在`/etc/inittab`中查看它的英文介绍。
```
#0 停机千万不能把initdefault 设置为0
#1 单用户模式
#2 多用户,没有 NFS(和级别3相似会停止部分服务)
#3 完全多用户模式
#4 没有用到
#5 x11(Xwindow)
#6 重新启动千万不要把initdefault 设置为6
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->