一、查看当前硬盘情况
fdisk -l
新安装的VPS,vdb(第二块虚拟硬盘)尚未被激活。
二、新建分区
fdisk /dev/vdb
SSH执行以上命令
Command (m for help): n #新建分区 Command action e extended p primary partition (1-4) p #分区类型 Partition number (1-4): 1 #分区编号 First cylinder (1-1305, default 1):1 Using default value 1 #分区起始位置,默认即可 Last cylinder, +cylinders or +size{K,M,G} (1-1305, default 1305): 1305 #结束位置,默认即可 Command (m for help): t #指定分区格式 Selected partition 1 Hex code (type L to list codes): 83 #设置为Linux分区 Changed system type of partition 1 to 8e (Linux LVM) Command (m for help): w #保存 The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks.
三、再次执行fdisk命令查看当前分区状态
fdisk -l
若没有问题则写入系统内核。
partprobe #若没有问题则执行此命令写入内核
四、将分区格式化为ext3
mkfs.ext3 /dev/vdb1
五、挂载到/home
mount /dev/vdb1 /home
SSH执行以上命令,将第二硬盘挂载到/home分区。
df -l
SSH执行以上命令,查看挂载状态
六、写入挂载文件
echo "/dev/vdb1 /home ext3 defaults 1 3" >> /etc/fstab
SSH执行以上命令,写入/etc/fstab,开机时自动挂载。