欢迎来到代码驿站!

Linux

当前位置:首页 > 服务器 > Linux

Linux分区格式化的命令

时间:2020-10-19 14:49:23|栏目:Linux|点击:

当硬盘分区完成后,需要对分区进行格式化。

使用mkfs工具对硬盘分区进行格式化,支持MBR和GPT两种分区表。

命令1:格式化sdb1分区为ext3格式

mkfs.ext3 /dev/sdb1

mke2fs 1.41.12 (17-May-2010)
文件系统标签=
操作系统:Linux
块大小=4096 (log=2)
分块大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
131072 inodes, 524288 blocks
26214 blocks (5.00%) reserved for the super user
第一个数据块=0
Maximum filesystem blocks=536870912
16 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks: 
  32768, 98304, 163840, 229376, 294912

正在写入inode表: 完成                           

Creating journal (16384 blocks): 完成
Writing superblocks and filesystem accounting information: 完成
This filesystem will be automatically checked every 24 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.

命令2:格式化sdb5分区为ext4格式

mkfs -t ext4 /dev/sdb5

mke2fs 1.41.12 (17-May-2010)
文件系统标签=
操作系统:Linux
块大小=4096 (log=2)
分块大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
131072 inodes, 524288 blocks
26214 blocks (5.00%) reserved for the super user
第一个数据块=0
Maximum filesystem blocks=536870912
16 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks: 
  32768, 98304, 163840, 229376, 294912
正在写入inode表: 完成              
Creating journal (16384 blocks): 完成
Writing superblocks and filesystem accounting information: 完成
This filesystem will be automatically checked every 20 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.

p.s.

MBR分区表磁盘中的扩展分区不能格式化,即只能格式化主分区和逻辑分区;
格式化操作是即时生效的,不需要重启Linux系统,但此时用df命令并不能查看到磁盘的文件系统和类型,原因是还没有进行挂载。

df -hT /dev/sdb1
Filesystem   Type Size Used Avail Use% Mounted on
-       -   492M 260K 491M  1% /dev

总结

以上所述是小编给大家介绍的Linux分区格式化的命令,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

上一篇:CentOS7―HAProxy安装与配置详解

栏    目:Linux

下一篇:CentOS+Nginx+PHP+MySQL标准生产环境配置方法

本文标题:Linux分区格式化的命令

本文地址:http://www.codeinn.net/misctech/13803.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有