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.

51 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.

mke2fs
===
创建磁盘分区上的“etc2/etc3”文件系统
## 说明
**mke2fs命令** 被用于创建磁盘分区上的“etc2/etc3”文件系统。
### 语法
```
mke2fs(选项)(参数)
```
```
-b<区块大小>:指定区块大小,单位为字节;
-c检查是否有损坏的区块
-f<不连续区段大小>:指定不连续区段的大小,单位为字节;
-F不管指定的设备为何强制执行mke2fs
-i<字节>:指定"字节/inode"的比例;
-N<inode数>指定要建立的inode数目
-l<文件>:从指定的文件中,读取文件西中损坏区块的信息;
-L<标签>:设置文件系统的标签名称;
-m<百分比值>指定给管理员保留区块的比例预设为5%
-M记录最后一次挂入的目录
-q执行时不显示任何信息
-r指定要建立的ext2文件系统版本
-R=<区块数>:设置磁盘阵列参数;
-S仅写入superblock与group descriptors而不更改inode able inode bitmap以及block bitmap
-v执行时显示详细信息
-V显示版本信息。
```
### 参数
* 设备文件:指定要创建的文件系统的分区设备文件名;
* 块数:指定要创建的文件系统的磁盘块数量。
### 实例
创建指定的ext2文件系统。
```
mke2fs -q /dev/hda1
```