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를 설치할 때 필요하지 않습니다.

두 번째 질문, 일부 사람들은 디스크에 무제한 파티션을 생성할 수 있기 때문에 MBR보다 GPT를 선호합니다... 저는 MBR을 사용하고 3개의 기본 파티션(3개의 Linux 배포판)과 1개의 확장 파티션을 가지고 있습니다. 내 /home문제는 일반적으로 Windows가 GPT 파티션에 있으므로 이중 부팅을 원하거나 UEFI를 사용하려면 GPT가 필요합니다. 이 경우 gdiskGPT 태그를 설정하기 위해 실행해야 합니다.

관련 정보