Grüß euch,
Ich habe mir soeben meinen USB Stick von exFAT auf ext4 formatiert um ihn als Backup-Device für RaspiBackup nutzen zu können, aber er wird mir noch als exFAT angezeigt.
Was habe ich gemacht:
- USB Stick angesteckt (aigo Z398Pro 512GB - hab ich mal als Firmengeschenk bekommen)
- Sichergestellt dass er nicht gemountet ist :
Code
admin@raspberrypi:~ $ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sdc 8:32 0 465.8G 0 disk
└─sdc1 8:33 0 465.8G 0 part
- auf ext4 formatiert:
Code
admin@raspberrypi:~ $ sudo mkfs.ext4 /dev/sdc1
mke2fs 1.47.0 (5-Feb-2023)
/dev/sdc1 contains a exfat file system labelled 'USB Stick'
Proceed anyway? (y,N) y
Creating filesystem with 122095622 4k blocks and 30531584 inodes
Filesystem UUID: 9852a3e6-e61a-4ecb-967c-566c62021ae2
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
102400000
Allocating group tables: done
Writing inode tables: done
Creating journal (262144 blocks): done
Writing superblocks and filesystem accounting information: done
Display More
USB Stick mit fsck überprüft:
Wenn ich mir jetzt aber die Formatierung mit sudo fdisk -l ansehen steht, dass die Partition sdc1 das Dateisystem HPFS/NTFS/exFAT hat?
Code
Disk /dev/sdc: 465.76 GiB, 500107862016 bytes, 976773168 sectors
Disk model: aigo Z398Pro
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x55d440aa
Device Boot Start End Sectors Size Id Type
/dev/sdc1 8192 976773167 976764976 465.8G 7 HPFS/NTFS/exFAT
Wenn die den Stick erneut formatieren möchte, steht jedoch dass dieser bereits ext4 formatiert ist
Code
admin@raspberrypi:~ $ sudo mkfs.ext4 /dev/sdc1
mke2fs 1.47.0 (5-Feb-2023)
/dev/sdc1 contains a ext4 file system
created on Mon Feb 24 20:40:51 2025
Proceed anyway? (y,N) y
Creating filesystem with 122095622 4k blocks and 30531584 inodes
Filesystem UUID: e05d0e2e-9dc4-45df-ac1d-74dad0a3996e
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
102400000
Allocating group tables: done
Writing inode tables: done
Creating journal (262144 blocks): done
Writing superblocks and filesystem accounting information: done
Display More
Habe die Formatierung erneut durchlaufen lassen, jedoch gibt mir sudo fdisk -l die selbe Ausgabe aus wie oben.
Weiß jemand wieso? Ist das problematisch oder kann ich den Stick ohne Probleme als Backup-Medium nutzen?