这是我第一次尝试Linux,所以我什么都不知道,在ubuntu16.04上使用exFAT sd卡需要一些帮助。
首先,我使用闪存盘运行ubuntu,并使用UNetbootin来设置iso。在设置iso时,我保留了大约3GB的内存。
我试图做的是能够使用我的SD卡,但它说,它无法读取exFAT文件时,我插入它。
我试过:
sudo apt-get install exfat-fuse exfat-utils
但是它不起作用,这是输出:
ubuntu@ubuntu:~$ sudo apt-get install exfat-fuse exfat-utils
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package exfat-utils is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package exfat-fuse
E: Package 'exfat-utils' has no installation candidate
有人知道我做错了什么吗?如果你需要更多的信息来解决这个问题,请告诉我。
谢谢你的帮助
发布于 2016-11-07 10:30:03
要安装exfat-utils
和extfat-fuse
,需要启用universe
存储库:
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
关于最新的Ubuntu版本(@linolino回答和@paradite评论):
sudo add-apt-repository universe
更新并安装:
sudo apt-get update
sudo apt-get install exfat-fuse exfat-utils
发布于 2018-02-19 17:54:30
对我来说,同样的问题:
sudo apt-get install exfat-fuse exfat-utils
不幸的是,GAD3R的回答不起作用(不确定原因)
因此,正如paradite评论的那样,更简单的方法适用于我。
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install exfat-fuse exfat-utils
https://unix.stackexchange.com/questions/321494
复制相似问题