
Windows サーバーから NAS に LUN とターゲットを作成し、iSCSI イニシエーターを使用してマウントしました。
ディスク マネージャーにディスクが無効として表示されます。
i remove readonly attribを使用しdiskpart
、ディスクのサイズに合わせてパーティションを作成しました(unalloc)
diskpart が例外をスローしました:
No usable free extent could be found. It may be that there is insufficient
free space to create a partition at the specified size and offset. Specify
different size and offset values or don't specify either to create the
maximum sized partition. It may be that the disk is partitioned using the MBR disk
partitioning format and the disk contains either 4 primary partitions, (no
more partitions may be created), or 3 primary partitions and one extended
partition, (only logical drives may be created).
そして、ドライブを分割し続けました。
diskpart
.. select disk=6
..list partition
何も表示されません。
これらのパーティションを「結合」して単一のシンプルボリュームを作成するにはどうすればよいでしょうか?
LUN の作成からさまざまな diskpart 操作まで、さまざまなことを試しました。
ありがとう
答え1
申し訳ありませんが、解決策を見つけました
diskpart
select disk=6
clean
convert GPT
MBR のデフォルトの制限は 2TB です。
ありがとう