Greetings! I found that mount no longer understands fstype list in the /etc/fstab after the migration to libmount: $ dd if=/dev/zero of=/tmp/disk bs=1M count=10 $ losetup /dev/loop0 /tmp/disk $ mkfs.ext3 /dev/loop0 $ grep loop0 /etc/fstab /dev/loop0 /media vfat,hfsplus,ext4,ext3,ext2 defaults 0 0 $ mount /media mount: unknown filesystem type 'vfat,hfsplus,ext4,ext3,ext2' But if we use deprecated mount: $ ./mount.deprecated -v /media /dev/loop0 on /media type ext4 (rw) Also new mount understands fstype list in options: $ mount -t vfat,hfsplus,ext4,ext3,ext2 /dev/loop0 /media -- Rgrds, legion -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html