Filesystems

fdisk 中的 Linux 文件系統、Linux 伺服器數據、Linux root、Linux reserved 和 Linux home 有什麼區別?

  • December 16, 2019

在 GPT 分區上使用 fdisk 創建文件系統時,我注意到在文件系統類型中,有如下選項:

20 Linux filesystem               0FC63DAF-8483-4772-8E79-3D69D8477DE4
21 Linux server data              3B8F8425-20E0-4F3B-907F-1A25A76F98E8
22 Linux root (x86)               44479540-F297-41B2-9AF7-D131D5F0458A
23 Linux root (ARM)               69DAD710-2CE4-4E3C-B16C-21A1D49ABED3
24 Linux root (x86-64)            4F68BCE3-E8CD-4DB1-96E7-FBCAF984B709
25 Linux root (ARM-64)            B921B045-1DF0-41C3-AF44-4C6F280D3FAE
26 Linux root  (IA-64)             993D8D3D-F80E-4225-855A-9DAF8ED7EA97
27 Linux reserved                 8DA63339-0007-60C0-C436-083AC8230908
28 Linux home                     933AC7E1-2EB4-4F13-B844-0E14E2AEF915
29 Linux RAID                     A19D880F-05FC-4D3B-A006-743F0F84911E

我在我的系統上使用過 Linux 文件系統、Linux root (x86_x4)、Linux home,可與 XFS、NilFS、EXT4 和 ReiserFS 互換使用。

這些文件系統類型之間有什麼區別?是否有一個手冊頁記錄了所有這些?

https://en.wikipedia.org/wiki/GUID_Partition_Table上,您可以按照腳註 34 和 35 中的連結查找解釋。

https://www.freedesktop.org/wiki/Specifications/DiscoverablePartitionsSpec/

https://www.freedesktop.org/software/systemd/man/systemd-gpt-auto-generator.html

不同類型的主要目的是允許將某些分區自動掛載到文件系統中的正確位置。

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