fs.rst
changeset 2052 005dc5fcaa0f
parent 1947 a27340a6c3d0
child 2053 536155417c5e
equal deleted inserted replaced
2051:b517b191156b 2052:005dc5fcaa0f
    10 =============
    10 =============
    11 
    11 
    12 List of supported by current Linux kernel FSes::
    12 List of supported by current Linux kernel FSes::
    13 
    13 
    14   $ cat /proc/filesystems
    14   $ cat /proc/filesystems
       
    15 
       
    16 FS stats
       
    17 ========
       
    18 
       
    19 Free space::
       
    20 
       
    21   $ df
       
    22 
       
    23 Free space in MB::
       
    24 
       
    25   $ df -m
       
    26 
       
    27 Free space in human readable format::
       
    28 
       
    29   $ df -h
       
    30 
       
    31 Number of free nodes::
       
    32 
       
    33   $ df -i
       
    34 
       
    35 FS limits
       
    36 =========
       
    37 
       
    38 ``ext4`` uses 32-bit inode numbers so number of files limited to 2^32.
       
    39 
       
    40 ===== ==== ====== ======= ======= ========
       
    41    fs name  inode sub-dir    file fs total
       
    42 ===== ==== ====== ======= ======= ========
       
    43  ext2  255                  2 TiB   16 TiB
       
    44  ext3  255          32000   2 TiB   16 TiB
       
    45  ext4  255   2^32   64000  16 TiB   16 TiB
       
    46 fat32  255 268e+6    2^16   2 GiB    8 TiB
       
    47  ntfs  255   2^32          16 TiB  256 TiB
       
    48   xfs  255                100 TiB  100 TiB
       
    49  gfs2  255                100 TiB  100 TiB
       
    50 ===== ==== ====== ======= ======= ========
       
    51 
       
    52 https://en.wikipedia.org/wiki/Comparison_of_file_systems#Limits
       
    53   FS limits.
    15 
    54 
    16 Make label on FAT32 volume.
    55 Make label on FAT32 volume.
    17 ===========================
    56 ===========================
    18 
    57 
    19 The volume name can be up to 11 characters long::
    58 The volume name can be up to 11 characters long::