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毫無問題地執行您的。

相關內容