正在刷新更新,这是最后的通知。我该如何删除或卸载罪魁祸首软件?
W:Skipping acquire of configured file 'main/binary-i386/Packages'
as repository 'http://dl.google.com/linux/earth/deb stable InRelease'
doesn't support architecture 'i386',
E:Repository 'http://ddebs.ubuntu.com bionic-updates Release' changed its
'Suite' value from 'bionic' to 'bionic-updates',
E:Repository 'http://ddebs.ubuntu.com bionic-updates Release' changed its 'Codename'
value from 'bionic' to 'bionic-updates'
我有一个 64 位操作系统。
拉切特·M.
答案1
修理:
W:Skipping acquire of configured file 'main/binary-i386/Packages'
as repository 'http://dl.google.com/linux/earth/deb stable InRelease'
doesn't support architecture 'i386'
编辑两个文件:
sudo -H gedit /etc/apt/sources.list.d/google-earth-pro.list
并改变:
deb http://dl.google.com/linux/earth/deb/ stable main
到:
deb [arch=amd64] http://dl.google.com/linux/earth/deb/ stable main
sudo -H gedit /etc/cron.daily/google-earth-pro
并改变:
REPOCONFIG="deb http://dl.google.com/linux/earth/deb/ stable main"
到:
REPOCONFIG="deb [arch=amd64] http://dl.google.com/linux/earth/deb/ stable main"
修理:
E:Repository 'http://ddebs.ubuntu.com bionic-updates Release' changed its
'Suite' value from 'bionic' to 'bionic-updates',
E:Repository 'http://ddebs.ubuntu.com bionic-updates Release' changed its 'Codename'
value from 'bionic' to 'bionic-updates'
cd /etc/apt
# 更改目录
grep -i ddebs.ubuntu.com sources.list
# 搜索此 .list 文件
grep -i ddebs.ubuntu.com sources.list.d/*.list
# 搜索其他 .list 文件
sudo -H gedit found_path/found_filename.list
# 编辑找到的 .list 文件
找到包含以下内容的行ddebs.ubuntu.com
并更改bionic
为bionic-updates