磁盤掛載
查看已經掛載磁盤數spa
cat /proc/scsi/scsi | grep Host
Host: scsi1 Channel: 00 Id: 00 Lun: 00
Host: scsi2 Channel: 00 Id: 00 Lun: 00
# 或者
ll /dev/disk/by-path | grep -v part
lrwxrwxrwx. 1 root root 9 Dec 2 00:25 pci-0000:00:1f.2-ata-2.0 -> ../../sda
lrwxrwxrwx. 1 root root 9 Dec 2 00:25 pci-0000:00:1f.2-ata-2.0 -> ../../sdb
判斷磁盤名orm
ll /dev/disk/by-path/
取到了'../../sdb',
則磁盤名爲:/dev/disk/by-path/../../sdb,即 /dev/sdb
刪除/dev/sdb全部分區ci
fdisk /dev/sdb
Command (m for help): p(查看當前分區狀態)
Command (m for help): d(刪除分區)
Partition number (1-3): 3(選擇要刪除的分區)
Command (m for help): d(刪除分區)
Partition number (1-2): 2(選擇要刪除的分區)
Command (m for help): d(由於只剩下一個分區,無需選擇直接刪除)
Command (m for help): p(查看當前分區狀態)
Command (m for help): w(回車保存新的分區)
格式化磁盤it
fdisk /dev/sdb
Command(m for help): n(回車新建分區)
p primary partition(1-4): p(回車新建主分區)
Partition number (1-4): 1(分區號1-4之間選擇1)
First cylinder(2048-xxxxx,default 2048):(開始柱面 回車默認選擇最小值)
Last cylinder(2048-xxxxx,default xxxxx):(結束柱面 選擇上一步中的xxxxx)
Command(m for help): p(查看調整後分區表)
Command(m for help): w(回車保存新的分區)
若是提示「Partition table entries are not in disk order」則執行io
fdisk /dev/sdb
Command(m for help): x(進入專家模式)
Command(m for help): f(修復分區表)
Command(m for help): p(查看調整後分區表)
Command(m for help): w(回車保存新的分區)
建立磁盤分區table
mkfs.ext4 /dev/sdb1
Writing superblocks and filesystem accounting information:(回車)
掛載分區中的磁盤到目錄/file1ast
# 建立目錄/file1
# 掛載/dev/sdb1 到目錄 /file1
mkdir /file1
mount /dev/sdb1 /file1
將掛載信息寫入fstab,讓系統自動掛載form
# 參數說明
設備名: /dev/sdb1(一個磁盤分區)
掛載點: /file1(系統上的一個目錄)
設備類型: ext4(可經過'man fstab'查詢支持類型)
掛載參數: defaults(參數默認便可)
dump-freq: 0
pass-num: 0
echo "/dev/sdb1 /file1 ext4 defaults 0 0" >> /etc/fstab
查看掛載寫入狀況file
cat /etc/fstab
取消掛載
安裝psmiscgrep
yum install psmisc -y
取消目錄佔用
fuser -k /file1
fuser -k /dev/sdb1
取消掛載點
umount /file1
umount /dev/sdb1
刪除/dev/sdb全部分區
fdisk /dev/sdb
Command (m for help): p(查看當前分區狀態)
Command (m for help): d(刪除分區)
Partition number (1-2): 1(選擇要刪除的分區)
Command (m for help): d(刪除分區)
Partition number (1-2): 2(選擇要刪除的分區)
Command (m for help): p(查看當前分區狀態)
Command (m for help): w(回車保存新的分區)
https://yq.aliyun.com/articles/601273