ubuntu挂载新硬盘

查看硬盘设备情况
ls /dev/sd*
创建分区
sudo fdisk /dev/sdb
此命令进行创建分区,会出现类似如下内容,
Command (m for help):
这里按m获得帮助
a toggle a bootable flag 将分区设置为启动区
b edit bsd disklabel 编辑bsd的disklabel
c toggle the dos compatibility flag 设置该分区为dos分区
d delete a partition 删除分区
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)
按照步骤创建分区,依照提示做

格式化分区
sudo mkfs -t ext4 /dev/sdb
设置挂载点
sudo mkdir /backDisk
设置开机挂载
ls -l /dev/disk/by-uuid/
首先查看sdb所对应的UUID,我的是d36719e3-4c86-4311-bb08-f4a7227c5be1
UUID=d36719e3-4c86-4311-bb08-f4a7227c5be1 /backDisk ext4 defaults 0 2
sudo vim /etc/fstab

重启

你可能感兴趣的:(ubuntu挂载新硬盘)