# SOME DESCRIPTIVE TITLE # Copyright (C) YEAR The FreeBSD Project # This file is distributed under the same license as the FreeBSD Documentation package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: FreeBSD Documentation VERSION\n" "POT-Creation-Date: 2026-02-22 15:58+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: YAML Front Matter: description #: documentation/content/en/books/handbook/filesystems/_index.adoc:1 #, no-wrap msgid "This chapter shows the other filesystems supported by FreeBSD" msgstr "" #. type: YAML Front Matter: part #: documentation/content/en/books/handbook/filesystems/_index.adoc:1 #, no-wrap msgid "Part III. System Administration" msgstr "" #. type: YAML Front Matter: title #: documentation/content/en/books/handbook/filesystems/_index.adoc:1 #, no-wrap msgid "Chapter 23. Other File Systems" msgstr "" #. type: Title = #: documentation/content/en/books/handbook/filesystems/_index.adoc:15 #, no-wrap msgid "Other File Systems" msgstr "" #. type: Title == #: documentation/content/en/books/handbook/filesystems/_index.adoc:53 #, no-wrap msgid "Synopsis" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:58 msgid "" "File systems are a fundamental component of any operating system. They " "enable users to store, manage, and access data, making storage devices like " "hard drives, flash drives, and USB storage devices practical for everyday " "use. Different operating systems use different file systems natively." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:62 msgid "" "FreeBSD has traditionally used the Unix File System (UFS), with the " "modernized UFS2 as its primary native file system. FreeBSD also uses the Z " "File System (ZFS), known for its advanced features, robustness, and " "reliability. See crossref:zfs[zfs,The Z File System (ZFS)] for more details." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:65 msgid "" "In addition to its native file systems, FreeBSD supports a broad range of " "file systems from other operating systems. Support for these file systems " "varies, some require loading kernel modules, while others need additional " "userland tools." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:67 msgid "Before reading this chapter:" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:69 msgid "" "Be familiar with UNIX(R) concepts and crossref:basics[basics,FreeBSD basics]." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:70 msgid "Feel comfortable crossref:ports[ports,installing software] in FreeBSD." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:71 msgid "" "Have some understanding of crossref:disks[disks,disks], storage devices, and " "FreeBSD's naming conventions for devices." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:73 msgid "Read this chapter to:" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:75 msgid "Understand the differences between native and supported file systems." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:76 msgid "" "Know which file systems are supported by FreeBSD and the level of support " "available." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:77 msgid "" "Learn how to enable, configure, access, and work with non-native file " "systems." msgstr "" #. type: Title == #: documentation/content/en/books/handbook/filesystems/_index.adoc:79 #, no-wrap msgid "Linux(R) File Systems" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:83 msgid "" "FreeBSD provides built-in support for several Linux(R) file systems. This " "section demonstrates how to load support for and how to mount the supported " "Linux(R) file systems." msgstr "" #. type: Title === #: documentation/content/en/books/handbook/filesystems/_index.adoc:85 #, no-wrap msgid "Extended File System (EXT)" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:89 msgid "" "Kernel support for Extended File System (EXT) file systems has been " "available since FreeBSD 2.2. The man:ext2fs[5] driver allows the FreeBSD " "kernel to both read and write to ext2, ext3, and ext4 file systems." msgstr "" #. type: delimited block = 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:93 msgid "Journalling and encryption are not supported yet." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:97 msgid "" "To access an ext file system, mount the ext volume by specifying its FreeBSD " "partition name and an existing mount point. This example mounts " "[.filename]#/dev/ada1s1# on [.filename]#/mnt#:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:101 #, no-wrap msgid "# mount -t ext2fs /dev/ada1s1 /mnt\n" msgstr "" #. type: Title == #: documentation/content/en/books/handbook/filesystems/_index.adoc:104 #, no-wrap msgid "Windows(R) File Systems" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:107 msgid "" "FreeBSD supports FAT, exFAT, and NTFS file systems, enabling access to " "Windows-formatted storage." msgstr "" #. type: Title === #: documentation/content/en/books/handbook/filesystems/_index.adoc:109 #, no-wrap msgid "FAT File System" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:113 msgid "" "The FAT file system is a simple and robust file system. Although it lacks " "the performance, reliability, and scalability of modern alternatives, its " "availability on many different operating systems makes it a common choice " "for data exchange between devices." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:116 msgid "" "To access a FAT file system, mount the FAT volume by specifying its FreeBSD " "partition name and an existing mount point. This example mounts " "[.filename]#/dev/ada0s1# on [.filename]#/mnt#:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:120 #, no-wrap msgid "# mount -t msdosfs /dev/ada0s1 /mnt\n" msgstr "" #. type: Title === #: documentation/content/en/books/handbook/filesystems/_index.adoc:123 #, no-wrap msgid "exFAT File System" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:127 msgid "" "exFAT (Extended File Allocation Table) is a lightweight file system " "optimized for flash storage devices, such as USB drives and SD cards. It " "supports large file sizes and is widely used across various platforms, " "making it ideal for external storage." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:129 msgid "" "To use exFAT on FreeBSD, install the package:filesystems/exfat[] package, " "load the FUSE kernel module, and mount the file system as shown below:" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:131 msgid "Install the exFAT package:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:135 #, no-wrap msgid "# pkg install fusefs-exfat\n" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:138 #: documentation/content/en/books/handbook/filesystems/_index.adoc:175 #: documentation/content/en/books/handbook/filesystems/_index.adoc:217 msgid "Before using a FUSE file system, load the man:fusefs[5] kernel module:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:142 #: documentation/content/en/books/handbook/filesystems/_index.adoc:179 #: documentation/content/en/books/handbook/filesystems/_index.adoc:221 #, no-wrap msgid "# kldload fusefs\n" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:145 #: documentation/content/en/books/handbook/filesystems/_index.adoc:182 #: documentation/content/en/books/handbook/filesystems/_index.adoc:224 msgid "Use man:sysrc[8] to load the module at startup:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:149 #: documentation/content/en/books/handbook/filesystems/_index.adoc:186 #: documentation/content/en/books/handbook/filesystems/_index.adoc:228 #, no-wrap msgid "# sysrc kld_list+=fusefs\n" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:153 msgid "" "Mount the exFAT volume by specifying its FreeBSD partition name and an " "existing mount point. This example mounts [.filename]#/dev/ada0s1# on " "[.filename]#/mnt#:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:157 #, no-wrap msgid "# mount.exfat /dev/ada0s1 /mnt\n" msgstr "" #. type: Title === #: documentation/content/en/books/handbook/filesystems/_index.adoc:160 #, no-wrap msgid "NTFS File System" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:164 msgid "" "NTFS is a robust file system developed by Microsoft(R) and commonly used in " "Windows operating systems. FreeBSD provides full read and write support for " "NTFS through the package:filesystems/ntfs[] package, making it easy to " "access and modify NTFS-formatted storage devices." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:166 msgid "" "To use NTFS on FreeBSD, install the package:filesystems/ntfs[] package, load " "the FUSE kernel module, and mount the file system as shown below:" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:168 msgid "Install the NTFS package:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:172 #, no-wrap msgid "# pkg install fusefs-ntfs\n" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:190 msgid "" "Mount the NTFS volume by specifying its FreeBSD partition name and an " "existing mount point. This example mounts [.filename]#/dev/ada0s1# on " "[.filename]#/mnt#:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:194 #, no-wrap msgid "# ntfs-3g /dev/ada0s1 /mnt\n" msgstr "" #. type: Title == #: documentation/content/en/books/handbook/filesystems/_index.adoc:197 #, no-wrap msgid "MacOS(R) File Systems" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:200 msgid "" "FreeBSD provides support for MacOS(R) file systems, including HFS/HFS+, " "allowing access to storage devices formatted for Apple(R) systems." msgstr "" #. type: Title === #: documentation/content/en/books/handbook/filesystems/_index.adoc:202 #, no-wrap msgid "HFS/HFS+ File System" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:206 msgid "" "HFS/HFS+ was the primary file system for MacOS prior to APFS, commonly used " "on older Mac devices and external drives. FreeBSD provides read-only " "support for HFS/HFS+ through the package:filesystems/hfsfuse[] package." msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:208 msgid "" "To use HFS/HFS+ on FreeBSD, install the package:filesystems/hfsfuse[] " "package, load the FUSE kernel module, and mount the file system as shown " "below:" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:210 msgid "Install the HFS/HFS+ package:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:214 #, no-wrap msgid "# pkg install fusefs-hfsfuse\n" msgstr "" #. type: Plain text #: documentation/content/en/books/handbook/filesystems/_index.adoc:232 msgid "" "Mount the HFS/HFS+ volume by specifying its FreeBSD partition name and an " "existing mount point. This example mounts [.filename]#/dev/ada0s1# on " "[.filename]#/mnt#:" msgstr "" #. type: delimited block . 4 #: documentation/content/en/books/handbook/filesystems/_index.adoc:236 #, no-wrap msgid "# hfsfuse /dev/ada0s1 /mnt\n" msgstr ""