Partition

fdisk:分區包含一個 ntfs 簽名。去掉它?

  • October 26, 2018

我正在 ThinkPad X220 上安裝 NixOs。雖然我在 shell 中很舒服,但這是我第一次設置自己的系統,並且在嘗試使用fdisk.

筆記型電腦目前安裝了 Windows,我打算用 NixOS 完全替換它。我跑去fdisk查看目前的分區並用新的分區方案替換它們。

刪除原來的分區後,我創建了一個小(500MB)的引導分區,並fdisk報告:

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

我不確定這意味著什麼,Google搜尋“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:

好的,快速回答是:

是的,您可以刪除 ntfs 標誌,這是 Windows 的東西,在進行 NixOs 安裝時不需要它。

第二個問題,有些人更喜歡 GPT 而不是 MBR,因為您可以在磁碟上創建無限分區……我使用 MBR 並且有 3 個主分區(3 個 Linux 發行版)和一個擴展分區,即我的/home. 問題是通常情況下,Windows 必須在 GPT 分區上,因此如果您想要雙啟動或使用 UEFI,那麼您需要 GPT。在這種情況下,您需要執行gdisk才能設置 GPT 標籤。

引用自:https://unix.stackexchange.com/questions/395950