1TBのハードディスク/dev/sda
を持っていて、2TBの新しいディスク/dev/sdb
を購入しました。 sda
にはすでにいくつかのパーティションがあります。
dd if=/dev/sda of=/dev/sdb
を実行してから、古い1TBディスク/dev/sda
をゴミ箱に捨てました。次に、新しいディスクでOSを起動すると、すべてが正常に機能します。
次に、/dev/sdb
に新しいパーティションを追加します。 gdisk
を実行しましたが、実行できません。
Gdiskの内容は次のとおりです(3907029168セクター(2TB)がありますが、最後に使用できるセクターは1953525134(1TB)です)
Command (? for help): p
Disk /dev/sdb: 3907029168 sectors, 1.8 TiB
Model: ST2000LX001-1RG1
Sector size (logical/physical): 512/4096 bytes
Disk identifier (GUID): F1EABB30-5410-4D71-AF46-3AA39380AB87
Partition table holds up to 128 entries
Main partition table begins at sector 2 and ends at sector 33
First usable sector is 34, last usable sector is 1953525134
Partitions will be aligned on 8-sector boundaries
Total free space is 4068 sectors (2.0 MiB)
Number Start (sector) End (sector) Size Code Name
1 2048 534527 260.0 MiB EF00 EFI system partition
2 534528 567295 16.0 MiB 0C01 Microsoft reserved ...
3 567296 573710282 273.3 GiB 0700 Basic data partition
4 778510336 780386303 916.0 MiB 2700
5 780388352 781410303 499.0 MiB 2700 Basic data partition
6 781410304 1200836310 200.0 GiB 0700 Basic data partition
7 1200836312 1515409111 150.0 GiB 0700 Microsoft basic data
8 1515409112 1725124311 100.0 GiB 8300 Linux filesystem
9 1725124312 1953525134 108.9 GiB 0700 Basic data partition
10 573710288 778510335 97.7 GiB 8300 Linux filesystem
Command (? for help): n
Partition number (11-128, default 11):
First sector (34-1200836311, default = 780386304) or {+-}size{KMGTP}: 1953525135
First sector (34-1200836311, default = 780386304) or {+-}size{KMGTP}:
どうしましたか?
ありがとう!
この投稿で解決: https://serverfault.com/questions/848576/unable-to-extend-partition-with-gdisk-on-xenserver-6-5
私のディスクは現在2TBですが、GPTパーティションテーブルはまだ1TBがあると考えています。 v
を使用してディスクを確認すると、
Problem: The secondary header's self-pointer indicates that it doesn't reside
at the end of the disk. If you've added a disk to a RAID array, use the 'e'
option on the experts' menu to adjust the secondary header's and partition
table's locations.
Identified 1 problems!
実行x
(エキスパートモード)e
(ポインタを修正)m
(メインメニューに戻る)p
(変更を再確認)w
(save!)、それならすべて大丈夫です。