随Linux实例创建的数据盘或者单独购买的数据盘,需要格式化后才能正常使用。本文描述如何用一块新的数据盘创建一个单分区数据盘并挂载文件系统。您也可以根据业务需要,为数据盘配置多分区。
警告
说明 本文的操作仅适用小于等于 2 TiB 的数据盘。大于 2 TiB 的数据盘,请参考分区格式化大于2 TiB云盘。建议使用系统自带的工具进行分区操作。
数据盘的设备名默认由系统分配,从/dev/vdb递增排列,包括/dev/vdb−/dev/vdz。您可以在ECS控制台的云盘页面中,选择更多 > 修改属性查看。
本示例采用一块新的 20 GiB 数据盘,设备名为 /dev/vdb,创建一个单分区数据盘并格式化为 ext4 文件系统。使用 I/O 优化实例,操作系统为 CentOS 7.6。
运行 fdisk -l
命令查看实例上的数据盘。
说明
dev/xvd?
(?
是 a−z 的任意一个字母),表示您使用的是非 I/O 优化实例。依次执行以下命令以创建一个单分区数据盘:
fdisk -u /dev/vdb
:分区数据盘。p
:查看数据盘的分区情况。本示例中,数据盘没有分区。n
:创建一个新分区。p
:选择分区类型为主分区。说明 本示例中创建一个单分区数据盘,所以只需要创建主分区。如果要创建 4 个以上分区,您应该创建至少一个扩展分区,即选择 e
(extended)。
1
。p
:查看该数据盘的规划分区情况。输入 w
:开始分区,并在分区后退出。
# fdisk -u /dev/vdb
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0x3e60020e.
Command (m for help): p
Disk /dev/vdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x3e60020e
Device Boot Start End Blocks Id System
Command (m for help): n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-41943039, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-41943039, default 41943039):
Using default value 41943039
Partition 1 of type Linux and of size 20 GiB is set
Command (m for help): p
Disk /dev/vdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x3e60020e
Device Boot Start End Blocks Id System
/dev/vdb1 2048 41943039 20970496 83 Linux
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
运行命令 fdisk -lu /dev/vdb
查看新分区。
如果出现以下信息,表示新分区 /dev/vdb1
创建成功。
# fdisk -lu /dev/vdb
Disk /dev/vdb: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x3e60020e
Device Boot Start End Blocks Id System
/dev/vdb1 2048 41943039 20970496 83 Linux
运行命令 mkfs.ext4 /dev/vdb1
在新分区上创建一个文件系统。
本示例中,创建一个 ext4 文件系统。您也可以根据自己的需要,选择创建其他文件系统,例如,如果您需要在 Linux、Windows 和 Mac 系统之间共享文件,可以使用 mkfs.vfat
创建 VFAT 文件系统。
说明 创建文件系统所需时间取决于数据盘大小。
[root@i##### ~]# mkfs.ext4 /dev/vdb1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
1310720 inodes, 5242624 blocks
262131 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2153775104
160 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000
Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
cp /etc/fstab /etc/fstab.bak
备份 etc/fstab。echo /dev/vdb1 /mnt ext4 defaults 0 0 >> /etc/fstab
向 /etc/fstab 写入新分区信息。说明 Ubuntu 12.04 不支持 barrier,因此Ubuntu 12.04系统需要运行命令 echo '/dev/vdb1 /mnt ext4 barrier=0 0 0' >> /etc/fstab
。
如要把数据盘单独挂载到某个文件夹,例如单独用来存放网页,则将命令中 /mnt
替换成所需的挂载点路径。
运行命令 cat /etc/fstab
查看 /etc/fstab 中的新分区信息。
[root@i##### ~]# cat /etc/fstab
#
# /etc/fstab
# Created by anaconda on Wed Dec 12 07:53:08 2018
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=d67c3b17-255b-4687-be04-f29190d37396 / ext4 defaults 1 1
/dev/vdb1 /mnt ext4 defaults 0 0
mount /dev/vdb1 /mnt
挂载文件系统。运行命令 df -h
查看目前磁盘空间和使用情况。
出现新建文件系统的信息,表示挂载成功,您不需要重启实例即可以使用新的文件系统。
[root@i##### ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/vda1 40G 1.6G 36G 5% /
devtmpfs 234M 0 234M 0% /dev
tmpfs 244M 0 244M 0% /dev/shm
tmpfs 244M 484K 244M 1% /run
tmpfs 244M 0 244M 0% /sys/fs/cgroup
tmpfs 49M 0 49M 0% /run/user/0
/dev/vdb1 20G 45M 19G 1% /mnt
Original url: Access
Created at: 2019-02-21 20:58:05
Category: default
Tags: none
未标明原创文章均为采集,版权归作者所有,转载无需和我联系,请注明原出处,南摩阿彌陀佛,知识,不只知道,要得到
Rain酱:
如果 mount /dev/vdd1 /mnvmount: mount point /mnv does not exist#root : mkdir mnv 一个就发了
2019-02-21 21:21:00 回复
Rain酱:
2412 2018-10-06 15:47:32 root fdisk -l 2413 2018-10-06 15:49:08 root fdisk /dev/vdc 2414 2018-10-06 15:49:59 root fdisk -l 2415 2018-10-06 15:52:02 root top 2416 2018-10-06 15:52:41 root history | grep mkfs 2417 2018-10-06 15:53:40 root fdisk -l 2418 2018-10-06 15:54:02 root mkfs.ext4 /dev/vdc1 2419 2018-10-06 15:54:29 root fdisk -l 2420 2018-10-06 15:54:51 root cat /etc/fstab 2421 2018-10-06 15:56:39 root echo /dev/vdc1 /mnu ext4 defaults 0 0 >> /etc/fstab 2422 2018-10-06 15:56:42 root cat /etc/fstab
2019-02-21 20:58:48 回复
最新评论