3

Whenever I try to mount flash drives or hardrives I get the following message:

Error mounting /dev/sdb1 at /media/tony/0457-C92C: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,iocharset=utf8,namecase=0,errors=remount-ro,umask=0077" "/dev/sdb1" "/media/tony/0457-C92C"' exited with non-zero exit status 32: mount: unknown filesystem type 'exfat'

Screenshot: SCreenshot with the message

What can I do to solve this?

Melebius
  • 11,431
  • 9
  • 52
  • 78
  • It seems this question is already answered here: https://askubuntu.com/questions/364270/mount-unknown-filesystem-exfat – rnt_42 Jun 22 '17 at 14:23

2 Answers2

8

You need to install the support for the Exfat filesystem; it's not installed by default.

sudo apt-get install exfat-fuse exfat-utils

See also "http://unixnme.blogspot.ro/2016/04/how-to-mount-exfat-partition-in-ubuntu.html" on the Unix and Me blog.

AlexP
  • 10,197
7

unknown filesystem type 'exfat'

You need to install exfat. Unfortunately it does not come preinstalled in Ubuntu.

sudo apt-get install exfat-fuse exfat-utils
pLumo
  • 26,947