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リンクを見つけたら→修正するhhtpを に修正しhttpて確認します。

ここに画像の説明を入力してください

新たな問題がなければsudo apt-get update && sudo apt-get upgrade、問題なく実行できます。

関連情報