天天看點

Linux常用技巧系列: 硬碟挂載篇Mount

閱讀時間(1分鐘)

硬碟挂載也是常用的指令之一,系統所在盤空間肯定是不夠的。常常需要額外挂載一個更大的硬碟。

這個時候就需要挂載/解挂載指令。

1.挂載:檢查一下可以挂載的磁盤

[[email protected] ~]# 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的硬碟很小,就不創立分區直接整個硬碟格式化了。

[[email protected] ~]# 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/ 下

[[email protected] ~]# mount /dev/sdc /root/data_dir/
           

3.解挂載也很簡單, umount即可,如下:

[[email protected] ~]# umount /dev/sdc