Documentation/filesystems/ntfs.rst
Source file repositories/reference/linux-study-clean/Documentation/filesystems/ntfs.rst
File Facts
- System
- Linux kernel
- Corpus path
Documentation/filesystems/ntfs.rst- Extension
.rst- Size
- 8240 bytes
- Lines
- 173
- Domain
- Support Tooling And Documentation
- Bucket
- Documentation
- Inferred role
- Support Tooling And Documentation: documentation
- Status
- atlas-only
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
.. SPDX-License-Identifier: GPL-2.0
=================================
The Linux NTFS filesystem driver
=================================
.. Table of contents
- Overview
- Utilities support
- Supported mount options
Overview
========
NTFS is a Linux kernel filesystem driver that provides full read and write
support for NTFS volumes. It is designed for high performance, modern
kernel infrastructure (iomap, folio), and stable long-term maintenance.
Utilities support
=================
The NTFS utilities project, called ntfsprogs-plus, provides mkfs.ntfs,
fsck.ntfs, and other related tools (e.g., ntfsinfo, ntfsclone, etc.) for
creating, checking, and managing NTFS volumes. These utilities can be used
for filesystem testing with xfstests as well as for recovering corrupted
NTFS devices.
The project is available at:
https://github.com/ntfsprogs-plus/ntfsprogs-plus
Supported mount options
=======================
The NTFS driver supports the following mount options:
======================= ====================================================
iocharset=name Character set to use for converting between
the encoding is used for user visible filename and
16 bit Unicode characters.
nls=name Deprecated option. Still supported but please use
iocharset=name in the future.
uid=
gid=
umask= Provide default owner, group, and access mode mask.
These options work as documented in mount(8). By
default, the files/directories are owned by root
and he/she has read and write permissions, as well
as browse permission for directories. No one else
has any access permissions. I.e. the mode on all
files is by default rw------- and
for directories rwx------, a consequence of
the default fmask=0177 and dmask=0077.
Using a umask of zero will grant all permissions to
everyone, i.e. all files and directories will have
mode rwxrwxrwx.
fmask=
dmask= Instead of specifying umask which applies both to
files and directories, fmask applies only to files
and dmask only to directories.
showmeta=<BOOL>
Annotation
- Atlas domain: Support Tooling And Documentation / Documentation.
- Implementation status: atlas-only.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.