佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > fdisk對硬盤分區(qū)

fdisk對硬盤分區(qū)

熱門標(biāo)簽:解決方案 電話機器人搭建 家政服務(wù)網(wǎng)絡(luò) 百度競價點擊價格的計算公式 服務(wù)器配置 美團 外呼系統(tǒng) 硅谷的囚徒呼叫中心
fdisk 操作硬盤的命令格式如下:
  [root@localhost beinan]# fdisk 設(shè)備
  比如我們通過 fdisk -l 得知 /dev/hda 或者 /dev/sda設(shè)備;我們?nèi)绻朐偬砑踊蛘邉h除一些分區(qū),可以用
  [root@localhost beinan]# fdisk /dev/hda
  或
  [root@localhost beinan]# fdisk /dev/sda
  注 在以后的例子中,我們要以 /dev/sda設(shè)備為例,來講解如何用fdisk 來操作添加、刪除分區(qū)等動作;
  1、fdisk 的說明;
  當(dāng)我們通過 fdisk 設(shè)備,進入相應(yīng)設(shè)備的操作時,會發(fā)現(xiàn)有如下的提示;以 fdisk /dev/sda 設(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)用,專家功能;
  其實我們常用的只有注有中文的,其它的功能我們不常用(呵,主要是我不會用,否則早會賣弄一下了);x擴展功能,也不是常用的;一般的情況下只要懂得 d l m p q t w 就行了;
  下面以實例操作來詳述,沒有例子沒有辦法就,新手也看不懂;
  2、列出當(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 Linux
  3、通過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):
  警告:刪除分區(qū)時要小心,請看好分區(qū)的序號,如果您刪除了擴展分區(qū),擴展分區(qū)之下的邏輯分區(qū)都會刪除;所以操作時一定要小心;如果知道自己操作錯了,請不要驚慌,用q不保存退出;切記切記?。。。≡诜謪^(qū)操作錯了之時,千萬不要輸入w保存退出?。?!
  4、通過fdisk的n指令增加一個分區(qū);
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 注:增加一個分區(qū);
Command action
   l logical (5 or over) 注:增加邏輯分區(qū),分區(qū)編號要大于5;為什么要大于5,因為已經(jīng)有sda5了;
   p primary partition (1-4) 注:增加一個主分區(qū);編號從 1-4 ;但sda1 和sda2都被占用,所以只能從3開始;
p
Partition number (1-4): 3
No free sectors available 注:失敗中,為什么失???
  注:我試圖增加一個主分區(qū),看來是失敗了,為什么失???因為我們看到主分區(qū)+擴展分區(qū)把整個磁盤都用光了,看擴展分區(qū)的End的值,再看一下 p輸出信息中有125 cylinders;最好還是看前面部份;那里有提到;
  所以我們只能增加邏輯分區(qū)了;
 Command (m for help): n
Command action
   l logical (5 or over)
   p primary partition (1-4)
l 注:在這里輸入l,就進入劃分邏輯分區(qū)階段了;
First cylinder (51-125, default 51): 注:這個就是分區(qū)的Start 值;這里最好直接按回車,如果您輸入了一個非默認的數(shù)字,會造成空間浪費;
Using default value 51
Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): +200M 注:這個是定義分區(qū)大小的,+200M 就是大小為200M ;當(dāng)然您也可以根據(jù)p提示的單位cylinder的大小來算,然后來指定 End的數(shù)值?;仡^看看是怎么算的;還是用+200M這個辦法來添加,這樣能直觀一點。如果您想添加一個10G左右大小的分區(qū),請輸入 +10000M ;
Command (m for help):
  5、通過fdisk的t指令指定分區(qū)類型;
Command (m for help): t 注:通過t來指定分區(qū)類型;
Partition number (1-6): 6 注:要改變哪個分區(qū)類型呢?我指定了6,其實也就是sda6
Hex code (type L to list codes):L 注:在這里輸入L,就可以查看分區(qū)類型的id了;
Hex code (type L to list codes): b 注:如果我想讓這個分區(qū)是 W95 FAT32 類型的,通過L查看得知 b是表示的是,所以輸入了b;
Changed system type of partition 6 to b (W95 FAT32) 注:系統(tǒng)信息,改變成功;是否是改變了,請用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是保存退出;
  Command (m for help): w
  或
  Command (m for help): q
  7、一個添加分區(qū)的例子;
  本例中我們會添加兩個200M的主分區(qū),其它為擴展分區(qū),在擴展分區(qū)中我們添加兩個200M大小的邏輯分區(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
Command (m for help): n 注:添加分區(qū);
Command action
   e extended
   p primary partition (1-4)
p 注:添加主分區(qū);
Partition number (1-4): 1 注:添加主分區(qū)1;
First cylinder (1-125, default 1): 注:直接回車,主分區(qū)1的起始位置;默認為1,默認就好;
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-125, default 125): +200M 注:指定分區(qū)大小,用+200M來指定大小為200M
Command (m for help): n 注:添加新分區(qū);
Command action
   e extended
   p primary partition (1-4)
p 注:添加主分區(qū)
Partition number (1-4): 2 注:添加主分區(qū)2;
First cylinder (26-125, default 26):
Using default value 26
Last cylinder or +size or +sizeM or +sizeK (26-125, default 125): +200M 注:指定分區(qū)大小,用+200M來指定大小為200M
Command (m for help): n
Command action
   e extended
   p primary partition (1-4)
e 注:添加擴展分區(qū);
Partition number (1-4): 3 注:指定為3 ,因為主分區(qū)已經(jīng)分了兩個了,這個也算主分區(qū),從3開始;
First cylinder (51-125, default 51): 注:直接回車;
Using default value 51
Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): 注:直接回車,把其余的所有空間都給擴展分區(qū);
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 注:添加邏輯分區(qū);
First cylinder (51-125, default 51):
Using default value 51
Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): +200M 注:添加一個大小為200M大小的分區(qū);
Command (m for help): n
Command action
   l logical (5 or over)
   p primary partition (1-4)
l 注:添加一個邏輯分區(qū);
First cylinder (76-125, default 76):
Using default value 76
Last cylinder or +size or +sizeM or +sizeK (76-125, default 125): +200M 注:添加一個大小為200M大小的分區(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+ 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
  然后我們根據(jù)前面所說通過t指令來改變分區(qū)類型;
  最后不要忘記w保存退出;
  五、對分區(qū)進行格式化,以及加載;
  先提示一下;用 mkfs.bfs mkfs.ext2 mkfs.jfs mkfs.msdos mkfs.vfatmkfs.cramfs mkfs.ext3 mkfs.minix mkfs.reiserfs mkfs.xfs 等命令來格式化分區(qū),比如我想格式化 sda6為ext3文件系統(tǒng),則輸入;
  [root@localhost beinan]# mkfs.ext3 /dev/sda6
  如果我想加載 sda6到目前系統(tǒng)來存取文件,應(yīng)該有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
  這樣我們就能進入 /mnt/sda6目錄,然后存取文件了;
  具體的權(quán)限方法,以及mount 更詳細的用法,在以后我會專門寫一個帖子;在一帖中放下所有的內(nèi)容實在有點為難;

標(biāo)簽:韶關(guān) 北海 邢臺 臨沂 防城港 烏蘭察布 撫州 南昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《fdisk對硬盤分區(qū)》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    陈巴尔虎旗| 阿克苏市| 堆龙德庆县| 依兰县| 泰宁县| 吐鲁番市| 陈巴尔虎旗| 潼南县| 沙河市| 潞西市| 平和县| 萍乡市| 平江县| 城市| 友谊县| 邵阳县| 奇台县| 阜平县| 长乐市| 福安市| 奉贤区| 重庆市| 白山市| 信丰县| 溧水县| 金平| 麻栗坡县| 连南| 中阳县| 白城市| 永济市| 札达县| 玉田县| 达州市| 鄢陵县| 盐池县| 巫山县| 澎湖县| 德钦县| 洛川县| 喜德县|