I am trying to copy a micro sd (which was formatted by my mavic mini drone) mounted on a sd reader, and transfer the videos to my computer. I get this error:
"Unable to access "128 GB Volume" Error mounting/dev/sdc1 at/media/whooth2/3435-3234:unknown filesystem type 'exfat'
I have tried installing exFAT Support:
sudo apt-get install exfat-fuse exfat-utils
This came up:
wbooth2@wbooth2-desktop:~$ sudo apt-get install exfat-fuse-exfat-utils
[sudo] password for wbooth2:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package exfat-fuse-exfat-utils
wbooth2@wbooth2-desktop:~$
$ sudo apt-get install exfat-fuse exfat-utils
[sudo] password for wbooth2:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages have unmet dependencies:
libpython2.7 : Depends: libpython2.7-stdlib (= 2.7.17-1~18.04) but 2.7.15-4ubuntu4~18.04.2 is to be installed
python2.7 : Depends: python2.7-minimal (= 2.7.17-1~18.04) but 2.7.15-4ubuntu4~18.04.2 is to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution)
I've never used a SD reader before and I am not trained in using this language and programing.
sudo apt-get install exfat-fuse-exfat-utils
is incorrect. It should besudo apt-get install exfat-fuse exfat-utils
(with two packages instead of one). – karel Jul 10 '20 at 05:09Reading state information... Done You might want to run 'apt --fix-broken install' to correct these. The following packages have unmet dependencies: libpython2.7 : Depends: libpython2.7-stdlib (= 2.7.17-1~18.04) but 2.7.15-4ubuntu4~18.04.2 is to be installed python2.7 : Depends: python2.7-minimal (= 2.7.17-1~18.04) but 2.7.15-4ubuntu4~18.04.2 is to be installed – Wayne Jul 10 '20 at 05:38
sudo apt update && sudo apt upgrade
and then try runningsudo apt install exfat-fuse exfat-utils
again. If that doesn't work open your/etc/apt/sources.list
file for reading and search if there are any non-default software sources in it that are causing the unmet dependencies error. – karel Jul 10 '20 at 05:51sudo apt --fix-broken install
as suggested and add the output here. And also see https://askubuntu.com/questions/140246/how-do-i-resolve-unmet-dependencies-after-adding-a-ppa/142808 – pLumo Jul 10 '20 at 05:53Reading state information... Done You might want to run 'apt --fix-broken install' to correct these. The following packages have unmet dependencies: libpython2.7 : Depends: libpython2.7-stdlib (= 2.7.17-1~18.04) but 2.7.17-1~18.04ubuntu1 is to be installed libpython2.7-stdlib : Depends: libpython2.7-minimal (= 2.7.17-1~18.04ubuntu1) but 2.7.15-4ubuntu4~18.04.2 is to be installed – Wayne Jul 10 '20 at 06:15