Ubuntu 无法更新

Ubuntu 无法更新
sudo apt-get update && apt-get upgrade

我在这里输入我的密码

Hit:1 http://za.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://za.archive.ubuntu.com/ubuntu bionic-updates InRelease
Get:3 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 
Hit:4 http://ppa.launchpad.net/system76/pop/ubuntu bionic InRelease
Hit:5 http://za.archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:6 https://download.docker.com/linux/ubuntu bionic InRelease
Ign:7 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:8 http://dl.google.com/linux/chrome/deb stable Release                           
Fetched 88.7 kB in 2s (53.3 kB/s)
Reading package lists... Done
E: The method driver /usr/lib/apt/methods/hhtp could not be found.
N: Is the package apt-transport-hhtp installed?
E: Failed to fetch hhtp://archive.canonical.com/ubuntu/dists/disco/InRelease  
E: Some index files failed to download. They have been ignored, or old ones used instead.

只是一些背景知识,我是 Linux 新手。
我做错了什么,是什么hhtp

答案1

  1. sudo apt-get update && apt-get upgrade根本无法工作,因为它是以下项的组合:

    • sudo apt-get update(这里没问题)
    • apt-get upgrade但是这个需要 sudo

    所以改用sudo apt-get update && sudo apt-get upgrade

  2. hhtp可能是拼写错误,应该是http。要更正它,请打开software-property-gtk

    • 使用命令行:software-property-gtk
    • 通过输入进行搜索软件(命名软件与更新

    其他软件找到错误的 PPA 链接 → 使用调整将 更正为hhtphttp并确认。

在此处输入图片描述

现在如果没有新问题,您可以sudo apt-get update && sudo apt-get upgrade毫无问题地执行您的。

相关内容