Whenever I am running $ sudo apt-get update
, I am getting the following error.
$ sudo apt-get update
Hit:1 http://download.virtualbox.org/virtualbox/debian xenial InRelease
Hit:2 http://archive.canonical.com/ubuntu xenial InRelease
Hit:3 http://ppa.launchpad.net/martin-frost/thoughtbot-rcm/ubuntu xenial InRelease
Hit:4 http://in.archive.ubuntu.com/ubuntu xenial InRelease
Get:5 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]
Hit:6 http://ppa.launchpad.net/ubuntu-lxc/lxd-stable/ubuntu xenial InRelease
Hit:7 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease
Ign:8 http://linux.dropbox.com/ubuntu wily InRelease
Hit:10 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease
Get:11 http://linux.dropbox.com/ubuntu wily Release [6,596 B]
Hit:12 http://repository.spotify.com stable InRelease
Ign:9 http://toolbelt.heroku.com/ubuntu ./ InRelease
Hit:14 http://toolbelt.heroku.com/ubuntu ./ Release
Ign:16 http://dl.google.com/linux/chrome-remote-desktop/deb stable InRelease
Ign:17 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:18 http://dl.google.com/linux/chrome-remote-desktop/deb stable Release
Hit:19 http://dl.google.com/linux/chrome/deb stable Release
Hit:22 https://apt.dockerproject.org/repo ubuntu-xenial InRelease
Fetched 101 kB in 5s (17.0 kB/s)
Reading package lists... Done
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome-remote-desktop/deb stable InRelease' doesn't support architecture 'i386'
chrome being the rogue repo here. I found this question and this one similar to the problem that I was facing
What I have tried
As suggested in one of the answers, I tried running
$ cd /var/lib/dpkg/updates && sudo rm *
$ sudo apt-get update
As well as checking the file /etc/apt/sources.list.d
$ cat /etc/apt/sources.list.d/google-chrome.list
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
My architechture
$ uname -a
Linux Acer 4.4.0-24-generic #43-Ubuntu SMP Wed Jun 8 19:27:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
$ google-chrome --version
Google Chrome 51.0.2704.106
sudo apt-get update && sudo apt-get check && sudo apt-get dist-upgrade -y
– Yuri Sucupira Jul 17 '16 at 00:00