This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.
Please visit our production wiki at https://wiki.gentoo.org
exFAT/pl
Warning: Display title "exFAT/pl" overrides earlier display title "ExFAT".
exFAT (Extended File Allocation Table), a Microsoft file system optimized for flash memory storage such as USB sticks, is available to Gentoo Linux systems through a FUSE module.
Instalacja
Kernel
Upewnij się, że wsparcie dla systemu plików w przestrzeni użytkownika (FUSE) jest włączone w jądrze:
File systems ---> <*> FUSE (Filesystem in Userspace) support
Emerge
Zainstaluj paczkę FUSE exfat:
root #
emerge --ask sys-fs/fuse-exfat
For filesystem creation and manipulation beyond that of the mount command it is necessary to install the sys-fs/exfat-utils package:
root #
emerge --ask sys-fs/exfat-utils
Usage
Formatowanie
By stworzyć system plików exFAT, użyj mkfs.exfat (lub komendę mkexfatfs, która jest równoznaczna):
root #
mkfs.exfat
mkexfatfs 1.2.1 Usage: mkfs.exfat [-i volume-id] [-n label] [-p partition-first-sector] [-s sectors-per-cluster] [-V] <device>
For instance, to create it on a removable device present at /dev/sde1 while assigning "Flash" as the file system label:
root #
mkfs.exfat -n Flash /dev/sde1
Montowanie
System plików może być następnie zamontowany przy pomocy komendy mount.exfat-fuse:
root #
mount.exfat-fuse
FUSE exfat 1.0.1 Usage: mount.exfat-fuse [-d] [-o options] [-v] <device> <dir>
For instance, to mount the file system created in the above example:
root #
mount.exfat-fuse /dev/sde1 /mnt/flash
By odmontować, po prostu użyj komendy umount:
root #
umount /mnt/flash
Sprawdzanie integralności
By sprawdzić integralność systemu plików exFAT, użyj fsck.exfat:
root #
fsck.exfat /dev/sde1