我向 KVM 客户机(centos6.5)添加了一个新的虚拟硬盘 vdb,如下所示
[root@centos ~]# fdisk -l | grep vdb
Disk /dev/vdb: 8589 MB, 8589934592 bytes
然后,有两种方法可以格式化磁盘
A。
[root@centos ~]# mkfs.ext4 /dev/vdb
[root@centos ~]# mount /dev/vdb /data/
b.
[root@boss ~]# fdisk /dev/sdb
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-1044, default 1):
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-1044, default 1044):
Using default value 1044
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
[root@centos ~]# mkfs.ext4 /dev/vdb1
[root@centos ~]# mount /dev/vdb1 /data/
以上两种方式都可以,但是有什么不同呢?
答案1
第一个命令是在整个磁盘上创建文件系统,无法添加更多分区。第二个命令是对磁盘进行分区,可以添加更多分区(假设 sdb1 没有使用整个磁盘)。