Mkfs: Unterschied zwischen den Versionen

Aus Foxwiki
JoergNolte (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
JoergNolte (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
Zeile 35: Zeile 35:
  mkfs        mkfs.cramfs  mkfs.ext2    mkfs.ext4    mkfs.minix  mkfs.ntfs     
  mkfs        mkfs.cramfs  mkfs.ext2    mkfs.ext4    mkfs.minix  mkfs.ntfs     
  mkfs.bfs    mkfs.exfat  mkfs.ext3    mkfs.fat    mkfs.msdos  mkfs.vfat
  mkfs.bfs    mkfs.exfat  mkfs.ext3    mkfs.fat    mkfs.msdos  mkfs.vfat
# '''mkfs''' /dev/sdb1
mke2fs 1.44.5 (15-Dec-2018)
Creating filesystem with 61293573 4k blocks and 15327232 inodes
Filesystem UUID: 95501238-e062-43ac-a92c-5d42444fa061
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000, 7962624, 11239424, 20480000, 23887872
Allocating group tables: done                           
Writing inode tables: done                           
Writing superblocks and filesystem accounting information: done


  # '''mkfs -t''' ext4 /dev/sdb1
  # '''mkfs -t''' ext4 /dev/sdb1

Version vom 1. Dezember 2020, 09:53 Uhr

mkfs make file system - dient der Erstellung eines Dateisystems

  • ist jedoch nur Front-End für die eigentlichen Programme zur Dateisystemerstellung


Syntax

mkfs [Optionen] [-t Typ] [Dateisystemoptionen] Gerät [Größe]

  • als Gerät können Festplattenpartitionen, aber auch Dateien angegeben werden
  • erfolgt über die Option -t keine Angabe, wird ein ext2-Dateisystem erstellt


Optionen

Option Beschreibung
-t --type gibt den Typ des zu erstellenden Dateisystems an
-v --verbose gibt ausführliche Meldungen aus, einschließlich aller dateisystemspezifischen Befehle
-h --help zeigt eine kurze Hilfe an und beendet das Programm


Beispiele

Eingabe von mkfs und zweimaliges Drücken der Tabulator-Taste listet die verfügbaren Dateisysteme auf:

# mkfs
mkfs         mkfs.cramfs  mkfs.ext2    mkfs.ext4    mkfs.minix   mkfs.ntfs    
mkfs.bfs     mkfs.exfat   mkfs.ext3    mkfs.fat     mkfs.msdos   mkfs.vfat


# mkfs /dev/sdb1
mke2fs 1.44.5 (15-Dec-2018)
Creating filesystem with 61293573 4k blocks and 15327232 inodes
Filesystem UUID: 95501238-e062-43ac-a92c-5d42444fa061
Superblock backups stored on blocks: 
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
        4096000, 7962624, 11239424, 20480000, 23887872
Allocating group tables: done                            
Writing inode tables: done                            
Writing superblocks and filesystem accounting information: done


# mkfs -t ext4 /dev/sdb1
mke2fs 1.44.5 (15-Dec-2018)
Creating filesystem with 61293573 4k blocks and 15327232 inodes
Filesystem UUID: 5d02f04a-ad69-459d-8d81-61ab9d7b25f5
Superblock backups stored on blocks: 
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
        4096000, 7962624, 11239424, 20480000, 23887872
Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (262144 blocks): done
Writing superblocks and filesystem accounting information: done