使用fdisk給新增加硬碟分區

来源:http://www.cnblogs.com/hackerer/archive/2016/01/19/5143651.html
-Advertisement-
Play Games

1.使用fdisk創建6個分區[1P+1E(5L)] //dev/sdb1 /dev/sdb5 /dev/sdb6 /dev/sdb7 /dev/sdb8 /deb/sdb9 1 [root@server ~]# fdisk -l 2 3 Disk /dev/sda: 8589 MB, 8589.....


1.使用fdisk創建6個分區[1P+1E(5L)]   //dev/sdb1 /dev/sdb5 /dev/sdb6 /dev/sdb7 /dev/sdb8 /deb/sdb9

 1 [root@server ~]# fdisk -l
 2 
 3 Disk /dev/sda: 8589 MB, 8589934592 bytes
 4 255 heads, 63 sectors/track, 1044 cylinders
 5 Units = cylinders of 16065 * 512 = 8225280 bytes
 6 Sector size (logical/physical): 512 bytes / 512 bytes
 7 I/O size (minimum/optimal): 512 bytes / 512 bytes
 8 Disk identifier: 0x000aec72
 9 
10    Device Boot      Start         End      Blocks   Id  System
11 /dev/sda1   *           1          26      204800   83  Linux
12 Partition 1 does not end on cylinder boundary.
13 /dev/sda2              26          91      524288   82  Linux swap / Solaris
14 Partition 2 does not end on cylinder boundary.
15 /dev/sda3              91        1045     7658496   83  Linux
16 
17 Disk /dev/sdb: 1073 MB, 1073741824 bytes
18 255 heads, 63 sectors/track, 130 cylinders
19 Units = cylinders of 16065 * 512 = 8225280 bytes
20 Sector size (logical/physical): 512 bytes / 512 bytes
21 I/O size (minimum/optimal): 512 bytes / 512 bytes
22 Disk identifier: 0x00000000

2.fdisk -cu /dev/sdb開始分區

1 [root@server ~]# fdisk -cu /dev/sdb   //-c:表示丟棄DOS相容模式,切換到mode模式; -u:表示從柱面分區改為扇區分區
2 Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
3 Building a new DOS disklabel with disk identifier 0x94c5ab35.
4 Changes will remain in memory only, until you decide to write them.
5 After that, of course, the previous content won't be recoverable.
6 
7 Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
8 
9 Command (m for help):

3.輸入m查看幫助

 1 Command (m for help): m
 2 Command action
 3    a   toggle a bootable flag
 4    b   edit bsd disklabel
 5    c   toggle the dos compatibility flag
 6    d   delete a partition    //刪除創建的分區
 7    l   list known partition types   //列出分區類型
 8    m   print this menu   //查看幫助
 9    n   add a new partition     //創建新分區
10    o   create a new empty DOS partition table
11    p   print the partition table   //列印分區表
12    q   quit without saving changes
13    s   create a new empty Sun disklabel
14    t   change a partition's system id
15    u   change display/entry units
16    v   verify the partition table
17    w   write table to disk and exit   //寫入分區表保存
18    x   extra functionality (experts only)
19 
20 Command (m for help): 

4.分出一個10M的主分區

 1 Command (m for help): n
 2 Command action
 3    e   extended    //代表擴展分區
 4    p   primary partition (1-4)   //代表主分區
 5 p     //選擇p 主分區
 6 Partition number (1-4): 1
 7 First sector (2048-2097151, default 2048):     //預設2048開始
 8 Using default value 2048
 9 Last sector, +sectors or +size{K,M,G} (2048-2097151, default 2097151): +10M
10 
11 Command (m for help): p
12 
13 Disk /dev/sdb: 1073 MB, 1073741824 bytes
14 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
15 Units = sectors of 1 * 512 = 512 bytes
16 Sector size (logical/physical): 512 bytes / 512 bytes
17 I/O size (minimum/optimal): 512 bytes / 512 bytes
18 Disk identifier: 0x94c5ab35
19 
20    Device Boot      Start         End      Blocks   Id  System
21 /dev/sdb1            2048       22527       10240   83  Linux

5.將剩餘的空間全部分配給擴展分區

 1 Command (m for help): n
 2 Command action
 3    e   extended
 4    p   primary partition (1-4)
 5 e
 6 Partition number (1-4): 2    //分區編號選擇為2
 7 First sector (22528-2097151, default 22528):   //預設預設大小
 8 Using default value 22528
 9 Last sector, +sectors or +size{K,M,G} (22528-2097151, default 2097151):     //預設預設大小
10 Using default value 2097151
11 
12 Command (m for help): p   //列印
13 
14 Disk /dev/sdb: 1073 MB, 1073741824 bytes
15 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
16 Units = sectors of 1 * 512 = 512 bytes
17 Sector size (logical/physical): 512 bytes / 512 bytes
18 I/O size (minimum/optimal): 512 bytes / 512 bytes
19 Disk identifier: 0x94c5ab35
20 
21    Device Boot      Start         End      Blocks   Id  System
22 /dev/sdb1            2048       22527       10240   83  Linux
23 /dev/sdb2           22528     2097151     1037312    5  Extended
24 
25 Command (m for help): n

6.接著將擴展分區分成5個邏輯分區,首先創建第1個大小為10M的邏輯分區

 1 Command (m for help): n
 2 Command action
 3    l   logical (5 or over)
 4    p   primary partition (1-4)
 5 l   //選擇創建邏輯分區
 6 First sector (24576-2097151, default 24576):    //預設開始直接回車
 7 Using default value 24576
 8 Last sector, +sectors or +size{K,M,G} (24576-2097151, default 2097151): +10M   //輸入分區大小10M
 9 
10 Command (m for help): p   //列印分區
11 
12 Disk /dev/sdb: 1073 MB, 1073741824 bytes
13 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
14 Units = sectors of 1 * 512 = 512 bytes
15 Sector size (logical/physical): 512 bytes / 512 bytes
16 I/O size (minimum/optimal): 512 bytes / 512 bytes
17 Disk identifier: 0x94c5ab35
18 
19    Device Boot      Start         End      Blocks   Id  System
20 /dev/sdb1            2048       22527       10240   83  Linux
21 /dev/sdb2           22528     2097151     1037312    5  Extended
22 /dev/sdb5           24576       45055       10240   83  Linux   //分區表從5開始,代表邏輯分區

7.接著創建擴展分區中第2個大小為10M的邏輯分區

 1 Command (m for help): n
 2 Command action
 3    l   logical (5 or over)
 4    p   primary partition (1-4)
 5 l
 6 First sector (47104-2097151, default 47104): 
 7 Using default value 47104
 8 Last sector, +sectors or +size{K,M,G} (47104-2097151, default 2097151): +10M
 9 
10 Command (m for help): p
11 
12 Disk /dev/sdb: 1073 MB, 1073741824 bytes
13 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
14 Units = sectors of 1 * 512 = 512 bytes
15 Sector size (logical/physical): 512 bytes / 512 bytes
16 I/O size (minimum/optimal): 512 bytes / 512 bytes
17 Disk identifier: 0x94c5ab35
18 
19    Device Boot      Start         End      Blocks   Id  System
20 /dev/sdb1            2048       22527       10240   83  Linux
21 /dev/sdb2           22528     2097151     1037312    5  Extended
22 /dev/sdb5           24576       45055       10240   83  Linux
23 /dev/sdb6           47104       67583       10240   83  Linux

8.接著創建擴展分區中第3個大小為10M的邏輯分區

 1 Command (m for help): n
 2 Command action
 3    l   logical (5 or over)
 4    p   primary partition (1-4)
 5 l
 6 First sector (69632-2097151, default 69632): 
 7 Using default value 69632
 8 Supported: 10^N: KB (KiloByte), MB (MegaByte), GB (GigaByte)
 9             2^N: K  (KibiByte), M  (MebiByte), G  (GibiByte)
10 Last sector, +sectors or +size{K,M,G} (69632-2097151, default 2097151): =
11 Last sector, +sectors or +size{K,M,G} (69632-2097151, default 2097151): +10M
12 
13 Command (m for help): p
14 
15 Disk /dev/sdb: 1073 MB, 1073741824 bytes
16 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
17 Units = sectors of 1 * 512 = 512 bytes
18 Sector size (logical/physical): 512 bytes / 512 bytes
19 I/O size (minimum/optimal): 512 bytes / 512 bytes
20 Disk identifier: 0x94c5ab35
21 
22    Device Boot      Start         End      Blocks   Id  System
23 /dev/sdb1            2048       22527       10240   83  Linux
24 /dev/sdb2           22528     2097151     1037312    5  Extended
25 /dev/sdb5           24576       45055       10240   83  Linux
26 /dev/sdb6           47104       67583       10240   83  Linux
27 /dev/sdb7           69632       90111       10240   83  Linux

9.接著創建擴展分區中第4個大小為10M的邏輯分區

 1 Command (m for help): n
 2 Command action
 3    l   logical (5 or over)
 4    p   primary partition (1-4)
 5 l
 6 First sector (92160-2097151, default 92160): 
 7 Using default value 92160
 8 Last sector, +sectors or +size{K,M,G} (92160-2097151, default 2097151): +10M
 9 
10 Command (m for help): p
11 
12 Disk /dev/sdb: 1073 MB, 1073741824 bytes
13 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
14 Units = sectors of 1 * 512 = 512 bytes
15 Sector size (logical/physical): 512 bytes / 512 bytes
16 I/O size (minimum/optimal): 512 bytes / 512 bytes
17 Disk identifier: 0x94c5ab35
18 
19    Device Boot      Start         End      Blocks   Id  System
20 /dev/sdb1            2048       22527       10240   83  Linux
21 /dev/sdb2           22528     2097151     1037312    5  Extended
22 /dev/sdb5           24576       45055       10240   83  Linux
23 /dev/sdb6           47104       67583       10240   83  Linux
24 /dev/sdb7           69632       90111       10240   83  Linux
25 /dev/sdb8           92160      112639       10240   83  Linux

10.接著創建擴展分區中第5個邏輯分區,將剩餘空間都分配

 1 Command (m for help): n
 2 Command action
 3    l   logical (5 or over)
 4    p   primary partition (1-4)
 5 l
 6 First sector (114688-2097151, default 114688): 
 7 Using default value 114688
 8 Last sector, +sectors or +size{K,M,G} (114688-2097151, default 2097151): 
 9 Using default value 2097151
10 
11 Command (m for help): p
12 
13 Disk /dev/sdb: 1073 MB, 1073741824 bytes
14 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
15 Units = sectors of 1 * 512 = 512 bytes
16 Sector size (logical/physical): 512 bytes / 512 bytes
17 I/O size (minimum/optimal): 512 bytes / 512 bytes
18 Disk identifier: 0x94c5ab35
19 
20    Device Boot      Start         End      Blocks   Id  System
21 /dev/sdb1            2048       22527       10240   83  Linux
22 /dev/sdb2           22528     2097151     1037312    5  Extended
23 /dev/sdb5           24576       45055       10240   83  Linux
24 /dev/sdb6           47104       67583       10240   83  Linux
25 /dev/sdb7           69632       90111       10240   83  Linux
26 /dev/sdb8           92160      112639       10240   83  Linux
27 /dev/sdb9          114688     2097151      991232   83  Linux

11.將/dev/sdb9改為LVM分區(即動態調整)

 1 Command (m for help): t
 2 Partition number (1-9): 9   //要修改的分區標識
 3 Hex code (type L to list codes): 8e    //代表LVM,可用l查詢對應的Id
 4 Changed system type of partition 9 to 8e (Linux LVM)
 5 
 6 Command (m for help): p
 7 
 8 Disk /dev/sdb: 1073 MB, 1073741824 bytes
 9 255 heads, 63 sectors/track, 130 cylinders, total 2097152 sectors
10 Units = sectors of 1 * 512 = 512 bytes
11 Sector size (logical/physical): 512 bytes / 512 bytes
12 I/O size (minimum/optimal): 512 bytes / 512 bytes
13 Disk identifier: 0x94c5ab35
14 
15    Device Boot      Start         End      Blocks   Id  System
16 /dev/sdb1            2048       22527       10240   83  Linux
17 /dev/sdb2           22528     2097151     1037312    5  Extended
18 /dev/sdb5           24576       45055       10240   83  Linux
19 /dev/sdb6           47104       67583       10240   83  Linux
20 /dev/sdb7           69632       90111       10240   83  Linux
21 /dev/sdb8           92160      112639       10240   83  Linux
22 /dev/sdb9          114688     2097151      991232   8e  Linux LVM

12.分區結尾工作

1 Command (m for help): w    //寫入分區表
2 The partition table has been altered!
3 
4 Calling ioctl() to re-read partition table.
5 Syncing disks.
6 [root@server ~]# partprobe /dev/sdb    //將分區表的修改結果告訴內核,這樣可用忽略重啟系統

至此分區工作結束!!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 上一篇,我們介紹了Hive的數據多種方式導入,這樣我們的Hive就有了數據來源了,但有時候我們可能需要純粹的導出,或者集群Hive數據的遷移(不同集群,不同版本),我們就可以通過這兩章的知識來實現。   下麵我們開始介紹hive的數據導出,以及集群Hive數據的遷移進行描述。
  • CROSS APPLY的好處是可以像給函數傳參數一樣向括弧里傳篩選條件,實際上MSDN文檔中就是自定義了一個函數,我這裡直接寫了。 這樣一個顯而易見的好處是,可以通過函數封裝具體演算法來減少代碼變化對外部語句的影響。 最大的好處是:它是針對行集的!它針對每一行進行操作!(不負責評論:我覺得恰當使用可以...
  • #include #include unsigned __stdcall _threadfun(void* pParam){ while(TRUE) { printf("hello world"); }}int main(int argc, char* argv[]...
  • 剛裝上linux無法連接WIFI怎麼辦,這麼辦,跟著敲就行了,簡單好理解!
  • 自旋鎖與互斥量功能一樣,唯一一點不同的就是互斥量阻塞後休眠讓出cpu,而自旋鎖阻塞後不會讓出cpu,會一直忙等待,直到得到鎖!!!自旋鎖在用戶態使用的比較少,在內核使用的比較多!自旋鎖的使用場景:鎖的持有時間比較短,或者說小於2次上下文切換的時間。自旋鎖在用戶態的函數介面和互斥量一樣,把pthrea...
  • 一.概述 讀寫鎖與互斥量的功能類似,對臨界區的共用資源進行保護!互斥量一次只讓一個線程進入臨界區,讀寫鎖比它有更高的並行性。讀寫鎖有以下特點:1.如果一個線程用讀鎖鎖定了臨界區,那麼其他線程也可以用讀鎖來進入臨界區,這樣就可以多個線程並行操作。但這個時...
  • 1.使用命令parted /dev/sdb 1 [root@server ~]# parted /dev/sdb 2 GNU Parted 2.1 3 使用 /dev/sdb 4 Welcome to GNU Parted! Type 'help' to view a list of command...
  • 今天一同事報告Linux伺服器上的crontab作業沒有運行,檢查/var/log/cron日誌後發現下麵錯誤信息 Jan 19 16:30:01 xxxx crond[31399]: Authentication token is no longer valid; new one required...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...