Hacker News new | ask | show | jobs
by shoo_pl 1803 days ago
It's actually exFAT thats portable. NTFS is mostly for windows users, and macs do support it - though only reading.
2 comments

Anyone know why? Given ext2 has had a public domain implementation for more than a decade? Is it because windows & mac won't support ext2 even for free? Seems like a better lowest common denominator fs than any of the fats?
You can't use easily ext2 on an external storage because of permissions.
That's because Linux and OSX ignore NTFS permissions making it work more like FAT.

Plug an existing NTFS drive from one Windows system into another Windows system and you get a similar issue where opening a home directory requires you to take ownership.

But Linux refuse to ignore permissions on an ext2.
Isn't that how it's mounted that matters there?
I never find an option to ignore permissions.
that depends, exFAT lacks permissions and symlinks. I think FreeBSD has NTFS support but lacks exFAT
> that depends, exFAT lacks permissions and symlinks.

The lack of permissions is why it works as a portable file system. If you've ever tried to use, say, ext for this it becomes clear why nobody does that.

You can just pass -o uid=X,gid=Y when mounting ext2 to solve this.