I am trying to mount a USB pen: ---------------------------- [angelo_user@zorro ~]$ sudo fdisk /dev/sde1 -l Device Boot Start End Blocks Id System /dev/sde1 32 31266815 15633392 c W95 FAT32 (LBA) ----------------------------
But I get the message : "mount: unknown filesystem type 'FAT32'"
when I try to mount it: ---------------------------- [angelo_user@zorro ~]$ [angelo_user@zorro ~]$ sudo mount --type FAT32 /dev/sde1 /media/tmp_USB1
mount: only root can use "--types" option [angelo_user@zorro ~]$ sudo mount -t FAT32 /dev/sde1 /media/tmp_USB1 [sudo] password for angelo_user: mount: unknown filesystem type 'FAT32' ----------------------------
*how we have to indicate the value 'FAT 32 in the -t parameter?*
thank you
Angelo