OSDN Git Service

9fb4a3b251f99537636a255a172e102fd5f56f88
[linuxjm/LDP_man-pages.git] / original / man5 / filesystems.5
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 2014-01-15 "Linux" "Linux Programmer's Manual"
27 .nh
28 .SH NAME
29 filesystems \- Linux filesystem types: minix, ext, ext2, ext3, ext4, Reiserfs,
30 XFS, JFS, xia, msdos,
31 umsdos, vfat, ntfs, proc, nfs, iso9660, hpfs, sysv, smb, ncpfs
32 .SH DESCRIPTION
33 When, as is customary, the
34 .B proc
35 filesystem is mounted on
36 .IR /proc ,
37 you can find in the file
38 .I /proc/filesystems
39 which filesystems your kernel currently supports;
40 see
41 .BR proc (5)
42 for more details.
43 If you need a currently unsupported filesystem, insert the corresponding
44 module or recompile the kernel.
45
46 In order to use a filesystem, you have to
47 .I mount
48 it; see
49 .BR mount (8).
50
51 Below a short description of a few of the available filesystems.
52 .TP 10
53 .B "minix"
54 is the filesystem used in the Minix operating system, the first to run
55 under Linux.
56 It has a number of shortcomings, including a 64MB partition size
57 limit, short filenames, and a single timestamp.
58 It remains useful for floppies and RAM disks.
59 .TP
60 .B ext
61 is an elaborate extension of the
62 .B minix
63 filesystem.
64 It has been completely superseded by the second version
65 of the extended filesystem
66 .RB ( ext2 )
67 and has been removed from the kernel (in 2.1.21).
68 .TP
69 .B ext2
70 is the high performance disk filesystem used by Linux for fixed disks
71 as well as removable media.
72 The second extended filesystem was designed as an extension of the
73 extended filesystem
74 .RB ( ext ).
75 .B ext2
76 offers the best performance (in terms of speed and CPU usage) of
77 the filesystems supported under Linux.
78 .TP
79 .B ext3
80 is a journaling version of the ext2 filesystem.
81 It is easy to
82 switch back and forth between ext2 and ext3.
83 .TP
84 .B ext4
85 is a set of upgrades to ext3 including substantial performance and
86 reliability enhancements,
87 plus large increases in volume, file, and directory size limits.
88 .TP
89 .B Reiserfs
90 is a journaling filesystem, designed by Hans Reiser,
91 that was integrated into Linux in kernel 2.4.1.
92 .TP
93 .B XFS
94 is a journaling filesystem, developed by SGI,
95 that was integrated into Linux in kernel 2.4.20.
96 .TP
97 .B JFS
98 is a journaling filesystem, developed by IBM,
99 that was integrated into Linux in kernel 2.4.24.
100 .TP
101 .B xiafs
102 was designed and implemented to be a stable, safe filesystem by
103 extending the Minix filesystem code.
104 It provides the basic most
105 requested features without undue complexity.
106 The
107 .B xia
108 filesystem is no longer actively developed or maintained.
109 It was removed from the kernel in 2.1.21.
110 .TP
111 .B msdos
112 is the filesystem used by DOS, Windows, and some OS/2 computers.
113 .B msdos
114 filenames can be no longer than 8 characters, followed by an
115 optional period and 3 character extension.
116 .TP
117 .B umsdos
118 is an extended DOS filesystem used by Linux.
119 It adds capability for
120 long filenames, UID/GID, POSIX permissions, and special files
121 (devices, named pipes, etc.)  under the DOS filesystem, without
122 sacrificing compatibility with DOS.
123 .TP
124 .B vfat
125 is an extended DOS filesystem used by Microsoft Windows95 and Windows NT.
126 VFAT adds the capability to use long filenames under the MSDOS filesystem.
127 .TP
128 .B ntfs
129 replaces Microsoft Window's FAT filesystems (VFAT, FAT32).
130 It has reliability, performance, and space-utilization enhancements
131 plus features like ACLs, journaling, encryption, and so on.
132 .TP
133 .B proc
134 is a pseudo filesystem which is used as an interface to kernel data
135 structures rather than reading and interpreting
136 .IR /dev/kmem .
137 In particular, its files do not take disk space.
138 See
139 .BR proc (5).
140 .TP
141 .B iso9660
142 is a CD-ROM filesystem type conforming to the ISO 9660 standard.
143 .RS
144 .TP
145 .B "High Sierra"
146 Linux supports High Sierra, the precursor to the ISO 9660 standard for
147 CD-ROM filesystems.
148 It is automatically recognized within the
149 .B iso9660
150 filesystem support under Linux.
151 .TP
152 .B "Rock Ridge"
153 Linux also supports the System Use Sharing Protocol records specified
154 by the Rock Ridge Interchange Protocol.
155 They are used to further describe the files in the
156 .B iso9660
157 filesystem to a UNIX host, and provide information such as long
158 filenames, UID/GID, POSIX permissions, and devices.
159 It is automatically recognized within the
160 .B iso9660
161 filesystem support under Linux.
162 .RE
163 .TP
164 .B hpfs
165 is the High Performance Filesystem, used in OS/2.
166 This filesystem is
167 read-only under Linux due to the lack of available documentation.
168 .TP
169 .B sysv
170 is an implementation of the SystemV/Coherent filesystem for Linux.
171 It implements all of Xenix FS, SystemV/386 FS, and Coherent FS.
172 .TP
173 .B nfs
174 is the network filesystem used to access disks located on remote computers.
175 .TP
176 .B smb
177 is a network filesystem that supports the SMB protocol, used by
178 Windows for Workgroups, Windows NT, and Lan Manager.
179 .sp
180 To use
181 .B smb
182 fs, you need a special mount program, which can be found in the ksmbfs
183 package, found at
184 .UR ftp://sunsite.unc.edu\:/pub\:/Linux\:/system\:/Filesystems\:/smbfs
185 .UE .
186 .TP
187 .B ncpfs
188 is a network filesystem that supports the NCP protocol, used by
189 Novell NetWare.
190 .sp
191 To use
192 .BR ncpfs ,
193 you need special programs, which can be found at
194 .UR ftp://linux01.gwdg.de\:/pub\:/ncpfs
195 .UE .
196 .SH SEE ALSO
197 .BR proc (5),
198 .BR fsck (8),
199 .BR mkfs (8),
200 .BR mount (8)
201 .SH COLOPHON
202 This page is part of release 3.64 of the Linux
203 .I man-pages
204 project.
205 A description of the project,
206 and information about reporting bugs,
207 can be found at
208 \%http://www.kernel.org/doc/man\-pages/.