1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML
><HEAD
><TITLE
>Filesystems</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="Linux System Administrators Guide"
HREF="index.html"><LINK
REL="UP"
TITLE="Using Disks and Other Storage Media"
HREF="disk-usage.html"><LINK
REL="PREVIOUS"
TITLE="Partitions"
HREF="partitions.html"><LINK
REL="NEXT"
TITLE="Disks without filesystems"
HREF="disk-no-fs.html"></HEAD
><BODY
CLASS="SECT1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Linux System Administrators Guide: </TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="partitions.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Chapter 5. Using Disks and Other Storage Media</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="disk-no-fs.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="FILESYSTEMS"
></A
>5.10. Filesystems</H1
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FS-INTRO"
></A
>5.10.1. What are filesystems?</H2
><P
>A <I
CLASS="GLOSSTERM"
>filesystem</I
> is the methods and
data structures that an operating system uses to keep track of files
on a disk or partition; that is, the way the files are organized on
the disk. The word is also used to refer to a partition or disk
that is used to store the files or the type of the filesystem.
Thus, one might say ``I have two filesystems'' meaning one has two
partitions on which one stores files, or that one is using the
``extended filesystem'', meaning the type of the filesystem.</P
><P
>The difference between a disk or partition and the
filesystem it contains is important. A few programs (including,
reasonably enough, programs that create filesystems) operate
directly on the raw sectors of a disk or partition; if there is an
existing file system there it will be destroyed or seriously
corrupted. Most programs operate on a filesystem, and therefore
won't work on a partition that doesn't contain one (or that contains
one of the wrong type).</P
><P
>Before a partition or disk can be used as a filesystem, it
needs to be initialized, and the bookkeeping data structures need to
be written to the disk. This process is called
<I
CLASS="GLOSSTERM"
>making a filesystem</I
>.</P
><P
>Most UNIX filesystem types have a similar general
structure, although the exact details vary quite a bit. The central
concepts are <I
CLASS="GLOSSTERM"
>superblock</I
>, <I
CLASS="GLOSSTERM"
>inode</I
>
, <I
CLASS="GLOSSTERM"
>data block</I
>,
<I
CLASS="GLOSSTERM"
>directory block</I
> , and <I
CLASS="GLOSSTERM"
>indirection
block</I
>. The superblock contains information about the
filesystem as a whole, such as its size (the exact information here
depends on the filesystem). An inode contains all information about
a file, except its name. The name is stored in the directory,
together with the number of the inode. A directory entry consists of
a filename and the number of the inode which represents the file.
The inode contains the numbers of several data blocks, which are
used to store the data in the file. There is space only for a few
data block numbers in the inode, however, and if more are needed,
more space for pointers to the data blocks is allocated dynamically.
These dynamically allocated blocks are indirect blocks; the name
indicates that in order to find the data block, one has to find
its number in the indirect block first.</P
><P
>UNIX filesystems usually allow one to create a
<I
CLASS="GLOSSTERM"
>hole</I
> in a file (this is done with the
<TT
CLASS="FUNCTION"
>lseek()</TT
> system call; check the manual page),
which means that the filesystem just pretends that at a particular
place in the file there is just zero bytes, but no actual disk
sectors are reserved for that place in the file (this means that the
file will use a bit less disk space). This happens especially often
for small binaries, Linux shared libraries, some databases, and a
few other special cases. (Holes are implemented by storing a
special value as the address of the data block in the indirect block
or inode. This special address means that no data block is
allocated for that part of the file, ergo, there is a hole in the
file.)</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FS-GALORE"
></A
>5.10.2. Filesystems galore</H2
><P
>Linux supports several types of filesystems. As of this
writing the most important ones are:
<DIV
CLASS="GLOSSLIST"
><DL
><DT
><B
>minix</B
></DT
><DD
><P
>The oldest, presumed to be the most
reliable, but quite limited in features (some time stamps
are missing, at most 30 character filenames) and restricted
in capabilities (at most 64 MB per filesystem).
</P
></DD
><DT
><B
>xia</B
></DT
><DD
><P
>A modified version of the minix filesystem
that lifts the limits on the filenames and filesystem sizes,
but does not otherwise introduce new features. It is not
very popular, but is reported to work very well.
</P
></DD
><DT
><B
>ext3</B
></DT
><DD
><P
>The ext3 filesystem has all the features of
the ext2 filesystem. The difference is, journaling has been
added. This improves performance and recovery time in case
of a system crash. This has become more popular than ext2.
</P
></DD
><DT
><B
>ext2</B
></DT
><DD
><P
>The most featureful of the native Linux
filesystems. It is designed to be easily upwards compatible,
so that new versions of the filesystem code do not require
re-making the existing filesystems.</P
></DD
><DT
><B
>ext</B
></DT
><DD
><P
>An older version of ext2 that wasn't upwards
compatible. It is hardly ever used in new installations any
more, and most people have converted to ext2.
</P
></DD
><DT
><B
>reiserfs</B
></DT
><DD
><P
>A more robust filesystem. Journaling is
used which makes data loss less likely. Journaling is a
mechanism whereby a record is kept of transaction which are
to be performed, or which have been performed. This allows
the filesystem to reconstruct itself fairly easily after
damage caused by, for example, improper
shutdowns.</P
></DD
><DT
><B
>jfs</B
></DT
><DD
><P
>JFS is a journaled filesystem designed
by IBM to to work in high performance environments></P
></DD
><DT
><B
>xfs</B
></DT
><DD
><P
>XFS was originally designed by Silicon Graphics
to work as a 64-bit journaled filesystem. XFS was also designed
to maintain high performance with large files and filesystems.
</P
></DD
></DL
></DIV
></P
><P
>In addition, support for several foreign filesystems exists,
to make it easier to exchange files with other operating systems.
These foreign filesystems work just like native ones, except that
they may be lacking in some usual UNIX features, or have curious
limitations, or other oddities.
<DIV
CLASS="GLOSSLIST"
><DL
><DT
><B
>msdos</B
></DT
><DD
><P
>Compatibility with MS-DOS (and OS/2 and
Windows NT) FAT filesystems.</P
></DD
><DT
><B
>umsdos</B
></DT
><DD
><P
>Extends the msdos filesystem driver under
Linux to get long filenames, owners, permissions, links, and
device files. This allows a normal msdos filesystem to be
used as if it were a Linux one, thus removing the need for a
separate partition for Linux.</P
></DD
><DT
><B
>vfat</B
></DT
><DD
><P
>This is an extension of the FAT filesystem
known as FAT32. It supports larger disk sizes than FAT.
Most MS Windows disks are vfat.</P
></DD
><DT
><B
>iso9660</B
></DT
><DD
><P
>The standard CD-ROM filesystem; the popular
Rock Ridge extension to the CD-ROM standard that allows
longer file names is supported automatically.
</P
></DD
><DT
><B
>nfs</B
></DT
><DD
><P
>A networked filesystem that allows sharing a
filesystem between many computers to allow easy access to
the files from all of them.</P
></DD
><DT
><B
>smbfs</B
></DT
><DD
><P
>A networks filesystem which allows sharing
of a filesystem with an MS Windows computer. It is
compatible with the Windows file sharing protocols.
</P
></DD
><DT
><B
>hpfs</B
></DT
><DD
><P
>The OS/2 filesystem.
</P
></DD
><DT
><B
>sysv</B
></DT
><DD
><P
>SystemV/386, Coherent, and Xenix filesystems.
</P
></DD
><DT
><B
>NTFS</B
></DT
><DD
><P
>The most advanced Microsoft journaled filesystem
providing faster file access and stability over previous
Microsoft filesystems.
</P
></DD
></DL
></DIV
>
</P
><P
>The choice of filesystem to use depends on the situation. If
compatibility or other reasons make one of the non-native
filesystems necessary, then that one must be used. If one can
choose freely, then it is probably wisest to use ext3, since it has
all the features of ext2, and is a journaled filesystem. For more
information on filesystems, see <A
HREF="filesystems.html#FS-COMPARE"
>Section 5.10.6</A
>. You
can also read the Filesystems HOWTO located at
<A
HREF="http://www.tldp.org/HOWTO/Filesystems-HOWTO.html"
TARGET="_top"
> http://www.tldp.org/HOWTO/Filesystems-HOWTO.html</A
></P
><P
>There is also the proc filesystem, usually accessible as
the <TT
CLASS="FILENAME"
>/proc</TT
> directory, which is not really a
filesystem at all, even though it looks like one. The proc
filesystem makes it easy to access certain kernel data structures,
such as the process list (hence the name). It makes these data
structures look like a filesystem, and that filesystem can be
manipulated with all the usual file tools. For example, to get a
listing of all processes one might use the command
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
><TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>ls -l /proc</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>total 0
dr-xr-xr-x 4 root root 0 Jan 31 20:37 1
dr-xr-xr-x 4 liw users 0 Jan 31 20:37 63
dr-xr-xr-x 4 liw users 0 Jan 31 20:37 94
dr-xr-xr-x 4 liw users 0 Jan 31 20:37 95
dr-xr-xr-x 4 root users 0 Jan 31 20:37 98
dr-xr-xr-x 4 liw users 0 Jan 31 20:37 99
-r--r--r-- 1 root root 0 Jan 31 20:37 devices
-r--r--r-- 1 root root 0 Jan 31 20:37 dma
-r--r--r-- 1 root root 0 Jan 31 20:37 filesystems
-r--r--r-- 1 root root 0 Jan 31 20:37 interrupts
-r-------- 1 root root 8654848 Jan 31 20:37 kcore
-r--r--r-- 1 root root 0 Jan 31 11:50 kmsg
-r--r--r-- 1 root root 0 Jan 31 20:37 ksyms
-r--r--r-- 1 root root 0 Jan 31 11:51 loadavg
-r--r--r-- 1 root root 0 Jan 31 20:37 meminfo
-r--r--r-- 1 root root 0 Jan 31 20:37 modules
dr-xr-xr-x 2 root root 0 Jan 31 20:37 net
dr-xr-xr-x 4 root root 0 Jan 31 20:37 self
-r--r--r-- 1 root root 0 Jan 31 20:37 stat
-r--r--r-- 1 root root 0 Jan 31 20:37 uptime
-r--r--r-- 1 root root 0 Jan 31 20:37
version</TT
>
<TT
CLASS="PROMPT"
>$</TT
></PRE
></FONT
></TD
></TR
></TABLE
>
(There will be a few extra files that don't correspond to
processes, though. The above example has been shortened.)</P
><P
>Note that even though it is called a filesystem, no part of
the proc filesystem touches any disk. It exists only in the
kernel's imagination. Whenever anyone tries to look at any part of
the proc filesystem, the kernel makes it look as if the part existed
somewhere, even though it doesn't. So, even though there is a
multi-megabyte <TT
CLASS="FILENAME"
>/proc/kcore</TT
> file, it doesn't
take any disk space. </P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="USE-WHICH-FS"
></A
>5.10.3. Which filesystem should be used?</H2
><P
>There is usually little point in using many different
filesystems. Currently, ext3 is the most popular filesystem, because
it is a journaled filesystem. Currently it is probably the wisest
choice. Reiserfs is another popular choice because it to is journaled.
Depending on the overhead for bookkeeping structures, speed, (perceived)
reliability, compatibility, and various other reasons, it may be
advisable to use another file system. This needs to be decided on a
case-by-case basis.</P
><P
> A filesystem that uses journaling is also called a journaled
filesystem. A journaled filesystem maintains a log, or journal, of
what has happened on a filesystem. In the event of a system crash, or
if your 2 year old son hits the power button like mine loves to do, a
journaled filesystem is designed to use the filesystem's logs to recreate
unsaved and lost data. This makes data loss much less likely and
will likely become a standard feature in Linux filesystems. However,
do not get a false sense of security from this. Like everything
else, errors can arise. Always make sure to back up your data in the
event of an emergency.
</P
><P
>See <A
HREF="filesystems.html#FS-COMPARE"
>Section 5.10.6</A
> for more details about the
features of the different filesystem types.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="CREATE-FS"
></A
>5.10.4. Creating a filesystem</H2
><P
>Filesystems are created, i.e., initialized, with the
<B
CLASS="COMMAND"
>mkfs</B
> command. There is actually a separate
program for each filesystem type. <B
CLASS="COMMAND"
>mkfs</B
> is just a
front end that runs the appropriate program depending on the desired
filesystem type. The type is selected with the
<TT
CLASS="OPTION"
>-t fstype</TT
> option.</P
><P
>The programs called by <B
CLASS="COMMAND"
>mkfs</B
> have slightly
different command line interfaces. The common and most important
options are summarized below; see the manual pages for more.
<DIV
CLASS="GLOSSLIST"
><DL
><DT
><B
><TT
CLASS="OPTION"
>-t fstype</TT
></B
></DT
><DD
><P
> Select the type of the filesystem.
</P
></DD
><DT
><B
><TT
CLASS="OPTION"
>-c</TT
></B
></DT
><DD
><P
> Search for bad blocks and initialize the bad
block list accordingly.
</P
></DD
><DT
><B
>-l filename</B
></DT
><DD
><P
> Read the initial bad block list from the name file.
</P
></DD
></DL
></DIV
>
</P
><P
>There are also many programs written to add specific options
when creating a specific filesystem. For example
<B
CLASS="COMMAND"
>mkfs.ext3</B
> adds a <B
CLASS="COMMAND"
>-b</B
> option to
allow the administrator to specify what block size should be used.
Be sure to find out if there is a specific program available for the
filesystem type you want to use. For more information on determining
what block size to use please see
<A
HREF="filesystems.html#FS-BLOCK-SIZE"
>Section 5.10.5</A
>.</P
><P
>To create an ext2 filesystem on a floppy, one would give the
following commands:
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
><TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>fdformat -n /dev/fd0H1440</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>Double-sided, 80 tracks, 18 sec/track. Total capacity
1440 KB.
Formatting ... done</TT
>
<TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>badblocks /dev/fd0H1440 1440 $>$
bad-blocks</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>mkfs.ext2 -l bad-blocks
/dev/fd0H1440</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>mke2fs 0.5a, 5-Apr-94 for EXT2 FS 0.5, 94/03/10
360 inodes, 1440 blocks
72 blocks (5.00%) reserved for the super user
First data block=1
Block size=1024 (log=0)
Fragment size=1024 (log=0)
1 block group
8192 blocks per group, 8192 fragments per group
360 inodes per group
Writing inode tables: done
Writing superblocks and filesystem accounting information:
done</TT
>
<TT
CLASS="PROMPT"
>$</TT
></PRE
></FONT
></TD
></TR
></TABLE
>
First, the floppy was formatted (the <TT
CLASS="OPTION"
>-n</TT
> option
prevents validation, i.e., bad block checking). Then bad blocks
were searched with <B
CLASS="COMMAND"
>badblocks</B
>, with the output
redirected to a file, <TT
CLASS="FILENAME"
>bad-blocks</TT
>. Finally, the
filesystem was created, with the bad block list initialized
by whatever <B
CLASS="COMMAND"
>badblocks</B
> found.</P
><P
>The <TT
CLASS="OPTION"
>-c</TT
> option could have been used with
<B
CLASS="COMMAND"
>mkfs</B
> instead of <B
CLASS="COMMAND"
>badblocks</B
>
and a separate file. The example below does that.
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
><TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>mkfs.ext2 -c
/dev/fd0H1440</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>mke2fs 0.5a, 5-Apr-94 for EXT2 FS 0.5, 94/03/10
360 inodes, 1440 blocks
72 blocks (5.00%) reserved for the super user
First data block=1
Block size=1024 (log=0)
Fragment size=1024 (log=0)
1 block group
8192 blocks per group, 8192 fragments per group
360 inodes per group
Checking for bad blocks (read-only test): done
Writing inode tables: done
Writing superblocks and filesystem accounting information:
done</TT
>
<TT
CLASS="PROMPT"
>$</TT
></PRE
></FONT
></TD
></TR
></TABLE
>
The <TT
CLASS="OPTION"
>-c</TT
> option is more convenient than a separate
use of <B
CLASS="COMMAND"
>badblocks</B
>, but
<B
CLASS="COMMAND"
>badblocks</B
> is necessary for checking
after the filesystem has been created.</P
><P
>The process to prepare filesystems on hard disks or
partitions is the same as for floppies, except that the formatting
isn't needed.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FS-BLOCK-SIZE"
></A
>5.10.5. Filesystem block size</H2
><P
>The block size specifies size that the filesystem will use
to read and write data. Larger block sizes will help improve disk
I/O performance when using large files, such as databases. This
happens because the disk can read or write data for a longer period
of time before having to search for the next block.</P
><P
>On the downside, if you are going to have a lot of smaller
files on that filesystem, like the <TT
CLASS="FILENAME"
>/etc</TT
>, there
the potential for a lot of wasted disk space.</P
><P
>For example, if you set your block size to 4096, or 4K, and
you create a file that is 256 bytes in size, it will still consume
4K of space on your harddrive. For one file that may seem trivial,
but when your filesystem contains hundreds or thousands of files,
this can add up.</P
><P
>Block size can also effect the maximum supported file size
on some filesystems. This is because many modern filesystem are
limited not by block size or file size, but by the number of blocks.
Therefore you would be using a
"block size * max # of blocks = max block size" formula.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FS-COMPARE"
></A
>5.10.6. Filesystem comparison</H2
><P
> <DIV
CLASS="TABLE"
><A
NAME="AEN2790"
></A
><P
><B
>Table 5-1. Comparing Filesystem Features</B
></P
><TABLE
BORDER="1"
CLASS="CALSTABLE"
><THEAD
><TR
><TH
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>FS Name</TH
><TH
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Year Introduced</TH
><TH
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Original OS</TH
><TH
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Max File Size</TH
><TH
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Max FS Size</TH
><TH
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Journaling</TH
></TR
></THEAD
><TBODY
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>FAT16</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1983</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>MSDOS V2</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>4GB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16MB to 8GB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>N</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>FAT32</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1997</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Windows 95</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>4GB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>8GB to 2TB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>N</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>HPFS</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1988</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>OS/2</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>4GB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>2TB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>N</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>NTFS</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1993</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Windows NT</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Y</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>HFS+</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1998</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Mac OS</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>8EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>?</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>N</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>UFS2
</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>2002</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>FreeBSD</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>512GB to 32PB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1YB </TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>N</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>ext2</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1993</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Linux</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16GB to 2TB4</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>2TB to 32TB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>N</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>ext3</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1999</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Linux</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16GB to 2TB4</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>2TB to 32TB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Y</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>ReiserFS3
</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>2001</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Linux</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>8TB8</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16TB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Y</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>ReiserFS4</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>2005</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Linux</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>?</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>?</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Y</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>XFS</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1994</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>IRIX</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>9EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>9EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Y</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>JFS</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>?</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>AIX</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>8EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>512TB to 4PB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Y</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>VxFS
</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1991</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>SVR4.0</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>?</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Y</TD
></TR
><TR
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>ZFS</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>2004</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>Solaris 10</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>1YB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>16EB</TD
><TD
WIDTH="17%"
ALIGN="LEFT"
VALIGN="TOP"
>N</TD
></TR
></TBODY
></TABLE
></DIV
></P
><P
>Legend
<DIV
CLASS="TABLE"
><A
NAME="AEN2949"
></A
><P
><B
>Table 5-2. Sizes</B
></P
><TABLE
BORDER="1"
CLASS="CALSTABLE"
><TBODY
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Kilobyte - KB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 Bytes</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Megabyte - MB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 KBs</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Gigabyte - GB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 MBs</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Terabyte - TB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 GBs</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Petabyte - PB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 TBs</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Exabyte - EB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 PBs</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Zettabyte - ZB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 EBs</TD
></TR
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
>Yottabyte - YB</TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
>1024 ZBs</TD
></TR
></TBODY
></TABLE
></DIV
>
</P
><P
>It should be noted that Exabytes, Zettabytes, and Yottabytes
are rarely encountered, if ever. There is a current estimate that
the worlds printed material is equal to 5 Exabytes. Therefore, some
of these filesystem limitations are considered by many as
theoretical. However, the filesystem software has been written
with these capabilities.</P
><P
>For more detailed information you can visit
<A
HREF="http://en.wikipedia.org/wiki/Comparison_of_file_systems"
TARGET="_top"
> http://en.wikipedia.org/wiki/Comparison_of_file_systems</A
>.
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="MOUNT-AND-UMOUNT"
></A
>5.10.7. Mounting and unmounting</H2
><P
>Before one can use a filesystem, it has to be
<I
CLASS="GLOSSTERM"
>mounted</I
>. The operating system then does
various bookkeeping things to make sure that everything works. Since
all files in UNIX are in a single directory tree, the mount
operation will make it look like the contents of the new filesystem
are the contents of an existing subdirectory in some already mounted
filesystem.</P
><P
>For example, <A
HREF="filesystems.html#HD-MOUNT-ROOT"
>Figure 5-3</A
> shows three
separate filesystems, each with their own root directory. When the
last two filesystems are mounted below <TT
CLASS="FILENAME"
>/home</TT
>
and <TT
CLASS="FILENAME"
>/usr</TT
>, respectively, on the first
filesystem, we can get a single directory tree, as in
<A
HREF="filesystems.html#HD-MOUNT-ALL"
>Figure 5-4</A
>.</P
><DIV
CLASS="FIGURE"
><A
NAME="HD-MOUNT-ROOT"
></A
><P
><B
>Figure 5-3. Three separate filesystems.</B
></P
><P
><IMG
SRC="hd-mount-separate.png"></P
></DIV
><DIV
CLASS="FIGURE"
><A
NAME="HD-MOUNT-ALL"
></A
><P
><B
>Figure 5-4. <TT
CLASS="FILENAME"
>/home</TT
> and <TT
CLASS="FILENAME"
>/usr</TT
>
have been
mounted.</B
></P
><P
><IMG
SRC="hd-mount-mounted.png"></P
></DIV
><P
>The mounts could be done as in the following example:
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
><TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>mount /dev/hda2 /home</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>mount /dev/hda3 /usr</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
></PRE
></FONT
></TD
></TR
></TABLE
>
The <B
CLASS="COMMAND"
>mount</B
> command takes two arguments. The first
one is the device file corresponding to the disk or partition
containing the filesystem. The second one is the directory below
which it will be mounted. After these commands the contents of the
two filesystems look just like the contents of the
<TT
CLASS="FILENAME"
>/home</TT
> and <TT
CLASS="FILENAME"
>/usr</TT
>
directories, respectively. One would then say that
<TT
CLASS="FILENAME"
>/dev/hda2</TT
> <I
CLASS="GLOSSTERM"
>is mounted
on</I
> <TT
CLASS="FILENAME"
>/home</TT
>'', and similarly for
<TT
CLASS="FILENAME"
>/usr</TT
>. To look at either filesystem, one would
look at the contents of the directory on which it has been mounted,
just as if it were any other directory. Note the difference between
the device file, <TT
CLASS="FILENAME"
>/dev/hda2</TT
>, and the mounted-on
directory, <TT
CLASS="FILENAME"
>/home</TT
>. The device file gives access
to the raw contents of the disk, the mounted-on directory gives
access to the files on the disk. The mounted-on directory is called
the <I
CLASS="GLOSSTERM"
>mount point</I
>.</P
><P
>Linux supports many filesystem types.
<B
CLASS="COMMAND"
>mount</B
> tries to guess the type of the filesystem.
You can also use the <TT
CLASS="OPTION"
>-t fstype</TT
> option to specify
the type directly; this is sometimes necessary, since the heuristics
<B
CLASS="COMMAND"
>mount</B
> uses do not always work. For example, to
mount an MS-DOS floppy, you could use the following command:
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
> <TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>mount -t msdos /dev/fd0
/floppy</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
>
</PRE
></FONT
></TD
></TR
></TABLE
>
</P
><P
>The mounted-on directory need not be empty, although it
must exist. Any files in it, however, will be inaccessible by name
while the filesystem is mounted. (Any files that have already been
opened will still be accessible. Files that have hard links from
other directories can be accessed using those names.) There is no
harm done with this, and it can even be useful. For instance, some
people like to have <TT
CLASS="FILENAME"
>/tmp</TT
> and
<TT
CLASS="FILENAME"
>/var/tmp</TT
> synonymous, and make
<TT
CLASS="FILENAME"
>/tmp</TT
> be a symbolic link to
<TT
CLASS="FILENAME"
>/var/tmp</TT
>. When the system is booted, before
the <TT
CLASS="FILENAME"
>/var</TT
> filesystem is mounted, a
<TT
CLASS="FILENAME"
>/var/tmp</TT
> directory residing on the root
filesystem is used instead. When <TT
CLASS="FILENAME"
>/var</TT
> is
mounted, it will make the <TT
CLASS="FILENAME"
>/var/tmp</TT
> directory
on the root filesystem inaccessible. If
<TT
CLASS="FILENAME"
>/var/tmp</TT
> didn't exist on the root filesystem,
it would be impossible to use temporary files
before mounting <TT
CLASS="FILENAME"
>/var</TT
>.</P
><P
>If you don't intend to write anything to the filesystem, use
the <TT
CLASS="OPTION"
>-r</TT
> switch for <B
CLASS="COMMAND"
>mount</B
> to do a
<I
CLASS="GLOSSTERM"
>read-only mount</I
>. This will make the kernel
stop any attempts at writing to the filesystem, and will also stop
the kernel from updating file access times in the inodes. Read-only
mounts are necessary for unwritable media, e.g., CD-ROMs.</P
><P
>The alert reader has already noticed a slight
logistical problem. How is the first filesystem (called the
<I
CLASS="GLOSSTERM"
>root filesystem</I
>, because it contains the root
directory) mounted, since it obviously can't be mounted on another
filesystem? Well, the answer is that it is done by magic.
The root filesystem is magically mounted at boot time, and one can
rely on it to always be mounted. If the root filesystem can't be
mounted, the system does not boot. The name of the filesystem that
is magically mounted as root is either compiled into the kernel, or
set using LILO or <B
CLASS="COMMAND"
>rdev</B
>.</P
><P
>For more information, see the kernel source or the Kernel
Hackers' Guide.</P
><P
>The root filesystem is usually first mounted read-only.
The startup scripts will then run <B
CLASS="COMMAND"
>fsck</B
> to verify
its validity, and if there are no problems, they will
<I
CLASS="GLOSSTERM"
>re-mount</I
> it so that writes will also be
allowed. <B
CLASS="COMMAND"
>fsck</B
> must not be run on a mounted
filesystem, since any changes to the filesystem while
<B
CLASS="COMMAND"
>fsck</B
> is running <EM
>will</EM
> cause
trouble. Since the root filesystem is mounted read-only while
it is being checked, <B
CLASS="COMMAND"
>fsck</B
> can fix any problems
without worry, since the remount operation will flush
any metadata that the filesystem keeps in memory.</P
><P
>On many systems there are other filesystems that should
also be mounted automatically at boot time. These are specified
in the <TT
CLASS="FILENAME"
>/etc/fstab</TT
> file; see the fstab man
page for details on the format. The details of exactly when the
extra filesystems are mounted depend on many factors, and can be
configured by each administrator if need be; see
<A
HREF="boots-and-shutdowns.html"
>Chapter 8</A
>.</P
><P
>When a filesystem no longer needs to be mounted, it can be
unmounted with <B
CLASS="COMMAND"
>umount</B
>.
<B
CLASS="COMMAND"
>umount</B
> takes one argument:
either the device file or the mount point.
For example, to unmount the directories of
the previous example, one could use the commands
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
><TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>umount /dev/hda2</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>umount /usr</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
></PRE
></FONT
></TD
></TR
></TABLE
>
</P
><P
>See the man page for further instructions on how to
use the command. It is imperative that you always unmount a mounted
floppy. <EM
>Don't just pop the floppy out of the
drive!</EM
> Because of disk caching, the data is not
necessarily written to the floppy until you unmount it, so removing
the floppy from the drive too early might cause the contents to
become garbled. If you only read from the floppy, this is not very
likely, but if you write, even accidentally,
the result may be catastrophic.</P
><P
>Mounting and unmounting requires super user privileges, i.e.,
only root can do it. The reason for this is that if any user can
mount a floppy on any directory, then it is rather easy to create a
floppy with, say, a Trojan horse disguised as
<TT
CLASS="FILENAME"
>/bin/sh</TT
>, or any other often used program.
However, it is often necessary to allow users to use floppies, and
there are several ways to do this:
<P
></P
><UL
><LI
><P
>Give the users the root password. This is
obviously bad security, but is the easiest solution. It works well
if there is no need for security anyway, which is the case
on many non-networked, personal systems.</P
></LI
><LI
><P
>Use a program such as <B
CLASS="COMMAND"
>sudo</B
> to
allow users to use mount. This is still bad security, but doesn't
directly give super user privileges to everyone. It requires several
seconds of hard thinking on the users' behalf. Furthermore
<B
CLASS="COMMAND"
>sudo</B
> can be configured to only allow users to
execute certain commands. See the sudo(8), sudoers(5), and visudo(8)
manual pages.
</P
></LI
><LI
><P
>Make the users use <B
CLASS="COMMAND"
>mtools</B
>, a
package for manipulating MS-DOS filesystems, without mounting them.
This works well if MS-DOS floppies are all that is needed, but is
rather awkward otherwise.
</P
></LI
><LI
><P
>List the floppy devices and their allowable mount
points together with the suitable options in
<TT
CLASS="FILENAME"
>/etc/fstab</TT
>.
</P
></LI
></UL
>
The last alternative can be implemented by adding a line like the
following to the <TT
CLASS="FILENAME"
>/etc/fstab</TT
> file:
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
> /dev/fd0 /floppy msdos user,noauto 0 0
</PRE
></FONT
></TD
></TR
></TABLE
>
The columns are: device file to mount, directory to mount on,
filesystem type, options, backup frequency (used by
<B
CLASS="COMMAND"
>dump</B
>), and <B
CLASS="COMMAND"
>fsck</B
> pass number
(to specify the order in which filesystems should be checked
upon boot; 0 means no check).</P
><P
>The <TT
CLASS="OPTION"
>noauto</TT
> option stops this mount to be done
automatically when the system is started (i.e., it stops
<B
CLASS="COMMAND"
>mount -a</B
> from mounting it). The
<TT
CLASS="OPTION"
>user</TT
> option allows any user to mount the
filesystem, and, because of security reasons, disallows execution of
programs (normal or setuid) and interpretation of device files from
the mounted filesystem. After this, any user can mount a floppy with
an msdos filesystem with the following command:
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
> <TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>mount /floppy</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
>
</PRE
></FONT
></TD
></TR
></TABLE
>
The floppy can (and needs to, of course) be unmounted with
the corresponding <B
CLASS="COMMAND"
>umount</B
> command.</P
><P
>If you want to provide access to several types of floppies,
you need to give several mount points. The settings can be
different for each mount point. For example, to give access to both
MS-DOS and ext2 floppies, you could have the following to lines in
<TT
CLASS="FILENAME"
>/etc/fstab</TT
>:
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
> /dev/fd0 /mnt/dosfloppy msdos user,noauto 0 0
/dev/fd0 /mnt/ext2floppy ext2 user,noauto 0 0
</PRE
></FONT
></TD
></TR
></TABLE
>
The alternative is to just add one line similar to the following:
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
> /dev/fd0 /mnt/floppy auto user,noauto 0 0
</PRE
></FONT
></TD
></TR
></TABLE
>
The "auto" option in the filesystem type column allows the mount command
to query the filesystem and try to determine what type it is itself. This
option won't work on all filesystem types, but works fine on the more common
ones.</P
><P
>For MS-DOS filesystems (not just floppies), you probably want to
restrict access to it by using the <TT
CLASS="OPTION"
>uid</TT
>,
<TT
CLASS="OPTION"
>gid</TT
>, and <TT
CLASS="OPTION"
>umask</TT
> filesystem options,
described in detail on the <B
CLASS="COMMAND"
>mount</B
> manual page. If
you aren't careful, mounting an MS-DOS filesystem gives everyone at
least read access to the files in it, which
is not a good idea.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN3099"
></A
>5.10.8. Filesystem Security</H2
><P
>TO BE ADDED</P
><P
>This section will describe mount options and how to use them
in <TT
CLASS="FILENAME"
>/etc/fstab</TT
> to provide additional system
security.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FSCK"
></A
>5.10.9. Checking filesystem integrity with
<B
CLASS="COMMAND"
>fsck</B
></H2
><P
>Filesystems are complex creatures, and as such, they
tend to be somewhat error-prone. A filesystem's correctness and
validity can be checked using the <B
CLASS="COMMAND"
>fsck</B
> command.
It can be instructed to repair any minor problems it finds, and to
alert the user if there any unrepairable problems. Fortunately, the
code to implement filesystems is debugged quite effectively, so
there are seldom any problems at all, and they are usually caused by
power failures, failing hardware, or operator errors;
for example, by not shutting down the system properly.</P
><P
>Most systems are setup to run <B
CLASS="COMMAND"
>fsck</B
>
automatically at boot time, so that any errors are detected (and
hopefully corrected) before the system is used. Use of a corrupted
filesystem tends to make things worse: if the data structures are
messed up, using the filesystem will probably mess them up even
more, resulting in more data loss. However, <B
CLASS="COMMAND"
>fsck</B
>
can take a while to run on big filesystems, and since errors almost
never occur if the system has been shut down properly, a couple of
tricks are used to avoid doing the checks in such cases. The first
is that if the file <TT
CLASS="FILENAME"
>/etc/fastboot</TT
> exists, no
checks are made. The second is that the ext2 filesystem has a
special marker in its superblock that tells whether the filesystem
was unmounted properly after the previous mount. This allows
<B
CLASS="COMMAND"
>e2fsck</B
> (the version of <B
CLASS="COMMAND"
>fsck</B
>
for the ext2 filesystem) to avoid checking the filesystem if the
flag indicates that the unmount was done (the assumption being that
a proper unmount indicates no problems). Whether the
<TT
CLASS="FILENAME"
>/etc/fastboot</TT
> trick works on your system
depends on your startup scripts, but the ext2 trick works every time
you use <B
CLASS="COMMAND"
>e2fsck</B
>. It has to be explicitly bypassed
with an option to <B
CLASS="COMMAND"
>e2fsck</B
> to be avoided. (See
the <B
CLASS="COMMAND"
>e2fsck</B
> man page for
details on how.)</P
><P
>The automatic checking only works for the
filesystems that are mounted automatically at boot time. Use
<B
CLASS="COMMAND"
>fsck</B
> manually to check other filesystems,
e.g., floppies.</P
><P
>If <B
CLASS="COMMAND"
>fsck</B
> finds unrepairable problems,
you need either in-depth knowledge of how filesystems work in
general, and the type of the corrupt filesystem in particular, or
good backups. The latter is easy (although sometimes tedious) to
arrange, the former can sometimes be arranged via a friend, the
Linux newsgroups and mailing lists, or some other source of support,
if you don't have the know-how yourself. I'd like to tell you more
about it, but my lack of education and experience in this regard
hinders me. The <B
CLASS="COMMAND"
>debugfs</B
>
program by Theodore Ts'o should be useful.</P
><P
><B
CLASS="COMMAND"
>fsck</B
> must only be run on unmounted
filesystems, never on mounted filesystems (with the exception of the
read-only root during startup). This is because it accesses the raw
disk, and can therefore modify the filesystem without the operating
system realizing it. There <EM
>will</EM
>
be trouble, if the operating system is confused.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="BADBLOCKS"
></A
>5.10.10. Checking for disk errors with <B
CLASS="COMMAND"
>badblocks</B
></H2
><P
>It can be a good idea to periodically check for bad blocks.
This is done with the <B
CLASS="COMMAND"
>badblocks</B
> command. It
outputs a list of the numbers of all bad blocks it can find. This
list can be fed to <B
CLASS="COMMAND"
>fsck</B
> to be recorded in the
filesystem data structures so that the operating system won't try to
use the bad blocks for storing data. The following example will show
how this could be done.
<TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
> <TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>badblocks /dev/fd0H1440 1440 >
bad-blocks</B
></TT
>
<TT
CLASS="PROMPT"
>$</TT
> <TT
CLASS="USERINPUT"
><B
>fsck -t ext2 -l bad-blocks
/dev/fd0H1440</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>Parallelizing fsck version 0.5a (5-Apr-94)
e2fsck 0.5a, 5-Apr-94 for EXT2 FS 0.5, 94/03/10
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Check reference counts.
Pass 5: Checking group summary information.
/dev/fd0H1440: ***** FILE SYSTEM WAS MODIFIED *****
/dev/fd0H1440: 11/360 files, 63/1440 blocks</TT
>
<TT
CLASS="PROMPT"
>$</TT
>
</PRE
></FONT
></TD
></TR
></TABLE
>
If badblocks reports a block that was already used,
<B
CLASS="COMMAND"
>e2fsck</B
> will try to move the block to another
place. If the block was really bad, not just marginal, the
contents of the file may be corrupted.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FRAGMENTATION"
></A
>5.10.11. Fighting fragmentation?</H2
><P
>When a file is written to disk, it can't always be written
in consecutive blocks. A file that is not stored in consecutive
blocks is <I
CLASS="GLOSSTERM"
>fragmented</I
>. It takes longer to
read a fragmented file, since the disk's read-write head will have
to move more. It is desirable to avoid fragmentation, although it
is less of a problem in a system with a good buffer
cache with read-ahead.</P
><P
>Modern Linux filesystem keep fragmentation at a minimum
by keeping all blocks in a file close together, even if
they can't be stored in consecutive sectors. Some filesystems, like
ext3, effectively allocate the free block that is nearest to other blocks
in a file. Therefore it is not necessary to worry about fragmentation
in a Linux system.</P
><P
>In the earlier days of the ext2 filesystem, there was a concern
over file fragmentation that lead to the development of a
defragmentation program called, defrag. A copy of it can still be
downloaded at <A
HREF="http://www.go.dlr.de/linux/src/defrag-0.73.tar.gz"
TARGET="_top"
> http://www.go.dlr.de/linux/src/defrag-0.73.tar.gz</A
>. However,
it is HIGHLY recommended that you NOT use it. It was designed for
and older version of ext2, and has not bee updated since 1998! I
only mention it here for references purposes.</P
><P
>There are many MS-DOS defragmentation programs that
move blocks around in the filesystem to remove fragmentation. For
other filesystems, defragmentation must be done by backing up the
filesystem, re-creating it, and restoring the files from backups.
Backing up a filesystem before defragmenting is a good idea for all
filesystems, since many things can go wrong during the
defragmentation.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FS-OTHER-TOOLS"
></A
>5.10.12. Other tools for all filesystems</H2
><P
>Some other tools are also useful for managing filesystems.
<B
CLASS="COMMAND"
>df</B
> shows the free disk space on one or more
filesystems; <B
CLASS="COMMAND"
>du</B
> shows how much disk space a
directory and all its files contain. These can be used to hunt down
disk space wasters. Both have manual pages which detail
the (many) options which can be used.</P
><P
><B
CLASS="COMMAND"
>sync</B
> forces all unwritten blocks
in the buffer cache (see <A
HREF="buffer-cache.html"
>Section 6.6</A
>) to be
written to disk. It is seldom necessary to do this by hand; the
daemon process <B
CLASS="COMMAND"
>update</B
> does this automatically.
It can be useful in catastrophes, for example if
<B
CLASS="COMMAND"
>update</B
> or its helper process
<B
CLASS="COMMAND"
>bdflush</B
> dies, or if you must turn off power
<EM
>now</EM
> and can't wait for
<B
CLASS="COMMAND"
>update</B
> to run. Again, there are manual pages.
The <B
CLASS="COMMAND"
>man</B
> is your very best friend in Linux. Its
cousin <B
CLASS="COMMAND"
>apropos</B
> is also very useful when you don't
know what the name of the command you want
is.</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="FS-EXT3-TOOLS"
></A
>5.10.13. Other tools for the ext2/ext3 filesystem</H2
><P
>In addition to the filesystem creator
(<B
CLASS="COMMAND"
>mke2fs</B
>) and checker (<B
CLASS="COMMAND"
>e2fsck</B
>)
accessible directly or via the filesystem type independent front
ends, the ext2
filesystem has some additional tools that can be useful.</P
><P
><B
CLASS="COMMAND"
>tune2fs</B
> adjusts filesystem parameters.
Some of the more interesting parameters are:
<P
></P
><UL
><LI
><P
> A maximal mount count. <B
CLASS="COMMAND"
>e2fsck</B
> enforces a check
when filesystem has been mounted too many times, even if the clean
flag is set. For a system that is used for developing or testing
the system, it might be a good idea to reduce this limit.
</P
></LI
><LI
><P
> A maximal time between checks. <B
CLASS="COMMAND"
>e2fsck</B
> can also
enforce a maximal time between two checks, even if the clean flag is
set, and the filesystem hasn't been mounted very often. This can be
disabled, however.
</P
></LI
><LI
><P
> Number of blocks reserved for root. Ext2 reserves some blocks for
root so that if the filesystem fills up, it is still possible to do
system administration without having to delete anything. The
reserved amount is by default 5 percent, which on most disks isn't
enough to be wasteful. However, for floppies there is no point in
reserving any blocks.
</P
></LI
></UL
>
See the <B
CLASS="COMMAND"
>tune2fs</B
> manual page for more
information.</P
><P
><B
CLASS="COMMAND"
>dumpe2fs</B
> shows information about an ext2 or ext3
filesystem, mostly from the superblock. Below is a sample output. Some
of the information in the output is technical and requires understanding
of how the filesystem works, but much of it is readily understandable
even for lay-admins.</P
><TABLE
BORDER="1"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="SCREEN"
><TT
CLASS="PROMPT"
>#</TT
> <TT
CLASS="USERINPUT"
><B
>dumpe2fs</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>dumpe2fs 1.32 (09-Nov-2002)
Filesystem volume name: /
Last mounted on: not available
Filesystem UUID: 51603f82-68f3-4ae7-a755-b777ff9dc739
Filesystem magic number: 0xEF53
Filesystem revision #: 1 (dynamic)
Filesystem features: has_journal filetype needs_recovery sparse_super
Default mount options: (none)
Filesystem state: clean
Errors behavior: Continue
Filesystem OS type: Linux
Inode count: 3482976
Block count: 6960153
Reserved block count: 348007
Free blocks: 3873525
Free inodes: 3136573
First block: 0
Block size: 4096
Fragment size: 4096
Blocks per group: 32768
Fragments per group: 32768
Inodes per group: 16352
Inode blocks per group: 511
Filesystem created: Tue Aug 26 08:11:55 2003
Last mount time: Mon Dec 22 08:23:12 2003
Last write time: Mon Dec 22 08:23:12 2003
Mount count: 3
Maximum mount count: -1
Last checked: Mon Nov 3 11:27:38 2003
Check interval: 0 (none)
Reserved blocks uid: 0 (user root)
Reserved blocks gid: 0 (group root)
First inode: 11
Inode size: 128
Journal UUID: none
Journal inode: 8
Journal device: 0x0000
First orphan inode: 655612
Group 0: (Blocks 0-32767)
Primary superblock at 0, Group descriptors at 1-2
Block bitmap at 3 (+3), Inode bitmap at 4 (+4)
Block bitmap at 3 (+3), Inode bitmap at 4 (+4)
Inode table at 5-515 (+5)
3734 free blocks, 16338 free inodes, 2 directories</TT
></PRE
></FONT
></TD
></TR
></TABLE
><P
><B
CLASS="COMMAND"
>debugfs</B
> is a filesystem debugger.
It allows direct access to the filesystem data structures stored on
disk and can thus be used to repair a disk that is so broken that
<B
CLASS="COMMAND"
>fsck</B
> can't fix it automatically. It has also been
known to be used to recover deleted files. However,
<B
CLASS="COMMAND"
>debugfs</B
> very much requires that you understand
what you're doing; a failure to understand can
destroy all your data.</P
><P
><B
CLASS="COMMAND"
>dump</B
> and <B
CLASS="COMMAND"
>restore</B
> can be
used to back up an ext2 filesystem. They are ext2 specific versions
of the traditional UNIX backup tools. See <A
HREF="backups.html"
>Section 12.1</A
>
for more information on backups.</P
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="partitions.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="disk-no-fs.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Partitions</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="disk-usage.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Disks without filesystems</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>
|