fdisk:パーティションにntfs署名が含まれています。削除しますか?

fdisk:パーティションにntfs署名が含まれています。削除しますか?

ThinkPad X220にNixOをインストールしています。シェルについては非常によく知っていますが、システムを直接設定してくださいfdisk

ノートブックには現在Windowsがインストールされており、NixOSと完全に交換する予定です。私はfdisk現在のパーティションを見て、それを新しいパーティションスキームに置き換えました。

元のパーティションを削除した後、小さな(500MB)ブートパーティションを作成し、次のようにfdisk報告しました。

Partition #1 contains a ntfs signature.
Do you want to remove the signature? [Y]es/[N]o:

私はこれが何を意味するのかわからず、「ntfs署名」を検索しても何も出ていないので(今は)すべてをやめました。

この警告の意味を説明できる人はいますか? ntfs署名を削除すると、今後の悪影響はありますか?

また、ドライブをMBRからGPTに変換する必要があるかどうか疑問に思います。部分的には、多くの人がgdiskパーティション管理にそれを使用することをお勧めしているようです。このハードウェアがGPTをサポートしているのか、BIOSやUEFIから起動するのかはわかりません。

ちなみに、私のセッションのより完全なログは次のとおりですfdisk

[root@nixos:~]# fdisk /dev/sda

Welcome to fdisk ...

Command (m for help): p
Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 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: dos
Disk identifier: 0x65f5b331

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1  *         2048   1026047   1024000  500M  7 HPFS/NTFS/exFAT
/dev/sda2         1026048 199606271 198580224 94.7G  7 HPFS/NTFS/exFAT
/dev/sda3       199606272 234441646  34835375 16.6G  5 Extended
/dev/sda5       199608320 234440703  34832384 16.6G bc Acronis FAT32 LBA 

Command (m for help): d 
Partition number (1-3,5, default 5): 5
Partition 5 has been deleted.
Command (m for help): d
Partition number (1-3, default 3): 3
Partition 3 has been deleted.
Command (m for help): d
Partition number (1,2, default 2): 2
Partition 2 has been deleted.
Command (m for help): d
Selected partition 1
Partition 1 has been deleted.

Command (m for help): p
Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 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: dos
Disk identifier: 0x65f5b331

Command (m for help): n
Partition type
   p   primary (0 primary, 0 extended, 4 free)
   e   extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-234441647, default 2048): 
Last sector, +sectors or +size{K,M,G,T,P} (2048-234441647, default 234441647): +500M

Created a new partition 1 of type 'Linux' and of size 500 MiB.
Partition #1 contains a ntfs signature.

Do you want to remove the signature? [Y]es/[N]o:

ベストアンサー1

いいですね。簡単な答えは次のとおりです。

はい、ntfsフラグを削除できます。これはWindowsのものなので、NixOをインストールするときは必要ありません。

2番目の質問、一部の人はディスクに無制限のパーティションを作成できるため、MBRよりもGPTを好む...私はMBRを使用し、3つのプライマリパーティション(3つのLinuxディストリビューション)と1つの拡張パーティションを持っています。私の/home問題は通常、WindowsがGPTパーティションにあるため、デュアルブートしたい場合やUEFIを使用するにはGPTが必要です。この場合、gdiskGPTタグを設定するために実行する必要があります。

おすすめ記事