linux fdisk 分割槽、格式化、掛載!
關於硬碟分割槽:主分割槽(包含擴充套件分割槽)、邏輯分割槽,主分割槽最多有4個(包含擴充套件分割槽)。
因此我們在對硬碟分割槽時最好劃分主分割槽連續,比如說:主分割槽一、主分割槽二、擴充套件分割槽。
此文章以fdisk工具為例,對一個硬碟劃分。
1、fdisk -l 檢視系統上的硬碟,找到需要分割槽的硬碟後比如說:/dev/sdb.
然後,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 注:這是刪除一個分割槽的動作;
l list known partition types 注:l是列出分割槽型別,以供我們設定相應分割槽的型別;
m print this menu 注:m 是列出幫助資訊;
n add a new partition 注:新增一個分割槽;
o create a new empty DOS partition table
p print the partition table 注:p列出分割槽表;
q quit without saving changes 注:不儲存退出;
s create a new empty Sun disklabel
t change a partition's system id 注:t 改變分割槽型別;
u change display/entry units
v verify the partition table
w write table to disk and exit 注:把分割槽表寫入硬碟並退出;
x extra functionality (experts only) 注:擴充套件應用,專家功能;
具體每個引數的含義,請仔細閱讀。常用的就是:d l m p q t w
2、列出當前操作硬碟的分割槽情況,用p
Command (m for help): p
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ c W95 FAT32 (LBA)
/dev/sda2 26 125 806400 5 Extended
/dev/sda5 26 50 201568+ 83 Linux
/dev/sda6 51 76 200781 83 Linux
3、通過fdisk的d指令來刪除一個分割槽
Command (m for help): p 注:列出分割槽情況;
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ c W95 FAT32 (LBA)
/dev/sda2 26 125 806400 5 Extended
/dev/sda5 26 50 201568+ 83 Linux
/dev/sda6 51 76 200781 83 Linux
Command (m for help): d 注:執行刪除分割槽指定;
Partition number (1-6): 6 注:我想刪除 sda6 ,就在這裡輸入 6 ;
Command (m for help): p 注:再檢視一下硬碟分割槽情況,看是否刪除了?
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ c W95 FAT32 (LBA)
/dev/sda2 26 125 806400 5 Extended
/dev/sda5 26 50 201568+ 83 Linux
Command (m for help):
警告:刪除分割槽時要小心,請看好分割槽的序號,如果您刪除了擴充套件分割槽,擴充套件分割槽之下的邏輯分割槽都會刪除;所以操作時一定要小心;如果知道自己操作錯了,請不要驚慌,用q不儲存退出;切記切記!!!!在分割槽操作錯了之時,千萬不要輸入w儲存退出!!!
4、通過fdisk的n指令增加一個分割槽
Command (m for help): p
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ c W95 FAT32 (LBA)
/dev/sda2 26 125 806400 5 Extended
/dev/sda5 26 50 201568+ 83 Linux
Command (m for help): n 注:增加一個分割槽;
Command action
l logical (5 or over) 注:增加邏輯分割槽,分割槽編號要大於5;為什麼要大於5,因為已經有sda5了;
p primary partition (1-4) 注:增加一個主分割槽;編號從 1-4 ;但sda1 和sda2都被佔用,所以只能從3開始;
p
Partition number (1-4): 3
No free sectors available 注:失敗中,為什麼失敗?
注:我試圖增加一個主分割槽,看來是失敗了,為什麼失敗?因為我們看到主分割槽+擴充套件分割槽把整個磁碟都用光了,看擴充套件分割槽的End的值,再看一下 p輸出資訊中有125 cylinders;最好還是看前面部份;那裡有提到; 所以我們只能增加邏輯分割槽了;
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
l 注:在這裡輸入l,就進入劃分邏輯分割槽階段了;
First cylinder (51-125, default 51): 注:這個就是分割槽的Start 值;這裡最好直接按回車,如果您輸入了一個非預設的數字,會造成空間浪費;
Using default value 51
Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): +200M 注:這個是定義分割槽大小的,+200M 就是大小為200M ;當然您也可以根據p提示的單位cylinder的大小來算,然後來指定 End的數值。回頭看看是怎麼算的;還是用+200M這個辦法來新增,這樣能直觀一點。如果您想新增一個10G左右大小的分割槽,請輸入 +10000M ;
Command (m for help):
5、通過fdisk的t指令指定分割槽型別
Command (m for help): t 注:通過t來指定分割槽型別;
Partition number (1-6): 6 注:要改變哪個分割槽型別呢?我指定了6,其實也就是sda6
Hex code (type L to list codes):L 注:在這裡輸入L,就可以檢視分割槽型別的id了;
Hex code (type L to list codes): b 注:如果我想讓這個分割槽是 W95 FAT32 型別的,通過L檢視得知 b是表示的是,所以輸入了b;
Changed system type of partition 6 to b (W95 FAT32) 注:系統資訊,改變成功;是否是改變了,請用p檢視;
Command (m for help): p
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ c W95 FAT32 (LBA)
/dev/sda2 26 125 806400 5 Extended
/dev/sda5 26 50 201568+ 83 Linux
/dev/sda6 51 75 201568+ b W95 FAT32
6、fdisk 的退出,用q或者 w
其中 q是 不儲存退出,w是儲存退出
7、一個新增分割槽的例子
本例中我們會新增兩個200M的主分割槽,其它為擴充套件分割槽,在擴充套件分割槽中我們新增兩個200M大小的邏輯分割槽;
Command (m for help): p 注:列出分割槽表;
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
Command (m for help): n 注:新增分割槽;
Command action
e extended
p primary partition (1-4)
p 注:新增主分割槽;
Partition number (1-4): 1 注:新增主分割槽1;
First cylinder (1-125, default 1): 注:直接回車,主分割槽1的起始位置;預設為1,預設就好;
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-125, default 125): +200M 注:指定分割槽大小,用+200M來指定大小為200M
Command (m for help): n 注:新增新分割槽;
Command action
e extended
p primary partition (1-4)
p 注:新增主分割槽
Partition number (1-4): 2 注:新增主分割槽2;
First cylinder (26-125, default 26):
Using default value 26
Last cylinder or +size or +sizeM or +sizeK (26-125, default 125): +200M 注:指定分割槽大小,用+200M來指定大小為200M
Command (m for help): n
Command action
e extended
p primary partition (1-4)
e 注:新增擴充套件分割槽;
Partition number (1-4): 3 注:指定為3 ,因為主分割槽已經分了兩個了,這個也算主分割槽,從3開始;
First cylinder (51-125, default 51): 注:直接回車;
Using default value 51
Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): 注:直接回車,把其餘的所有空間都給擴充套件分割槽;
Using default value 125
Command (m for help): p
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ 83 Linux
/dev/sda2 26 50 201600 83 Linux
/dev/sda3 51 125 604800 5 Extended
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
l 注:新增邏輯分割槽;
First cylinder (51-125, default 51):
Using default value 51
Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): +200M 注:新增一個大小為200M大小的分割槽;
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
l 注:新增一個邏輯分割槽;
First cylinder (76-125, default 76):
Using default value 76
Last cylinder or +size or +sizeM or +sizeK (76-125, default 125): +200M 注:新增一個大小為200M大小的分割槽;
Command (m for help): p 列出分割槽表;
Disk /dev/sda: 1035 MB, 1035730944 bytes
256 heads, 63 sectors/track, 125 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 25 201568+ 83 Linux
/dev/sda2 26 50 201600 83 Linux
/dev/sda3 51 125 604800 5 Extended
/dev/sda5 51 75 201568+ 83 Linux
/dev/sda6 76 100 201568+ 83 Linux
然後我們根據前面所說通過t指令來改變分割槽型別; 最後不要忘記w儲存退出;
五、對分割槽進行格式化,以及載入;
先提示一下;用 mkfs.bfs mkfs.ext2 mkfs.jfs mkfs.msdos mkfs.vfatmkfs.cramfs mkfs.ext3 mkfs.minix mkfs.reiserfs mkfs.xfs 等命令來格式化分割槽,比如我想格式化 sda6為ext3檔案系統,則輸入;
[root@localhost beinan]# mkfs -t ext3 -c /dev/sda6 具體引數含義,請man mkfs。
如果我想載入 sda6到目前系統來存取檔案,應該有mount 命令,但首先您得建一個掛載目錄;比如 /mnt/sda6 ;
[root@localhost beinan]# mkdir /mnt/sda6
[root@localhost beinan]# mount /dev/sda6 /mnt/sda6
[root@localhost beinan]# df -lh
Filesystem 容量 已用 可用 已用% 掛載點
/dev/hda8 11G 8.4G 2.0G 81% /
/dev/shm 236M 0 236M 0% /dev/shm
/dev/hda10 16G 6.9G 8.3G 46% /mnt/hda10
/dev/sda6 191M 5.6M 176M 4% /mnt/sda6
相關文章
- linux 磁碟分割槽掛載-fdiskLinux
- linux磁碟分割槽格式化-fdisk命令工具Linux
- linux平臺用fdisk分割槽格式化硬碟Linux硬碟
- linux fdisk 命令 磁碟劃分新的分割槽及掛載Linux
- 大盤分割槽格式化及掛載
- LINUX中的分割槽,格式化,掛載安全(中)Linux
- parted和fdisk——兩種磁碟分割槽並掛載的方法
- linux掛載新硬碟並進行分割槽格式化Linux硬碟
- LINUX中的分割槽,格式化,掛載安全(上)薦Linux
- Virtualbox中Linux新增一個新磁碟->建立分割槽->格式化->掛載分割槽Linux
- Linux 掛載ntfs分割槽Linux
- linux 使用fdisk分割槽擴容Linux
- Linux下磁碟分割槽,fdisk,mkfsLinux
- Linux精講——fdisk磁碟分割槽Linux
- 【Linux】Linux檔案系統管理1 磁碟分割槽、格式化、掛載-卷標掛載Linux
- 【Linux】Linux檔案系統管理2 磁碟分割槽、格式化、掛載-UUID掛載LinuxUI
- linux磁碟分割槽fdisk命令詳解Linux
- Linux下分割槽詳解之--FdiskLinux
- linux使用fdisk新增分割槽的例子Linux
- Linux 磁碟分割槽和掛載Linux
- linux 新增磁碟 分割槽掛載Linux
- linux 自動掛載分割槽Linux
- linux積累——磁碟操作(分割槽,格式化,掛載,解除安裝)Linux
- 【Linux系統】fdisk相關分割槽命令。Linux
- Linux系統 fdisk命令 建立新分割槽Linux
- 9.2 Linux硬碟分割槽和掛載Linux硬碟
- linux下fdisk命令的使用方法(分割槽)Linux
- Linux磁碟分割槽及自動掛載Linux
- Linux 分割槽擴容(根分割槽擴容,SWAP 分割槽擴容,掛載新分割槽為目錄)Linux
- Linux 分割槽和格式化Linux
- 在 Linux 下使用 fdisk 擴充套件分割槽容量Linux套件
- Linux下新增新硬碟,分割槽及掛載Linux硬碟
- 分割槽管理工具 fdisk parted
- Linux硬碟分割槽及開機自動掛載Linux硬碟
- Linux磁碟分割槽、掛載、檢視檔案大小Linux
- 磁碟分割槽以及Linux目錄掛載詳解Linux
- 多硬碟分割槽管理fdisk-張丹硬碟
- linux下磁碟分割槽與格式化Linux