2017年3月8日 星期三

CentOS 7.3 掛載新硬碟 (SCHOOL)

PVE 新增硬碟

  1. Hardware → Add → Hard Disk
  2. 設為 IDE 256G → Add

開機後進行掛載
  1. 查看目前掛載情形
    # df -h
  2. 查看所有硬碟
    # ls /dev/[sh]d*
    /dev/sdb 是未掛載的硬碟
  3. 用 fdisk 再確認
    空空的沒有東西。
  4. 使用 fdisk 開始分割
    # fdisk /dev/sdb
    Welcome to fdisk (util-linux 2.23.2).

    Changes will remain in memory only, until you decide to write them.
    Be careful before using the write command.

    Device does not contain a recognized partition table
    Building a new DOS disklabel with disk identifier 0x2f50f9be.

    命令 (m 以獲得說明):n (新增分割區)
    Partition type:
       p   primary (0 primary, 0 extended, 4 free)
       e   extended
    Select (default p): p (主要分割區)
    分割區編號 (1-4, default 1): 1
    起初 sector (2048-536870911, 預設 2048):按 Enter 使用預設值
    使用預設值 2048
    最後 sector, +sectors 或 +大小{K,M,G} (2048-536870911, 預設 536870911):按 Enter 使用預設值
    使用預設值 536870911
    Partition 1 of type Linux and of size 256 GiB is set

    命令 (m 以獲得說明):w (寫入設定)
    分割表已變更!

    呼叫 ioctl() 以重新讀取分割表。
    同步磁碟。
  5. 再次確認 /dev/sdb
    # fdisk -l /dev/sdb

    已分割完成
  6. 格式化磁碟機成 ext4 格式
    # mkfs -t ext4 /dev/sdb1
  7. 臨時掛載硬碟
    # mount  /dev/sdb1 /cnes/
  8. 使用 UUID 掛載硬碟
    1. 查詢硬碟 UID
      # blkid
    2. 寫入 fstab
      # vi /etc/fstab
    3. 立刻測試掛載是否正確
      # mount /cnes
      再用 df 測試

沒有留言:

張貼留言