最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

linux刪除分區(qū)命令

來源:懂視網(wǎng) 責(zé)編:李贏贏 時間:2021-11-05 13:41:33
文檔

linux刪除分區(qū)命令

linux系統(tǒng)下刪除分區(qū)命令是:fdisk命令。fdisk簡介:fdisk是分區(qū)工具,也能為每個分區(qū)指定分區(qū)的文件系統(tǒng)。命令格式:[root@localhostbeinan]#fdisk設(shè)備。fdisk的說明:通過fdisk設(shè)備,進入相應(yīng)設(shè)備的操作時,會有提示。
推薦度:
導(dǎo)讀linux系統(tǒng)下刪除分區(qū)命令是:fdisk命令。fdisk簡介:fdisk是分區(qū)工具,也能為每個分區(qū)指定分區(qū)的文件系統(tǒng)。命令格式:[root@localhostbeinan]#fdisk設(shè)備。fdisk的說明:通過fdisk設(shè)備,進入相應(yīng)設(shè)備的操作時,會有提示。

linux系統(tǒng)下刪除分區(qū)命令是什么呢?下面是具體介紹:

linux系統(tǒng)下刪除分區(qū)命令是:fdisk命令。

1、fdisk命令簡介:

fdisk - Partition table manipulator for Linux ,譯成中文的意思是磁盤分區(qū)表操作工具,其實就是分區(qū)工具。fdsik 能劃分磁盤成為若干個區(qū),同時也能為每個分區(qū)指定分區(qū)的文件系統(tǒng),比如linux 、fat32、 linux 、linux swap 、fat16 以及其實類Unix類操作系統(tǒng)的文件系統(tǒng)等;當(dāng)然我們用fdisk 對磁盤操作分區(qū)時,并不是一個終點,我們還要對分區(qū)進行格式化所需要的文件系統(tǒng);這樣一個分區(qū)才能使用;這和DOS中的fdisk 是類似的。

2、fdisk 操作硬盤的命令格式:

[root@localhost beinan]# fdisk 設(shè)備

通過 fdisk -l 得知 /dev/hda 或者 /dev/sda 設(shè)備;如果想再添加或者刪除

一些分區(qū),可以用

[root@localhost beinan]# fdisk /dev/hda

[root@localhost beinan]# fdisk /dev/sda

3、fdisk 的說明:

通過 fdisk 設(shè)備,進入相應(yīng)設(shè)備的操作時,會有如下的提示。

[root@localhost beinan]# fdisk /dev/sda

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ū)的動作;

l list known partition types 注:l是列出分區(qū)類型,以供我們設(shè)置相應(yīng)分區(qū)的類型;

m print this menu 注:m 是列出幫助信息;

n add a new partition 注:添加一個分區(qū);

o create a new empty DOS partition table

p print the partition table 注:p列出分區(qū)表;

q quit without saving changes 注:不保存退出;

s create a new empty Sun disklabel

t change a partition's system id 注:t 改變分區(qū)類型;

u change display/entry units

v verify the partition table

w write table to disk and exit 注:把分區(qū)表寫入硬盤并退出;

x extra functionality (experts only) 注:擴展應(yīng)用,專家功能;12345678910111213141516171819

舉例:

列出當(dāng)前操作硬盤的分區(qū)情況,用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 Linux123456789

通過fdisk的d指令來刪除一個分區(qū):

Command (m for help): p 注:列出分區(qū)情況;

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 注:執(zhí)行刪除分區(qū)指定;

Partition number (1-6): 6 注:我想刪除 sda6 ,就在這里輸入 6 ;

Command (m for help): p 注:再查看一下硬盤分區(qū)情況,看是否刪除了?

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):1234567891011121314151617181920

注意:刪除分區(qū)時要小心,請看好分區(qū)的序號,如果您刪除了擴展分區(qū),擴展分區(qū)之下的邏輯分區(qū)都會刪除;所以操作時一定要小心;如果知道自己操作錯了,用q不保存退出;在分區(qū)操作錯了時,千萬不要輸入w保存退出。

以上就是小編今天的分享了,希望可以幫助到大家。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

linux刪除分區(qū)命令

linux系統(tǒng)下刪除分區(qū)命令是:fdisk命令。fdisk簡介:fdisk是分區(qū)工具,也能為每個分區(qū)指定分區(qū)的文件系統(tǒng)。命令格式:[root@localhostbeinan]#fdisk設(shè)備。fdisk的說明:通過fdisk設(shè)備,進入相應(yīng)設(shè)備的操作時,會有提示。
推薦度:
標(biāo)簽: linux 刪除分區(qū)命令
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top