web-dev-qa-db-ja.com

Sudo apt-get updateの実行中にエラーが発生する

$ Sudo apt-get updateを実行するたびに、次のエラーが表示されます。

$ Sudo apt-get update
Hit:1 http://download.virtualbox.org/virtualbox/debian xenial InRelease
Hit:2 http://archive.canonical.com/ubuntu xenial InRelease                                                                                     
Hit:3 http://ppa.launchpad.net/martin-frost/thoughtbot-rcm/ubuntu xenial InRelease                                                             
Hit:4 http://in.archive.ubuntu.com/ubuntu xenial InRelease                                                                                     
Get:5 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]                                                                    
Hit:6 http://ppa.launchpad.net/ubuntu-lxc/lxd-stable/ubuntu xenial InRelease                                                                   
Hit:7 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease                                                                             
Ign:8 http://linux.dropbox.com/ubuntu wily InRelease                                                                                           
Hit:10 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease                                                                          
Get:11 http://linux.dropbox.com/ubuntu wily Release [6,596 B]                                                                                  
Hit:12 http://repository.spotify.com stable InRelease                                                                                          
Ign:9 http://toolbelt.heroku.com/ubuntu ./ InRelease                                                                                           
Hit:14 http://toolbelt.heroku.com/ubuntu ./ Release                                                               
Ign:16 http://dl.google.com/linux/chrome-remote-desktop/deb stable InRelease
Ign:17 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:18 http://dl.google.com/linux/chrome-remote-desktop/deb stable Release
Hit:19 http://dl.google.com/linux/chrome/deb stable Release
Hit:22 https://apt.dockerproject.org/repo ubuntu-xenial InRelease
Fetched 101 kB in 5s (17.0 kB/s)
Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome-remote-desktop/deb stable InRelease' doesn't support architecture 'i386'

ここでクロムが不正なレポである。 this の質問と this one が直面している問題に似ている

私が試したこと

答えの1つで示唆されているように、私は走ってみました

$ cd /var/lib/dpkg/updates && Sudo rm * 
$ Sudo apt-get update

ファイルの確認/etc/apt/sources.list.d

$ cat /etc/apt/sources.list.d/google-chrome.list
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [Arch=AMD64] http://dl.google.com/linux/chrome/deb/ stable main

私の建築

$ uname -a
Linux Acer 4.4.0-24-generic #43-Ubuntu SMP Wed Jun 8 19:27:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
$ google-chrome --version
Google Chrome 51.0.2704.106
3
Tasdik Rahman

同じ問題がありました。修正方法は次のとおりです。

  1. 最初に、[Arch = AMD64]Chromeリモートデスクトップリポジトリファイルに追加するために、このシェルコマンドを実行しました。

    Sudo sed -i -e 's/deb http/deb [Arch=AMD64] http/' "/etc/apt/sources.list.d/chrome-remote-desktop.list"
    
  2. 次に、同じことをChromeリモートデスクトップcronファイルに行いました:

    Sudo sed -i -e 's/deb http/deb [Arch=AMD64] http/' "/etc/cron.daily/chrome-remote-desktop"
    
  3. それを行った後、私はAPTを再度実行し、すべてが正常に戻ったことを確認しました。

    Sudo apt-get update ; Sudo apt-get check
    
2
Yuri Sucupira

ファイル/etc/apt/sources.list.dからGoogleソースを手動で削除する必要がありました。その後、Google Chromeをアンインストールしました

$ Sudo apt-get purge chromium-browser

Google chromeをWebサイトから再度ダウンロードすると、すべてが正常に戻りました。

0
Tasdik Rahman