1

After learning basics of installation and types of file system, I found that Linux(Ubuntu) can open,create and delete file on an NTFS file system, where as windows can't even see ext series! so my question if Linux can scan and modify the file operations on NTFS why can't it be installed on an NTFS partition (irrespective of Primary or Logical).

T3J45
  • 176
  • 2
  • 11

2 Answers2

4

That is mainly because Linux has a strict permissions policy for its OS, from the user's directory on to the kernel. These permissions are not supported by the NTFS file system.

See this link for an interesting comparison on file systems.

Jacob Vlijm
  • 83,767
1

Aside from permission issues and POSIX compatibility, the NTFS filesystem check utilities are not capable of fixing all the issues that Windows' chkdsk.exe can. This is not an issue when dual-booted with Windows (unless you don't have a separate /boot partition, in which case everything would be unbootable). Simply-put, the NTFS drivers available for Linux are not feature-complete.

muru
  • 197,895
  • 55
  • 485
  • 740