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.

23 lines
479 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.

# e2label
## 说明
**e2label命令** 用来修改ext2/ext3/ext4文件系统的卷标
## 选项
```markdown
e2label device [ new-label ]
若new-label可选参数未指定则只是查看对应设备的卷标指定的卷标最多可以包含16个字符 如果new-label的长度超过16个字符
则e2label将截断它并打印一个警告信息
```
## 实例
```bash
e2lable /dev/sdb1 # 查看分区的卷标
e2lable /dev/sdb1 network # 设置分区的卷标
```