在 Ubuntu 16.04 上安装闪存驱动器失败

在 Ubuntu 16.04 上安装闪存驱动器失败

我的闪存驱动器无法在 ubuntu 16.04 上使用。原因是不支持“exfat”文件。我运行了:

sudo apt-get install exfat-fuse exfat-utils 

然而,它给了我:

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-hwe-16.04 : Depends: linux-image-4.15.0-33-generic but it is not going to be installed
 linux-modules-extra-4.15.0-29-generic : Depends: linux-image-4.15.0-29-generic but it is not going to be installed or
                                                  linux-image-unsigned-4.15.0-29-generic but it is not going to be installed
 linux-modules-extra-4.15.0-33-generic : Depends: linux-image-4.15.0-33-generic but it is not going to be installed or
                                                  linux-image-unsigned-4.15.0-33-generic but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

我试过:

sudo apt-get -f install

但仍然不起作用。有人知道如何解决这个问题吗?

执行后: apt-cache policy linux-image-generic-hwe-16.04 输出:

linux-image-generic-hwe-16.04:
  Installed: 4.15.0.33.55
  Candidate: 4.15.0.33.55
  Version table:
 *** 4.15.0.33.55 500
        500 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages
        100 /var/lib/dpkg/status

答案1

我建议切换到主服务器软件与更新software-properties-gtk):

软件和更新 - 存储库

并确保已启用所有更新:

软件和更新 - 更新

然后sudo apt-get dist-upgrade再次运行。

最后运行:

sudo apt-get install exfat-fuse exfat-utils

相关内容