前言
博主新到手一个三星的固态硬盘,插入不同的设备,并不能正常识别该设备,本文对此问题进行记录。
问题
Error mounting /dev/sda1 at /media/nvidia/Samsung_T5: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1001,gid=1001,iocharset=utf8,namecase=0,errors=remount-ro,umask=0077" "/dev/sda1" "/media/nvidia/Samsung_T5"' exited with non-zero exit status 32: mount: unknown filesystem type 'exfat'
原因
应该是与硬盘的type有关,可参考here;
sudo apt-get install exfat-fuse
这个方法在TX2和工作站上都可以解决该问题,但联想笔记本遇到这个问题,使用这种方法却不好使,不知什么原因,没有深究;
出现的错误
~$ sudo apt-get install exfat-fuse Reading package lists... Done Building dependency tree Reading state information... Done You might want to run 'apt-get -f install' to correct these: The following packages have unmet dependencies: linux-image-generic : Depends: linux-image-4.4.0-165-generic but it is not going to be installed or linux-image-unsigned-4.4.0-165-generic but it is not going to be installed linux-modules-extra-4.4.0-154-generic : Depends: linux-image-4.4.0-154-generic but it is not going to be installed or linux-image-unsigned-4.4.0-154-generic but it is not going to be installed linux-modules-extra-4.4.0-165-generic : Depends: linux-image-4.4.0-165-generic but it is not going to be installed or linux-image-unsigned-4.4.0-165-generic but it is not going to be installed E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
好像和linux的内核版本有关。
参考
1. ubuntu挂载移动硬盘出现错误;
完