0

When installing the Epson Iscan driver for a V370 scanner 64 bit the following message appears and the installation fails N: 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'

Trevor
  • 9

1 Answers1

0

In terminal...

cd /etc/apt/sources.list.d # change directory

grep -i earth *.list # note the name of the found file

sudo pico google-earth-pro.list # edit the file using the above found filename

change:

deb http://dl.google.com/linux/earth/deb/ stable main

to:

deb [arch=amd64] http://dl.google.com/linux/earth/deb/ stable main

control+o # to save edits

return # to confirm the filename to save

control+x # to exit the editor

Update #1:

To solve the new errors that you detailed...

In terminal...

sudo rm -i /etc/apt/sources.list.d/google-earth-pro.list.save.1

sudo add-apt-repository ppa:webupd8team/y-ppa-manager
sudo apt-get update
sudo apt-get install y-ppa-manager

then run Y PPA Manager and click the Advanced icon, and select Try to import all missing GPG keys and Try to fix all GPG BADSIG errors.

heynnema
  • 73,649