第一步查看硬盘挂载情况
lsblk
如果没有分区的话,先分区
fdisk /dev/vda
命令的含义
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition 删除一个分区
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types
m print this menu
n add a new partition 新建一个分区
o create a new empty DOS partition table
p print the partition table 打印分区列表
q quit without saving changes 退出不保存更改
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit 将分区表写入磁盘并退出
x extra functionality (experts only)
用m命令来看fdisk命令的内部命令;n命令创建一个新分区;d命令删除一个存在的分区;p命令显示分区列表;t命令修改分区的类型ID号;l命令显示分区ID号的列表;a命令指定启动分区;w命令是将对分区表的修改存盘让它发生作用。
选择n 默认是把全部空间都分到第一个区
第二步 格式化分区
mkfs -t ext3 /dev/vda1
第三步 临时挂载分区
mount -t ext4 /dev/vdb1 /xhs
第四步 开机挂载分区
vi /etc/fstab
/dev/vda1 /xhs ext4 defaults 0 0
第五步 重启
reboot