Ubuntu-12.04

mkfs 無法創建新的 xfs 分區

  • April 20, 2015

我正在使用作為虛擬機安裝在 VMware Workstation 上的 Ubuntu LTS 12.04 伺服器。

最近,我擴展了邏輯磁碟。

我使用了 sudo fdisk /dev/sdb 命令並創建了一個名為 sdb1 的擴展磁碟。當我執行 fdisk -l 命令時,它會顯示:

控制器@控制器:~$ sudo fdisk -l

Disk /dev/sda: 107.4 GB, 107374182400 bytes
255 heads, 63 sectors/track, 13054 cylinders, total 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000b2a4e

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048    39845887    19921920   83  Linux
/dev/sda2        39847934    41940991     1046529    5  Extended
/dev/sda3        39845888    39847933        1023   8e  Linux LVM
/dev/sda5        39847936    41940991     1046528   82  Linux swap / Solaris

Partition table entries are not in disk order

Disk /dev/sdb: 21.5 GB, 21474836480 bytes
213 heads, 34 sectors/track, 5791 cylinders, total 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x58fc26e8

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048    41943039    20970496    5  Extended

現在當我執行

sudo mkfs.xfs -f -i size=1024 /dev/sdb1

它向我展示了這一點:

數據子卷的 size 0 太小,最少 100 個塊

我不明白髮生了什麼,任何幫助都會受到影響。

請更改分區 ID… 您不應該創建“擴展”分區,而是將其保留為預設的 Linux (83) ID。

您的新設備/分區應如下所示:

Disk /dev/sdb: 480.0 GB, 480047620096 bytes
119 heads, 44 sectors/track, 179066 cylinders
Units = cylinders of 5236 * 512 = 2680832 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf916544f

  Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1      179067   468795480   83  Linux

引用自:https://serverfault.com/questions/578400