初始化数据盘分区挂载
Posted 点滴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初始化数据盘分区挂载相关的知识,希望对你有一定的参考价值。
fdisk -S 63 /dev/vdb
根据提示,依次输入“n”,“p”“1”,两次回车,“wq”,分区就开始了,很快就会完成。
fdisk -S sects
Specify the number of sectors per track of the disk. (Not the physical number, of course, but the number used for partition tables.) A reasonable value is 63. This option is DEPRECATED.
使用ext4 格式化分区
ext4 分区挂载到/data 目录下
mount -a 挂载
已经挂在到/data目录下了
fdisk -S 63 /dev/vdb
mkfs.ext4 /dev/vdb1
echo \'/dev/vdb1 /data ext4 defaults 0 0\' >> /etc/fstab
mount -a
以上是关于初始化数据盘分区挂载的主要内容,如果未能解决你的问题,请参考以下文章