Ntfs в ядре linux

NTFS (Русский)

Состояние перевода: На этой странице представлен перевод статьи NTFS. Дата последней синхронизации: 27 марта 2023. Вы можете помочь синхронизировать перевод, если в английской версии произошли изменения.

NTFS (аббревиатура от англ. new technology file system — «файловая система новой технологии») — стандартная файловая система для семейства операционных систем Windows NT фирмы Microsoft.

В ядре Linux есть драйвер ntfs3, реализующий возможность чтения и записи для этой файловой системы.

  • Все официальные ядра с версии 5.15 собираются с CONFIG_NTFS3_FS=m и таким образом имеют в своём составе этот драйвер. В Linux < 5.15 для работы с NTFS можно использовать NTFS-3G — файловую систему FUSE. Также есть бэкпорт ntfs3-dkmsAUR .
  • Paragon — автор модуля ядра — ещё не выпустил пользовательские инструменты для работы с NTFS3.

Советы и рекомендации

Увеличение производительности

Можно использовать параметр монтирования prealloc для уменьшения фрагментации при параллельных операциях записи (полезно для HDD).

Запрет использования имён, не разрешённых в Windows

Сама NTFS не имеет ограничений на используемые символы и имена, но в Windows они есть.

Начиная с версии ядра 6.2, ntfs3 поддерживает параметр монтирования windows_names . Используйте его для обеспечения совместимости с Windows.

Известные проблемы

Необходимо явно указывать тип файловой системы при монтировании

При монтировании всегда указывайте тип ntfs3 :

# mount -t ntfs3 /dev/sdxY /mnt 

Решение проблем

unknown filesystem type ‘ntfs’

При монтировании NTFS вы можете получить такую ошибку:

mount: /mnt: unknown filesystem type 'ntfs'

Если вы хотите, чтобы ntfs3 использовался по умолчанию для всех разделов ntfs , можно создать правило udev:

/etc/udev/rules.d/ntfs3_by_default.rules
SUBSYSTEM=="block", ENV=="ntfs", ENV="ntfs3"

Однако это не рекомендуется, так как может вызвать проблемы со сторонними инструментами.

Поддержка udisks

udisks поддерживает NTFS3, но на старых версиях udisks или ядра имелись некоторые проблемы. Смотрите ntfs3 PR и issue 932.

Проблемы могут проявляться в виде следующих ошибок, когда NTFS-3G не установлен и udisks пытается использовать драйвер NTFS3 c параметрами монтирования, которые он не распознаёт:

ntfs3: Unknown parameter 'windows_names'
Filesystem type ntfs3,ntfs not configured in kernel

В качестве обходного пути добавьте следующую опцию в секции [defaults] в файле /etc/udisks2/mount_options.conf :

ntfs_defaults=uid=$UID,gid=$GID,defaults,prealloc

Не удаётся примонтировать раздел, отмеченный как dirty, с помощью ntfs3

При попытке смонтировать хороший NTFS-раздел (то есть который успешно монтируется с помощью NTFS-3G и для которого ntfsfix —no-action не сообщает никаких ошибок), вы можете получить следующую ошибку:

mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error. dmesg(1) may have more information after failed mount system call.

ntfs3 не будет монтировать раздел, который отмечен как «грязный» (dirty), без опции force. dmesg помогает распознать эту ситуацию:

sdb1: volume is dirty and "force" flag is not set!

Попробуйте запустить ntfsfix с аргументом —clear-dirty для сброса этой отметки. [1]

Читайте также:  Сталкер тень чернобыля линукс

Смотрите также

Источник

NTFS3¶

NTFS3 is fully functional NTFS Read-Write driver. The driver works with NTFS versions up to 3.1. File system type to use on mount is ntfs3.

  • This driver implements NTFS read/write support for normal, sparse and compressed files.
  • Supports native journal replaying.
  • Supports NFS export of mounted NTFS volumes.
  • Supports extended attributes. Predefined extended attributes:

Mount Options¶

The list below describes mount options supported by NTFS3 driver in addition to generic ones. You can use every mount option with no option. If it is in this table marked with no it means default is without no.

This option informs the driver how to interpret path strings and translate them to Unicode and back. If this option is not set, the default codepage will be used (CONFIG_NLS_DEFAULT).

Controls the default permissions for files/directories created after the NTFS volume is mounted.

Instead of specifying umask which applies both to files and directories, fmask applies only to files and dmask only to directories.

Files with the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) attribute will not be shown under Linux.

Files with the Windows-specific SYSTEM (FILE_ATTRIBUTE_SYSTEM) attribute will be marked as system immutable files.

Updates the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) attribute when creating and moving or renaming files. Files whose names start with a dot will have the HIDDEN attribute set and files whose names do not start with a dot will have it unset.

Prevents the creation of files and directories with a name not allowed by Windows, either because it contains some not allowed character (which are the characters » * / : < >? \ | and those whose code is less than 0x20), because the name (with or without extension) is a reserved file name (CON, AUX, NUL, PRN, LPT1-9, COM1-9) or because the last character is a space or a dot. Existing such files can still be read and renamed.

Enable support of the TRIM command for improved performance on delete operations, which is recommended for use with the solid-state drives (SSD).

Forces the driver to mount partitions even if volume is marked dirty. Not recommended for use.

Create new files as sparse.

Use this parameter to show all meta-files (System Files) on a mounted NTFS partition. By default, all meta-files are hidden.

Preallocate space for files excessively when file size is increasing on writes. Decreases fragmentation in case of parallel write operations to different files.

Support POSIX ACLs (Access Control Lists). Effective if supported by Kernel. Not to be confused with NTFS ACLs. The option specified as acl enables support for POSIX ACLs.

Todo list¶

  • Full journaling support over JBD. Currently journal replaying is supported which is not necessarily as effectice as JBD would be.

References¶

  • Commercial version of the NTFS driver for Linux. https://www.paragon-software.com/home/ntfs-linux-professional/
  • Direct e-mail address for feedback and requests on the NTFS3 implementation. almaz . alexandrovich @ paragon-software . com

Источник

NTFS3¶

NTFS3 is fully functional NTFS Read-Write driver. The driver works with NTFS versions up to 3.1. File system type to use on mount is ntfs3.

  • This driver implements NTFS read/write support for normal, sparse and compressed files.
  • Supports native journal replaying.
  • Supports NFS export of mounted NTFS volumes.
  • Supports extended attributes. Predefined extended attributes:

Mount Options¶

The list below describes mount options supported by NTFS3 driver in addition to generic ones. You can use every mount option with no option. If it is in this table marked with no it means default is without no.

This option informs the driver how to interpret path strings and translate them to Unicode and back. If this option is not set, the default codepage will be used (CONFIG_NLS_DEFAULT).

Controls the default permissions for files/directories created after the NTFS volume is mounted.

Instead of specifying umask which applies both to files and directories, fmask applies only to files and dmask only to directories.

Files with the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) attribute will not be shown under Linux.

Files with the Windows-specific SYSTEM (FILE_ATTRIBUTE_SYSTEM) attribute will be marked as system immutable files.

Updates the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) attribute when creating and moving or renaming files. Files whose names start with a dot will have the HIDDEN attribute set and files whose names do not start with a dot will have it unset.

Prevents the creation of files and directories with a name not allowed by Windows, either because it contains some not allowed character (which are the characters » * / : < >? \ | and those whose code is less than 0x20), because the name (with or without extension) is a reserved file name (CON, AUX, NUL, PRN, LPT1-9, COM1-9) or because the last character is a space or a dot. Existing such files can still be read and renamed.

Enable support of the TRIM command for improved performance on delete operations, which is recommended for use with the solid-state drives (SSD).

Forces the driver to mount partitions even if volume is marked dirty. Not recommended for use.

Create new files as sparse.

Use this parameter to show all meta-files (System Files) on a mounted NTFS partition. By default, all meta-files are hidden.

Preallocate space for files excessively when file size is increasing on writes. Decreases fragmentation in case of parallel write operations to different files.

Support POSIX ACLs (Access Control Lists). Effective if supported by Kernel. Not to be confused with NTFS ACLs. The option specified as acl enables support for POSIX ACLs.

Todo list¶

  • Full journaling support over JBD. Currently journal replaying is supported which is not necessarily as effectice as JBD would be.

References¶

  • Commercial version of the NTFS driver for Linux. https://www.paragon-software.com/home/ntfs-linux-professional/
  • Direct e-mail address for feedback and requests on the NTFS3 implementation. almaz . alexandrovich @ paragon-software . com

Источник

Оцените статью
Adblock
detector