preface
The blogger has a new Samsung SSD, which can’t be identified by inserting different devices. This paper records this problem.
questions
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'
reasons
It should be related to the type of hard disk. Please refer to here
sudo apt-get install exfat-fuse
This method can solve this problem in TX2 and workstation, but Lenovo notebook encountered this problem, but it is not easy to use this method, I do not know what the reason is, there is no in-depth study
Error occurred
~$ 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).
It seems to have something to do with the kernel version of Linux
reference
1. There is an error in mounting the mobile hard disk on Ubuntu
end