產(chǎn)品型號(hào):Thinkpad E15
系統(tǒng)版本:centos8
案例:在sdb盤上建一個(gè)分區(qū),大小為1G
在虛擬機(jī)上添加一塊硬盤
例:對(duì)sdb這塊盤劃分一個(gè)100M的分區(qū)出來
[root@xuegod63 ~]# fdisk /dev/sdb
...
Command (m for help): m
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition 刪除分區(qū)
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types 顯示分區(qū)類型
m print this menu 打印幫助菜單
n add a new partition 添加新的分區(qū)
o create a new empty DOS partition table
p print the partition table 顯示分區(qū)表
q quit without saving changes 不保存,退出
s create a new empty Sun disklabel
t change a partition's system id 改變分區(qū)類型
u change display/entry units
v verify the partition table
w write table to disk and exit 寫分區(qū)表信息到硬盤,保存操作并退出
x extra functionality (experts only)
Command (m for help): p -----打印分區(qū)表
Command (m for help): n ----新建一個(gè)分區(qū)
Partition type:
p primary (2 primary, 0 extended, 2 free) p:主分區(qū)
e extended e:擴(kuò)展分區(qū)
Select (default p): --#直接默認(rèn)
Using default response p
Partition number (1,4, default 1): ---#直接默認(rèn)
First sector (1230848-41943039, default 1230848): ---#直接默認(rèn)
Using default value 1230848
Last sector, +sectors or +size{K,M,G} (1230848-41943039, default 41943039): +1G
#輸入分區(qū)大小
Partition 3 of type Linux and of size 1 GiB is set
Command (m for help): w #保存退出
格式化并創(chuàng)建文件系統(tǒng)
[root@xuegod63 ~]# mkfs.xfs /dev/sdb1
注:-f 參數(shù)可以對(duì)已經(jīng)存在文件系統(tǒng)的分區(qū),強(qiáng)制格式化
[root@xuegod63 ~]# mkdir /sdb1 #創(chuàng)建掛載點(diǎn)
[root@xuegod63 ~]# mount /dev/sdb1 /sdb1/ #掛載
[root@xuegod63 ~]# df -h #查看
總結(jié):
1. 添加硬盤
2. fdisk /dev/sdb創(chuàng)建分區(qū)
3. mkfs.xfs /dev/sdb1格式化并創(chuàng)建文件系統(tǒng)
4. 創(chuàng)建掛載目錄/sdb1
5. 掛載/dev/sdb1到/sdb1
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com