]> git.ipfire.org Git - thirdparty/man-pages.git/blame_incremental - man5/filesystems.5
getrlimit.2: Correct information about large limits on 32-bit architectures
[thirdparty/man-pages.git] / man5 / filesystems.5
... / ...
CommitLineData
1.\" Copyright 1996 Daniel Quinlan (Daniel.Quinlan@linux.org)
2.\"
3.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
4.\" This is free documentation; you can redistribute it and/or
5.\" modify it under the terms of the GNU General Public License as
6.\" published by the Free Software Foundation; either version 2 of
7.\" the License, or (at your option) any later version.
8.\"
9.\" The GNU General Public License's references to "object code"
10.\" and "executables" are to be interpreted as the output of any
11.\" document formatting or typesetting system, including
12.\" intermediate and printed output.
13.\"
14.\" This manual is distributed in the hope that it will be useful,
15.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
16.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17.\" GNU General Public License for more details.
18.\"
19.\" You should have received a copy of the GNU General Public
20.\" License along with this manual; if not, see
21.\" <http://www.gnu.org/licenses/>.
22.\" %%%LICENSE_END
23.\"
24.\" 2007-12-14 mtk Added Reiserfs, XFS, JFS.
25.\"
26.TH FILESYSTEMS 5 2018-04-30 "Linux" "Linux Programmer's Manual"
27.nh
28.SH NAME
29filesystems \- Linux filesystem types: ext, ext2, ext3, ext4, hpfs, iso9660,
30JFS, minix, msdos, ncpfs nfs, ntfs, proc, Reiserfs, smb, sysv, umsdos, vfat,
31XFS, xiafs,
32.SH DESCRIPTION
33When, as is customary, the
34.B proc
35filesystem is mounted on
36.IR /proc ,
37you can find in the file
38.I /proc/filesystems
39which filesystems your kernel currently supports;
40see
41.BR proc (5)
42for more details.
43There is also a legacy
44.BR sysfs (2)
45system call (whose availability is controlled by the
46.\" commit: 6af9f7bf3c399e0ab1eee048e13572c6d4e15fe9
47.B CONFIG_SYSFS_SYSCALL
48kernel build configuration option since Linux 3.15)
49that enables enumeration of the currently available filesystem types
50regardless of
51.I /proc
52availability and/or sanity.
53.PP
54If you need a currently unsupported filesystem, insert the corresponding
55kernel module or recompile the kernel.
56.PP
57In order to use a filesystem, you have to
58.I mount
59it; see
60.BR mount (2)
61and
62.BR mount (8).
63.PP
64iThe following list provides a
65short description of the available or historically available
66filesystems in the Linux kernel.
67See the kernel documentation for a comprehensive
68description of all options and limitations.
69.TP 10
70.B ext
71is an elaborate extension of the
72.B minix
73filesystem.
74It has been completely superseded by the second version
75of the extended filesystem
76.RB ( ext2 )
77and has been removed from the kernel (in 2.1.21).
78.TP
79.B ext2
80is the high performance disk filesystem used by Linux for fixed disks
81as well as removable media.
82The second extended filesystem was designed as an extension of the
83extended filesystem
84.RB ( ext ).
85See
86.BR ext2 (5).
87.TP
88.B ext3
89is a journaling version of the
90.B ext2
91filesystem.
92It is easy to
93switch back and forth between
94.B ext2
95and
96.BR ext3 .
97See
98.BR ext3 (5).
99.TP
100.B ext4
101is a set of upgrades to
102.B ext3
103including substantial performance and
104reliability enhancements,
105plus large increases in volume, file, and directory size limits.
106See
107.BR ext4 (5).
108.TP
109.B hpfs
110is the High Performance Filesystem, used in OS/2.
111This filesystem is
112read-only under Linux due to the lack of available documentation.
113.TP
114.B iso9660
115is a CD-ROM filesystem type conforming to the ISO 9660 standard.
116.RS
117.TP
118.B "High Sierra"
119Linux supports High Sierra, the precursor to the ISO 9660 standard for
120CD-ROM filesystems.
121It is automatically recognized within the
122.B iso9660
123filesystem support under Linux.
124.TP
125.B "Rock Ridge"
126Linux also supports the System Use Sharing Protocol records specified
127by the Rock Ridge Interchange Protocol.
128They are used to further describe the files in the
129.B iso9660
130filesystem to a UNIX host, and provide information such as long
131filenames, UID/GID, POSIX permissions, and devices.
132It is automatically recognized within the
133.B iso9660
134filesystem support under Linux.
135.RE
136.TP
137.B JFS
138is a journaling filesystem, developed by IBM,
139that was integrated into Linux in kernel 2.4.24.
140.TP
141.B minix
142is the filesystem used in the Minix operating system, the first to run
143under Linux.
144It has a number of shortcomings, including a 64\ MB partition size
145limit, short filenames, and a single timestamp.
146It remains useful for floppies and RAM disks.
147.TP
148.B msdos
149is the filesystem used by DOS, Windows, and some OS/2 computers.
150.B msdos
151filenames can be no longer than 8 characters, followed by an
152optional period and 3 character extension.
153.TP
154.B ncpfs
155is a network filesystem that supports the NCP protocol, used by
156Novell NetWare.
157.IP
158To use
159.BR ncpfs ,
160you need special programs, which can be found at
161.UR ftp://linux01.gwdg.de\:/pub\:/ncpfs
162.UE .
163.TP
164.B nfs
165is the network filesystem used to access disks located on remote computers.
166.TP
167.B ntfs
168replaces Microsoft Window's FAT filesystems (VFAT, FAT32).
169It has reliability, performance, and space-utilization enhancements
170plus features like ACLs, journaling, encryption, and so on.
171.TP
172.B proc
173is a pseudo filesystem which is used as an interface to kernel data
174structures rather than reading and interpreting
175.IR /dev/kmem .
176In particular, its files do not take disk space.
177See
178.BR proc (5).
179.TP
180.B Reiserfs
181is a journaling filesystem, designed by Hans Reiser,
182that was integrated into Linux in kernel 2.4.1.
183.TP
184.B smb
185is a network filesystem that supports the SMB protocol, used by
186Windows for Workgroups, Windows NT, and Lan Manager.
187See
188.UR https://www.samba.org\:/samba\:/smbfs/
189.UE .
190.TP
191.B sysv
192is an implementation of the SystemV/Coherent filesystem for Linux.
193It implements all of Xenix FS, SystemV/386 FS, and Coherent FS.
194.TP
195.B umsdos
196is an extended DOS filesystem used by Linux.
197It adds capability for
198long filenames, UID/GID, POSIX permissions, and special files
199(devices, named pipes, etc.) under the DOS filesystem, without
200sacrificing compatibility with DOS.
201.TP
202.B tmpfs
203is a filesystem whose contents reside in virtual memory.
204Since the files on such filesystems typically reside in RAM,
205file access is extremely fast.
206See
207.BR tmpfs (5).
208.TP
209.B vfat
210is an extended FAT filesystem used by Microsoft Windows95 and Windows NT.
211.B vfat
212adds the capability to use long filenames under the MSDOS filesystem.
213.TP
214.B XFS
215is a journaling filesystem, developed by SGI,
216that was integrated into Linux in kernel 2.4.20.
217.TP
218.B xiafs
219was designed and implemented to be a stable, safe filesystem by
220extending the Minix filesystem code.
221It provides the basic most
222requested features without undue complexity.
223The
224.B xiafs
225filesystem is no longer actively developed or maintained.
226It was removed from the kernel in 2.1.21.
227.SH SEE ALSO
228.BR fuse (4),
229.BR btrfs (5),
230.BR ext2 (5),
231.BR ext3 (5),
232.BR ext4 (5),
233.BR nfs (5),
234.BR proc (5),
235.BR tmpfs (5),
236.BR fsck (8),
237.BR mkfs (8),
238.BR mount (8)