centos7磁碟掛載及取消

2021-09-07 22:52:14 字數 2559 閱讀 6638

磁碟掛載

檢視已經掛載磁碟數

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

判斷磁碟名

ll /dev/disk/by-path/

取到了'../../sdb',

則磁碟名為:/dev/disk/by-path/../../sdb,即 /dev/sdb

刪除/dev/sdb所有分割槽

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(回車儲存新的分割槽)

格式化磁碟

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-***xx,default 2048):(開始柱面 回車預設選擇最小值)

last cylinder(2048-***xx,default ***xx):(結束柱面 選擇上一步中的***xx)

command(m for help): p(檢視調整後分割槽表)

command(m for help): w(回車儲存新的分割槽)

如果提示「partition table entries are not in disk order」則執行

fdisk /dev/sdb

command(m for help): x(進入專家模式)

command(m for help): f(修復分割槽表)

command(m for help): p(檢視調整後分割槽表)

command(m for help): w(回車儲存新的分割槽)

建立磁碟分割槽

mkfs.ext4 /dev/sdb1

writing superblocks and filesystem accounting information:(回車)

掛載分割槽中的磁碟到目錄/file1

# 建立目錄/file1

# 掛載/dev/sdb1 到目錄 /file1

mkdir /file1

mount /dev/sdb1 /file1

將掛載資訊寫入fstab,讓系統自動掛載

# 引數說明

裝置名: /dev/sdb1(乙個磁碟分割槽)

掛載點: /file1(系統上的乙個目錄)

裝置型別: ext4(可通過'man fstab'查詢支援型別)

掛載引數: defaults(引數預設即可)

dump-freq: 0

pass-num: 0

echo "/dev/sdb1 /file1 ext4 defaults 0 0" >> /etc/fstab

檢視掛載寫入情況

cat /etc/fstab

取消掛載

安裝psmisc

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(回車儲存新的分割槽)

centos7 磁碟掛載

由於mbr分割槽表只支援2t磁碟,所以大於2t的磁碟必須使用gpt分割槽表。而fdisk是不支援gpt分割槽的,我們可以使用parted來對gpt磁碟操作。當磁碟大於2t時,fdisk不適合,此時用parted 方法 一 parted 掛載 磁碟 當磁碟大於2t時,fdisk不適合 1 檢視分割槽情...

centos 7 磁碟掛載

檢視磁碟資訊 fdisk l 檢視磁碟格式 df t 建立分割槽sdb根據上面的看 fdisk dev sdb 輸入p看硬碟資訊 n命令建立乙個新分割槽 d命令刪除乙個存在的分割槽 p命令顯示分割槽列表 t命令修改分割槽的型別id號 l命令顯示分割槽id號的列表 a命令指定啟動分割槽 w命令是將對分...

centos7磁碟掛載

一 檢視未分割槽磁碟 fdisk l 二 劃分分割槽並格式化 fdisk dev vdb 三 提示command,輸入m n 新建分割槽 p 選擇主分割槽 number 預設1 first 預設2048 last 預設最大 可繼續分割槽 wq 退出儲存開始分割槽 四 重新整理分割槽 partprob...