编辑:

编辑:

我在我的机器中安装了一个新的 HGST Ultrastar He10 10TB 硬盘。我有多个这样的硬盘,它们都显示相同的容量(~1TB)。

它们之前在 RAID 设置中使用过,显示正确的大小(10TB),但我计划将其中之一用作我的系统的 HDD 扩展。

我这样做sudo lsblk会得到:

sdd      8:48   0   1,1T  0 disk                                    │
└─sdd1   8:49   0   1,1T  0 part

所以只有1.1TB的空间。

当我使用 GParted 检查时也发生同样的情况。

有什么想法为什么我没有在所有这些驱动器上获得完整的 10TB?

编辑:

输出sudo fdisk -l /dev/sdd

Disk /dev/sdd: 1,1 TiB, 1204738326528 bytes, 2353004544 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
Disklabel type: gpt
Disk identifier: 497F147C-3BC9-4F24-B2F1-7C0C1D8C30B8

Device     Start        End    Sectors  Size Type
/dev/sdd1   2048 2353002495 2353000448  1,1T Linux filesystem

Gparted截图:

GParted 屏幕截图

Gparted 截图(删除分区后)

在此处输入图片描述

主板和控制器

输出dmesg | grep DMI:

[    0.000000] DMI: Micro-Star International Co., Ltd. MS-7B48/Z370-A PRO (MS-7B48), BIOS 2.90 04/02/2019

输出lspci

00:00.0 Host bridge: Intel Corporation 8th Gen Core Processor Host Bridge/DRAM Registers (rev 07)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x16) (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Device 3e92
00:08.0 System peripheral: Intel Corporation Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th Gen Core Processor Gaussian Mixture Model
00:14.0 USB controller: Intel Corporation 200 Series/Z370 Chipset Family USB 3.0 xHCI Controller
00:14.2 Signal processing controller: Intel Corporation 200 Series PCH Thermal Subsystem
00:16.0 Communication controller: Intel Corporation 200 Series PCH CSME HECI #1
00:17.0 SATA controller: Intel Corporation 200 Series PCH SATA controller [AHCI mode]
00:1c.0 PCI bridge: Intel Corporation 200 Series PCH PCI Express Root Port #1 (rev f0)
00:1c.3 PCI bridge: Intel Corporation 200 Series PCH PCI Express Root Port #4 (rev f0)
00:1f.0 ISA bridge: Intel Corporation Z370 Chipset LPC/eSPI Controller
00:1f.2 Memory controller: Intel Corporation 200 Series/Z370 Chipset Family Power Management Controller
00:1f.3 Audio device: Intel Corporation 200 Series PCH HD Audio
00:1f.4 SMBus: Intel Corporation 200 Series/Z370 Chipset Family SMBus Controller
01:00.0 VGA compatible controller: NVIDIA Corporation GV104 [GeForce GTX 1180] (rev a1)
01:00.1 Audio device: NVIDIA Corporation Device 10f8 (rev a1)
01:00.2 USB controller: NVIDIA Corporation Device 1ad8 (rev a1)
01:00.3 Serial bus controller [0c80]: NVIDIA Corporation Device 1ad9 (rev a1)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)

答案1

听起来你使用的任何控制器都无法胜任这项任务。使用 512 字节 LBA 和 32 位 LBA,你最多可以寻址 ~2.2 TB。

按照扩展驱动器文档,实际扇区数为 19,532,873,728。与fdisk报告相比:

 32   28   24   20   16   12    8    4    0
  v    v    v    v    v    v    v    v    v
    1000 1100 0100 0000 0000 0000 0000 0000 = 2,353,004,544
100 1000 1100 0100 0000 0000 0000 0000 0000 = 19,532,873,728

尝试使用更好的磁盘控制器。

相关内容