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.

43 lines
948 B

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.

mkbootdisk
===
可建立目前系统的启动盘
## 说明
**mkbootdisk命令** 用来为当前运行的系统创建能够单独使用的系统引导软盘,以便在系统出现故障时能够启动操作进行适当的修复工作
## 选项
```
mkbootdisk(选项)(参数)
```
```
--device<设备>:指定设备
--mkinitrdargs<参数>设置mkinitrd的参数
--noprompt不会提示用户插入磁盘
--verbose执行时显示详细的信息
--version显示版本信息
```
### 参数
内核:指定内核版本
## 实例
```
mkbootdisk --device /dev/fd0 `uname -r`
```
其中,``uname -r``是目前Linux 系统所使用的核心版本如果你有多个核心版本的话你以可以直接输入核心版本。例如在这个网页中所使用的核心有两个版本一个是2.2.12-20另一个是2.2.18若要以2.2.18设定开机的话,可以使用:
```
mkbootdisk --device /dev/fd0 2.2.18
```