修正するには:

修正するには:

アップデートの更新中に、最後にこの通知が表示されます。原因となっているソフトウェアを削除またはアンインストールするにはどうすればよいでしょうか?

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'

2 つのファイルを編集します。

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

関連情報