阅读时间(1分钟)
硬盘挂载也是常用的命令之一,系统所在盘空间肯定是不够的。常常需要额外挂载一个更大的硬盘。
这个时候就需要挂载/解挂载命令。
1.挂载:检查一下可以挂载的磁盘
[root@localhost ~]# fdisk -l
可以看到/dev/sdc /dev/sdd 各有1T的存储空间,可以挂载。
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/sdd: 1199.7 GB, 1199705161728 bytes, 2343174144 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 /dev/sda: 299.4 GB, 299439751168 bytes, 584843264 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: 0x00083cac
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 2099199 1048576 83 Linux
/dev/sda2 2099200 584843263 291372032 8e Linux LVM
如果是新硬盘,还需要进行分区 fdisk /dev/sdb。如果已经分好区了,或者是重新挂载。需要建立一个文件夹,例如data_dir
mkdir data_dir 再挂载 mount /dev/sdb data_dir
2.检查硬盘(磁盘),并格式化
我们先检查下磁盘,命令如下
fdisk /dev/sdc
会有输出Welcome to fdisk (util-linux 2.23.2). xxx
说明这块硬盘还没有分区表partition table,说明是新硬盘,尚未使用。可以分区或直接对整个硬盘进行格式化。由于1T的硬盘很小,就不创立分区直接整个硬盘格式化了。
[root@localhost ~]# mkfs.ext4 /dev/sdc
mke2fs 1.42.9 (28-Dec-2013)
/dev/sdc is entire device, not just one partition!
Proceed anyway? (y,n) n
然后挂载。例如挂载到目录 /root/data_dir/ 下
[root@localhost ~]# mount /dev/sdc /root/data_dir/
3.解挂载也很简单, umount即可,如下:
[root@localhost ~]# umount /dev/sdc