Error mounting systems managed device
/dev/sdb1
:Command-line
mount"/mnt/5617-A6EF"
exited with non-zero exit status32:mount:mnt/5617-A6EF:unknown filesystem type 'exfat'.
How to fix this?
Error mounting systems managed device
/dev/sdb1
:Command-line
mount"/mnt/5617-A6EF"
exited with non-zero exit status32:mount:mnt/5617-A6EF:unknown filesystem type 'exfat'.
How to fix this?
As mentioned in the error:
unknown filesystem type 'exfat'
This means that you don't have the exfat file system installed.
To install exfat, do:
sudo apt-get install exfat-fuse exfat-utils
You should now be able to mount your external HDD.
Also, you might need to reboot your PC for the changes to take effect.
modprobe
might be all that's required, or user logging out & back in if it's a desktop related change. Upgrading the kernel is even possible without rebooting.
– Xen2050
Jan 05 '18 at 00:56
sudo apt-get install exfat-fuse exfat-utils
from a terminal should do it. – Soren A Jan 04 '18 at 11:19