1. 程式人生 > 其它 >Linux下磁碟的分割槽和掛載

Linux下磁碟的分割槽和掛載

檢視硬碟情況

  fdisk -l

對上述查到的硬碟進行分割槽

fdisk /dev/vda

命令(輸入 m 獲取幫助):p #檢視現有分割槽

磁碟 /dev/vda:429.5 GB, 429496729600 位元組,838860800 個扇區

Units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
I/O 大小(最小/最佳):512 位元組 / 512 位元組
磁碟標籤型別:dos
磁碟識別符號:0x00098d78

裝置 Boot Start End Blocks Id System
/dev/vda1 * 2048 2099199 1048576 83 Linux
/dev/vda2 2099200 104857599 51379200 8e Linux LVM

命令(輸入 m 獲取幫助):n #新增分割槽
Partition type:
p primary (2 primary, 0 extended, 2 free)
e extended
Select (default p): p 增加主分割槽

分割槽號 (3,4,預設 3):
起始 扇區 (104857600-838860799,預設為 104857600):
將使用預設值 104857600
Last 扇區, +扇區 or +size{K,M,G} (104857600-838860799,預設為 838860799):+100GB
分割槽 3 已設定為 Linux 型別,大小設為 93.1 GiB

命令(輸入 m 獲取幫助):w #寫入


The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: 裝置或資源忙.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
正在同步磁碟

[root@localhost ~]# partprobe #重新整理讓磁碟可以被看到

[root@localhost ~]# ls /dev/vda #按Tab鍵看現有分割槽

格式化分割槽

  mkfs.xfs /dev/vdb3 #新買資料盤,要先格式化,才能掛載

配置開機自動掛載檔案

[root@localhost ~]# vi /etc/fstab #增加如下內容

/dev/vda3 /home xfs defaults 0 0
/dev/vda4 /opt xfs defaults 0 0

掛載

[root@localhost ~]# mount -a #掛載

[root@localhost ~]# df -h #現在就可以看到剛剛新掛載上去的磁碟空間了