こんにちは、daihaseです。
自分用メモに。 先日Ubuntu機でいつものようにsudo apt-get updateしようとしたら、
Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'xxx' doesn't support architecture 'i386'
こんな感じのエラーが。 Google Chrome32bit Linuxサポートの終了のため出ちゃってるエラーです。 実機がUbuntu64bitでしたら以下のコマンドで対処してやればエラーは出なくなります。
$ cat /etc/apt/sources.list.d/google-chrome-unstable.list ### THIS FILE IS AUTOMATICALLY CONFIGURED ### # You may comment out this entry, but any other modifications may be lost. deb http://dl.google.com/linux/chrome/deb/ stable main #なんかこんな感じのメッセージが出るので、 vimで開いて [arch=amd64]を間に挿入してやればOK sudo vim /etc/apt/sources.list.d/google-chrome-unstable.list deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main # 書き込んだら更新 sudo apt-get update
では良い開発ライフを〜