Você especifica o tipo de sistema de arquivos com a opção -t
. Conforme descrito em man mount
:
-t, --types fstype
The argument following the -t is used to indicate the filesystem
type. The filesystem types which are currently supported depend
on the running kernel. See /proc/filesystems and /lib/mod‐
ules/$(uname -r)/kernel/fs for a complete list of the filesys‐
tems. The most common are ext2, ext3, ext4, xfs, btrfs, vfat,
sysfs, proc, nfs and cifs.
Portanto, para montar uma unidade FAT32 (vfat), você executaria:
sudo mount -t vfat /dev/sdc /media/usb
No entanto, você não monta dispositivos, monta partições. O que você está procurando é provavelmente:
sudo mount /dev/sdc1 /media/usb
Ou, se ainda reclamar:
sudo mount -t vfat /dev/sdc1 /media/usb
Para mais detalhes, atualize sua pergunta com a saída de sudo fdisk -l /dev/sdc
.