32ビットサポートが停止した後にChromeを更新するには?

32ビットサポートが停止した後にChromeを更新するには?

数日前の更新中に、次のエラーメッセージが表示されました。

Failed to fetch http://dl.google.com/linux/chrome/deb/dists/stable/Release Unable to find expected entry 'main/binary-i386/Packages' in Release file (Wrong sources.list entry or malformed file)

実際、解決策は非常に簡単です。[arch=amd64]後で追加してください。deb

deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

ファイルに

/etc/apt/sources.list.d/google-chrome.list

しかし、再起動するたびに(正確な瞬間はわかりません)消えますが、永久に修正する方法をご存知ですか?

ベストアンサー1

~によるとwebupd8_fixを取得できません(更新を読む) 次の2つのファイルを編集します。

/etc/apt/sources.list.d/google-chrome.list

3行目を次に変更します。

deb http://dl.google.com/linux/chrome/deb/ stable main

到着する:

deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

編集する/opt/google/chrome/cron/google-chrome

REPOCONFIGとSSLREPOCONFIGを次のように変更します。

REPOCONFIG="deb http://dl.google.com/linux/chrome/deb/ stable main"
SSLREPOCONFIG="deb https://dl.google.com/linux/chrome/deb/ stable main"

到着する:

REPOCONFIG="deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
SSLREPOCONFIG="deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main"

おすすめ記事