Chrome
Google瀏覽器在 32 位停產後更新
幾天前,我在更新中註意到此錯誤消息
無法獲取http://dl.google.com/linux/chrome/deb/dists/stable/Release無法在發布文件中找到預期的條目“main/binary-i386/Packages”(錯誤的 sources.list 條目或格式錯誤的文件)
實際上,解決方案很簡單,只需添加
[arch=amd64]
afterdeb
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
在
/etc/apt/sources.list.d/google-chrome.list
但
每次重新啟動後,或者我不知道它發生的確切時間它就消失了,知道如何永久修復它嗎?
根據webupd8_fix-failed-to-fetch(閱讀更新)編輯以下兩個文件:
/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"