Filesystems

將磁碟類型從 Microsoft Basic 更改為 Linux 文件系統

  • May 31, 2020

我不清楚這是從哪裡來的,雖然它看起來很漂亮,但我想將我的磁碟類型從 Microsoft Basic 更改為 Linux 文件系統

   WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.

Disk /dev/sda: 50.0 GB, 50010783744 bytes, 97677312 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 1048576 bytes
Disk label type: gpt
Disk identifier: 5E29C82B-93C9-47D8-B99C-A8DD0C1A2970


#         Start          End    Size  Type            Name
1         2048       411647    200M  EFI System      EFI System Partition
2       411648     17188863      8G  Linux swap
3     17188864     97675263   38.4G  Microsoft basic

是的,對於 Linux,這完全是裝飾性的。

Type欄位基於 GPT 分區表中的分區類型 GUID,並且有很多可能的類型。

使用 Linux 更改分區類型 GUIDfdisk不應以任何方式更改分區的內容。但是根據WARNING消息,您的版本fdisk似乎有點舊,因此您可能需要小心並首先備份任何關鍵數據。

基本上你需要做的是:

# fdisk /dev/sda
[...]
Command (m for help): t
Partition number (1-3, default 3): 3
Hex code (type L to list all codes): L

<A long list is displayed...> 
<Find the correct short code matching the "Linux filesystem" type GUID>

Hex code (type L to list all codes: <type the short code here>
Command (m for help): w

您的版本fdisk可能有一些差異。此範例是使用以下內容生成的:

# fdisk --version
fdisk from util-linux 2.29.2

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