「NTFS」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(create.)
タグ: リダイレクト解消
(序文を飜訳)
8行目: 8行目:
 
{{Related articles end}}
 
{{Related articles end}}
   
From [[Wikipedia:NTFS|Wikipedia]]:
+
[[Wikipedia:NTFS|Wikipedia]] より:
:'''NTFS (New Technology File System)''' is a proprietary journaling file system developed by Microsoft. Starting with Windows NT 3.1, it is the default file system of the Windows NT family.
+
:'''NTFS (New Technology File System)''' は、Microsoft が開発した独自のジャーナリングファイルシステムです。 Windows NT 3.1以降、これは WindowsNT ファミリのデフォルトのファイルシステムです。
   
Since Linux 5.15, [https://www.kernel.org/doc/html/latest/filesystems/ntfs3.html ntfs3] provides read and write support for the file system. All [[カーネル#公式サポートカーネル|公式サポートカーネル]] with versions 5.15 or newer are built with {{ic|1=CONFIG_NTFS3_FS=m}} and thus support it.
+
Linux 5.15 以降、[https://www.kernel.org/doc/html/latest/filesystems/ntfs3.html ntfs3] はファイルシステムの読み取りと書き込みをサポートしています。バージョン 5.15 以降の[[カーネル#公式サポートカーネル|公式サポートカーネル]]はすべて {{ic|1=CONFIG_NTFS3_FS=m}} でビルドされているため、これをサポートしています。
   
  +
5.15 未満のカーネルでは、NTFS の読み取りと書き込みのサポートは [[NTFS-3G]] FUSE ファイルシステムによって提供されます。あるいは、{{pkg|ntfs3-dkms}} を使ってバックポートされた NTFS3 を使うこともできます。
For kernels < 5.15, NTFS read and write support is provided by the [[NTFS-3G]] FUSE file system. Or you can use backported NTFS3 via {{AUR|ntfs3-dkms}}.
 
   
  +
{{Note|Paragon は、NTFS3 用のユーザースペースユーティリティをまだリリースしていません。}}
{{Note|Paragon has not yet released userspace utilities for NTFS3.}}
 
   
 
== Tips and tricks ==
 
== Tips and tricks ==

2022年3月4日 (金) 14:10時点における版

関連記事

Wikipedia より:

NTFS (New Technology File System) は、Microsoft が開発した独自のジャーナリングファイルシステムです。 Windows NT 3.1以降、これは WindowsNT ファミリのデフォルトのファイルシステムです。

Linux 5.15 以降、ntfs3 はファイルシステムの読み取りと書き込みをサポートしています。バージョン 5.15 以降の公式サポートカーネルはすべて CONFIG_NTFS3_FS=m でビルドされているため、これをサポートしています。

5.15 未満のカーネルでは、NTFS の読み取りと書き込みのサポートは NTFS-3G FUSE ファイルシステムによって提供されます。あるいは、ntfs3-dkms を使ってバックポートされた NTFS3 を使うこともできます。

ノート: Paragon は、NTFS3 用のユーザースペースユーティリティをまだリリースしていません。

Tips and tricks

Improving performance

You can enable some mount(8) options to improve the performance:

  • noatime – can speed up the file system operations.
  • prealloc – decreases fragmentation in case of parallel write operations (most useful for HDD).

Known issues

Explicit file system type required to mount

ntfs3 requires explicit file system type to mount.

To be able to mount the file system, specify its type as ntfs3. For example, using mount(8)'s -t/--types option:

# mount -t ntfs3 /dev/sdxY /mnt

Troubleshooting

unknown filesystem type 'ntfs'

When mounting NTFS, you can encounter an error such as:

mount: /mnt: unknown filesystem type 'ntfs'

See #Explicit file system type required to mount.

If you want to use ntfs3 as the default driver for ntfs partitions, such udev rule does the trick:

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

Although, this method is not recommended and can confuse some 3rd party tools.

udisks support

udisks supports NTFS3, but has some issues at the moment. See udisks ntfs3 PR and issue 932.

As a workaround, add a such option to /etc/udisks2/mount_options.conf in [defaults] section:

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

ntfs3: Unknown parameter 'windows_names'

See #udisks support.

See also