zoukankan      html  css  js  c++  java
  • 【linux基础】mount: unknown filesystem type 'exfat'

    前言
    博主新到手一个三星的固态硬盘,插入不同的设备,并不能正常识别该设备,本文对此问题进行记录。
    问题
    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挂载移动硬盘出现错误

  • 相关阅读:
    Java拾遗补缺
    Spring boot整合shiro权限管理
    Maven项目使用阿里云的Maven库
    Spring Boot设置上传文件大小
    mysql悲观锁中的共享锁和排他锁
    MySQL命令show full processlist
    log4j配置文件中的additivity属性
    每天一个liunx命令2之rz和sz命令
    数据库锁表及阻塞的原因和解决办法
    Java加密技术(一)—— HMACSHA1 加密算法
  • 原文地址:https://www.cnblogs.com/happyamyhope/p/12173774.html
Copyright © 2011-2022 走看看