Tools
首页
画图
音乐
采集
记事
博客
实验室
登录
lypeng
146
文章
11
分类
46
记事
分类
生活-[23]
Linux-[24]
前端-[9]
数据库-[16]
PHP-[31]
git-[7]
其他-[6]
python-[20]
算法-[4]
React-Native-[4]
中草药-[2]
广告位1
广告位2
首页
/ Linux
返回列表
ubuntu18.04无法挂载U盘
阅读:490
发布:2020-01-08
作者:lypeng
挂载U盘报错如下: ``` mount -t vfat /dev/sdb1 /mnt/usb mount: /mnt/usb: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error. ``` fat格式的解决方法: ``` sudo add-apt-repository universe sudo apt update sudo apt install exfat-fuse exfat-utils ``` 原文内容: > How to Mount exFAT Drive on Ubuntu Linux > To be able to mount exFAT filesystem on Ubuntu you’ll need to install the free FUSE exFAT module and tools which provide a full-featured exFAT file system implementation for Unix-like systems. > Before installing the packages make sure the Universe repository is enabled on your system. Open your terminal either by using the Ctrl+Alt+T keyboard shortcut or by clicking on the terminal icon and type: > `sudo add-apt-repository universe` > Copy > Once the repository is enabled update the packages index and install the exfat-fuse and exfat-utilspackages using the following commands: > `sudo apt update` > `sudo apt install exfat-fuse exfat-utils` 文章来源: https://linuxize.com/post/how-to-mount-an-exfat-drive-on-ubuntu/?_blank https://blog.csdn.net/superjunenaruto/article/details/97526654?_blank 如果你的U盘是NTFS格式的,参考如下:(没有测试) Linux挂载NTFS格式的U盘:https://blog.csdn.net/vic_qxz/article/details/80437140?_blank
------本文结束
感谢阅读------
上一篇:
centos7安装rabbitmq
下一篇:没有了