milyen fs jó pendrive-ra?

A kérdés röviden: van egy 64G méretű, <1 éves pendrive, linux alól használnám, nem gyakran. Milyen fs-t tegyek rá?

Rendes linux alól használható fs kéne rá, ami nem irkál rá feleslegesen. Szóval kell kisbetű nagybetű, kellenek posix jogok, kell felhasználó, group, symlink, minden ilyesmi. Access time frissítés nem kell.

Journal nem kell, ha összekuszálódik a fájlrendszer, leformázom és backupból visszatöltöm rá az egészet.

Laptopon ext4-et használok, ehhez illeszkedő valamit szeretnék. Mivel journal nem kell, magamtól az ext2 jutott az eszembe. Van esetleg más, ami jobb (régebben voltak ilyesmik, amik a blokkok egyenletes elhasználására is figyeltek, hogy ne dögöljön meg túl hamar a pendrive, ha egy fájlt (könyvtárat) sokszor írok. De nem figyeltem a témát, nem tudom, hogy ezek mostanában is kellenek-e még vagy már meghaladta ezt az egészet a modern tudomány

Még nem döntöttem, melyiket használom erre a célra, van egy USB2-es Kingston DT Micro darab (ez igen lassú), és egy USB3-as Sandisk. Feltételezem, csak a sebesség számít, kb. ugyanazt tudják.

Hozzászólások

Ext4 journal nélkül?
Ha rendes wear leveling-et szeretnél akkor nem pendrive-ot hanem SSD-t kellett volna venni. Van stick formában és külső lemez formájában is.

STEP 1: Unmount the file system partition whose journaling you wish to disable

Use the following command to unmount the partition on /dev/sda1 (let’s say it’s /opt):
umount /opt

NOTE: The command used above is umount and not unmount.

STEP 2: Disable journaling for the file system

Use the following command to disable journaling for an ext4 file system:
tune4fs -O ^has_journal /dev/sda1

STEP 3: Perform a file system check

Use the following command to perform a file system check. This is not strictly required, but is recommended for checking file system integrity after disabling journaling:
e4fsck –f /dev/sda1

STEP 4: Reboot

You may use the following command to reboot the Linux OS:
shutdown –r now

STEP 5: Verify that the file system has journaling disabled and the partition is mounted

After the host has rebooted, you may use the following commands to check if journaling is disabled for the filesystem and the partition is mounted:
dmesg | grep EXT4

Expected output similar to: EXT4-fs (dm-3): mounted filesystem without journal
df -h

http://cybergav.in/2011/11/15/how-to-disableenable-journaling-on-an-ext…