The Computer Oracle

Why does Windows not recognize files inside Linux partitions?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Melt

--

Chapters
00:00 Why Does Windows Not Recognize Files Inside Linux Partitions?
00:26 Answer 1 Score 28
00:41 Accepted Answer Score 28
01:17 Answer 3 Score 0
01:30 Answer 4 Score 1
02:26 Thank you

--

Full question
https://superuser.com/questions/403805/w...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#linux #windows #filesystems

#avk47



ANSWER 1

Score 28


Windows does not have native Linux filesystem support (ext3, ext4, zfs, among others). It's as simple as that.




ACCEPTED ANSWER

Score 28


Windows only natively supports the NTFS and FAT (several flavors) file systems (for hard drives/magnetic systems) and CDFS and UDF for optical media, per this article.

To access other file systems, additional drivers/software will be required. As an example, the Ext2 Installable File System For Windows driver is an open source project that supports the Ext2 system.

EDIT: Correct typo - listed "UFS" instead of "UDF" - kudos to @ChrisS for catching the mistake.




ANSWER 3

Score 1


In addition to Windows simply not having support for Linux file systems, Microsoft cannot reasonably take on the responsibility of guaranteeing your data will be safe if they try to support them. For example (and completely hypothetical), say the ext4 team improves performance by recognizing a new ext4 inode format that is not backward compatible. Windows next modifies your data but mixes the old format with the new one, because it doesn't know about the change, and corrupts your data. Who will you blame?

For years, as my memory recalls, the Linux kernel had read-only support for NTFS, and write support was labeled UNSUPPORTED for years after it was introduced. The Linux kernel was obviously very concerned about data integrity until they were confident their NTFS file system support was fully stable and understood. Now imagine how much harder it would be on the kernel team if Windows had 3-5 other filesystems just as popular as NTFS. (Think: ext3-4, XFS, ReiserFS, Btrfs, etc.)




ANSWER 4

Score 0


Its just because of the difference in File systems of Windows and Linux systems. Windows does not support the Linux files or file systems.