【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的内核版本有关。
后来项目原因重装双系统,内核版本可能有更改,使用以上脚本可以挂在移动硬盘。
(base) zrj@zrj:~$ uname -a Linux xxx 4.15.0-142-generic #146~16.04.1-Ubuntu SMP Tue Apr 13 09:27:15 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
参考
1. ubuntu挂载移动硬盘出现错误;
完
各美其美,美美与共,不和他人作比较,不对他人有期待,不批判他人,不钻牛角尖。
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 地球OL攻略 —— 某应届生求职总结
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 提示词工程——AI应用必不可少的技术
· .NET周刊【3月第1期 2025-03-02】
2019-01-09 【error】'isnan' was not declared in this scope
2019-01-09 【opencv基础】图像的几何变换