problem installing Epson Iscan for V370 scanner in Ubuntu 16.04

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
1
down vote

favorite












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'







share|improve this question


























    up vote
    1
    down vote

    favorite












    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'







    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      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'







      share|improve this question














      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'









      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 23 at 21:25









      cipricus

      9,29245166332




      9,29245166332










      asked Apr 20 at 23:02









      Trevor

      62




      62




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          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.






          share|improve this answer






















          • Thanks for your answer, however when I enter the first command line I get the following error message.bash: cd: /etc/apt/sources.list: Not a directory
            – Trevor
            Apr 23 at 20:43










          • @Trevor Oops... silly me... small typo, now corrected. Also, there's no ":" after cd.
            – heynnema
            Apr 23 at 21:20











          • @Trevor If my answer proves helpful, please remember to accept it by clicking on the grey checkmark icon. Thanks.
            – heynnema
            Apr 23 at 21:21











          • I have successfully changed the name. However when run ./install I get the following errors. N: Ignoring file 'google-earth-pro.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension W: GPG error: archive.canonical.com precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 E: The repository 'archive.canonical.com precise Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
            – Trevor
            Apr 24 at 10:41











          • @Trevor oh... you didn't identify those errors in your question. Please edit your original question with this new information. Also, start comments to me with @heynnema or I'll miss them. See the update to my answer. Report back.
            – heynnema
            Apr 24 at 13:34










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026811%2fproblem-installing-epson-iscan-for-v370-scanner-in-ubuntu-16-04%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          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.






          share|improve this answer






















          • Thanks for your answer, however when I enter the first command line I get the following error message.bash: cd: /etc/apt/sources.list: Not a directory
            – Trevor
            Apr 23 at 20:43










          • @Trevor Oops... silly me... small typo, now corrected. Also, there's no ":" after cd.
            – heynnema
            Apr 23 at 21:20











          • @Trevor If my answer proves helpful, please remember to accept it by clicking on the grey checkmark icon. Thanks.
            – heynnema
            Apr 23 at 21:21











          • I have successfully changed the name. However when run ./install I get the following errors. N: Ignoring file 'google-earth-pro.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension W: GPG error: archive.canonical.com precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 E: The repository 'archive.canonical.com precise Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
            – Trevor
            Apr 24 at 10:41











          • @Trevor oh... you didn't identify those errors in your question. Please edit your original question with this new information. Also, start comments to me with @heynnema or I'll miss them. See the update to my answer. Report back.
            – heynnema
            Apr 24 at 13:34














          up vote
          0
          down vote













          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.






          share|improve this answer






















          • Thanks for your answer, however when I enter the first command line I get the following error message.bash: cd: /etc/apt/sources.list: Not a directory
            – Trevor
            Apr 23 at 20:43










          • @Trevor Oops... silly me... small typo, now corrected. Also, there's no ":" after cd.
            – heynnema
            Apr 23 at 21:20











          • @Trevor If my answer proves helpful, please remember to accept it by clicking on the grey checkmark icon. Thanks.
            – heynnema
            Apr 23 at 21:21











          • I have successfully changed the name. However when run ./install I get the following errors. N: Ignoring file 'google-earth-pro.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension W: GPG error: archive.canonical.com precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 E: The repository 'archive.canonical.com precise Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
            – Trevor
            Apr 24 at 10:41











          • @Trevor oh... you didn't identify those errors in your question. Please edit your original question with this new information. Also, start comments to me with @heynnema or I'll miss them. See the update to my answer. Report back.
            – heynnema
            Apr 24 at 13:34












          up vote
          0
          down vote










          up vote
          0
          down vote









          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.






          share|improve this answer














          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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 24 at 13:32

























          answered Apr 21 at 14:41









          heynnema

          15.4k21945




          15.4k21945











          • Thanks for your answer, however when I enter the first command line I get the following error message.bash: cd: /etc/apt/sources.list: Not a directory
            – Trevor
            Apr 23 at 20:43










          • @Trevor Oops... silly me... small typo, now corrected. Also, there's no ":" after cd.
            – heynnema
            Apr 23 at 21:20











          • @Trevor If my answer proves helpful, please remember to accept it by clicking on the grey checkmark icon. Thanks.
            – heynnema
            Apr 23 at 21:21











          • I have successfully changed the name. However when run ./install I get the following errors. N: Ignoring file 'google-earth-pro.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension W: GPG error: archive.canonical.com precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 E: The repository 'archive.canonical.com precise Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
            – Trevor
            Apr 24 at 10:41











          • @Trevor oh... you didn't identify those errors in your question. Please edit your original question with this new information. Also, start comments to me with @heynnema or I'll miss them. See the update to my answer. Report back.
            – heynnema
            Apr 24 at 13:34
















          • Thanks for your answer, however when I enter the first command line I get the following error message.bash: cd: /etc/apt/sources.list: Not a directory
            – Trevor
            Apr 23 at 20:43










          • @Trevor Oops... silly me... small typo, now corrected. Also, there's no ":" after cd.
            – heynnema
            Apr 23 at 21:20











          • @Trevor If my answer proves helpful, please remember to accept it by clicking on the grey checkmark icon. Thanks.
            – heynnema
            Apr 23 at 21:21











          • I have successfully changed the name. However when run ./install I get the following errors. N: Ignoring file 'google-earth-pro.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension W: GPG error: archive.canonical.com precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 E: The repository 'archive.canonical.com precise Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
            – Trevor
            Apr 24 at 10:41











          • @Trevor oh... you didn't identify those errors in your question. Please edit your original question with this new information. Also, start comments to me with @heynnema or I'll miss them. See the update to my answer. Report back.
            – heynnema
            Apr 24 at 13:34















          Thanks for your answer, however when I enter the first command line I get the following error message.bash: cd: /etc/apt/sources.list: Not a directory
          – Trevor
          Apr 23 at 20:43




          Thanks for your answer, however when I enter the first command line I get the following error message.bash: cd: /etc/apt/sources.list: Not a directory
          – Trevor
          Apr 23 at 20:43












          @Trevor Oops... silly me... small typo, now corrected. Also, there's no ":" after cd.
          – heynnema
          Apr 23 at 21:20





          @Trevor Oops... silly me... small typo, now corrected. Also, there's no ":" after cd.
          – heynnema
          Apr 23 at 21:20













          @Trevor If my answer proves helpful, please remember to accept it by clicking on the grey checkmark icon. Thanks.
          – heynnema
          Apr 23 at 21:21





          @Trevor If my answer proves helpful, please remember to accept it by clicking on the grey checkmark icon. Thanks.
          – heynnema
          Apr 23 at 21:21













          I have successfully changed the name. However when run ./install I get the following errors. N: Ignoring file 'google-earth-pro.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension W: GPG error: archive.canonical.com precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 E: The repository 'archive.canonical.com precise Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
          – Trevor
          Apr 24 at 10:41





          I have successfully changed the name. However when run ./install I get the following errors. N: Ignoring file 'google-earth-pro.list.save.1' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension W: GPG error: archive.canonical.com precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 E: The repository 'archive.canonical.com precise Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default.
          – Trevor
          Apr 24 at 10:41













          @Trevor oh... you didn't identify those errors in your question. Please edit your original question with this new information. Also, start comments to me with @heynnema or I'll miss them. See the update to my answer. Report back.
          – heynnema
          Apr 24 at 13:34




          @Trevor oh... you didn't identify those errors in your question. Please edit your original question with this new information. Also, start comments to me with @heynnema or I'll miss them. See the update to my answer. Report back.
          – heynnema
          Apr 24 at 13:34

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026811%2fproblem-installing-epson-iscan-for-v370-scanner-in-ubuntu-16-04%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          Which professions warranted travel in Medieval times?

          How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

          Trouble downloading packages list due to a “Hash sum mismatch” error