I've got a number of unordered folders on a memory stick, which my car stereo shows in order of their real position on the stick (i.e. same as ls -U) What's the easiest way of physically reordering these directories? (moving all directories to a 'tmp' folder and back seems to work via GUI, but not particularly elegant...)
UPDATE: re. FATSORT
fatsort (see answer below) seems to do the job nicely.
The order of actions is now:
1. sudo umount /media/USB_STICK_NAME
2. sudo blkid (which tells me the device: /dev/sdc1: LABEL="USB_STICK_NAME" ...)
3. sudo fatsort /dev/sdc1
fsck.ext<2,3> -Don it. as that would compact and sort the directories. but as it most likely fat32, i don't have a clue. – Dan D. Dec 16 '11 at 15:15