Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

What partition type should be used for cross-platform FAT partitions?

+7
−0

Question

What partition type should I use for FAT partitions such that Linux and Windows systems both recognize the drive?

Notes

I am partitioning the drive with fdisk and making the filesystem with mkfs.fat /dev/sdx. Linux seems to recognize anything I throw at it. Microsoft is the problem.

Is there a modern replacement for the W95 FAT32 (LBA) partition type? A new drive I recently bought comes with this type and it is recognized by both Linux and Windows systems.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

1 answer

+2
−0

The only real usable FAT options are FAT32 and exFAT. FAT32 is probably the file system with the widest cross-platform support possible, but it has a 4GB file size limit. If you want the option to store files larger than that, you would need exFAT. exFAT is another Microsoft file system format which was added to Mac OS X in 2009 and to Linux in 2019. It lacks FAT32's redundant file allocation table, so it is more prone to catastrophic disk corruption in case of unexpected shutdown, but it avoids the archaic limitations on disk and file sizes, and it has full Unicode support in filenames.

A better alternative would surprisingly be NTFS, which is supported by all major operating systems. It might not work on specialized devices like a console, phone, or camera, but any personal computer should support it fine with more features than any FAT file system.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

What partition type for NTFS? (3 comments)

Sign up to answer this question »