Xsane doesn't find network scanner (printer works)












4















I have an HP Deskjet 1050 j410 all in one setup as a network printer/scanner on a raspberry pi. My laptop running ubuntu 16.04 finds the printer and scanner and it all works. All I had to do was edit /etc/sane.d/net.conf and put the ip address of the pi. On my desktop also running ubuntu 16.04 the printer is found and works, but xsane doesn't find the scanner. I also edited the /etc/sane.d/net.conf file to include the ip address of the pi and it doesn't find it. Where can I go from here? Is there another file I can edit to help xsane find the scanner?










share|improve this question

























  • You can try my answer to this question: askubuntu.com/questions/724366/… although that was for a Canon.

    – Organic Marble
    Apr 25 '17 at 2:38
















4















I have an HP Deskjet 1050 j410 all in one setup as a network printer/scanner on a raspberry pi. My laptop running ubuntu 16.04 finds the printer and scanner and it all works. All I had to do was edit /etc/sane.d/net.conf and put the ip address of the pi. On my desktop also running ubuntu 16.04 the printer is found and works, but xsane doesn't find the scanner. I also edited the /etc/sane.d/net.conf file to include the ip address of the pi and it doesn't find it. Where can I go from here? Is there another file I can edit to help xsane find the scanner?










share|improve this question

























  • You can try my answer to this question: askubuntu.com/questions/724366/… although that was for a Canon.

    – Organic Marble
    Apr 25 '17 at 2:38














4












4








4








I have an HP Deskjet 1050 j410 all in one setup as a network printer/scanner on a raspberry pi. My laptop running ubuntu 16.04 finds the printer and scanner and it all works. All I had to do was edit /etc/sane.d/net.conf and put the ip address of the pi. On my desktop also running ubuntu 16.04 the printer is found and works, but xsane doesn't find the scanner. I also edited the /etc/sane.d/net.conf file to include the ip address of the pi and it doesn't find it. Where can I go from here? Is there another file I can edit to help xsane find the scanner?










share|improve this question
















I have an HP Deskjet 1050 j410 all in one setup as a network printer/scanner on a raspberry pi. My laptop running ubuntu 16.04 finds the printer and scanner and it all works. All I had to do was edit /etc/sane.d/net.conf and put the ip address of the pi. On my desktop also running ubuntu 16.04 the printer is found and works, but xsane doesn't find the scanner. I also edited the /etc/sane.d/net.conf file to include the ip address of the pi and it doesn't find it. Where can I go from here? Is there another file I can edit to help xsane find the scanner?







printing scanner






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 25 '17 at 2:38









Organic Marble

10.8k63358




10.8k63358










asked Apr 24 '17 at 23:49









user2227702user2227702

3114




3114













  • You can try my answer to this question: askubuntu.com/questions/724366/… although that was for a Canon.

    – Organic Marble
    Apr 25 '17 at 2:38



















  • You can try my answer to this question: askubuntu.com/questions/724366/… although that was for a Canon.

    – Organic Marble
    Apr 25 '17 at 2:38

















You can try my answer to this question: askubuntu.com/questions/724366/… although that was for a Canon.

– Organic Marble
Apr 25 '17 at 2:38





You can try my answer to this question: askubuntu.com/questions/724366/… although that was for a Canon.

– Organic Marble
Apr 25 '17 at 2:38










1 Answer
1






active

oldest

votes


















0














I faced a similar issue (works on one computer and not another). The resolution was to make sure HPLIP was set up on the non-working one. Here's what worked for me:



apt-get install hplip python3-pip simple-scan
pip3 install pyqt5
hp-setup


Update



There's an even simpler way which can avoid the pyqt5 requirement:



apt-get install hplip simple-scan
simple-scan $(hp-makeuri SCANNER_HOSTNAME_OR_IP | grep ^SANE | cut -d ' ' -f 3)


Substitute the hostname or IP address of your scanner instead of SCANNER_HOSTNAME_OR_IP



See here for more ideas: https://chrisjrob.com/2016/01/02/ubuntu-simple-scan-hp-all-in-one/






share|improve this answer










New contributor




davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















    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',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    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%2f908538%2fxsane-doesnt-find-network-scanner-printer-works%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I faced a similar issue (works on one computer and not another). The resolution was to make sure HPLIP was set up on the non-working one. Here's what worked for me:



    apt-get install hplip python3-pip simple-scan
    pip3 install pyqt5
    hp-setup


    Update



    There's an even simpler way which can avoid the pyqt5 requirement:



    apt-get install hplip simple-scan
    simple-scan $(hp-makeuri SCANNER_HOSTNAME_OR_IP | grep ^SANE | cut -d ' ' -f 3)


    Substitute the hostname or IP address of your scanner instead of SCANNER_HOSTNAME_OR_IP



    See here for more ideas: https://chrisjrob.com/2016/01/02/ubuntu-simple-scan-hp-all-in-one/






    share|improve this answer










    New contributor




    davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.

























      0














      I faced a similar issue (works on one computer and not another). The resolution was to make sure HPLIP was set up on the non-working one. Here's what worked for me:



      apt-get install hplip python3-pip simple-scan
      pip3 install pyqt5
      hp-setup


      Update



      There's an even simpler way which can avoid the pyqt5 requirement:



      apt-get install hplip simple-scan
      simple-scan $(hp-makeuri SCANNER_HOSTNAME_OR_IP | grep ^SANE | cut -d ' ' -f 3)


      Substitute the hostname or IP address of your scanner instead of SCANNER_HOSTNAME_OR_IP



      See here for more ideas: https://chrisjrob.com/2016/01/02/ubuntu-simple-scan-hp-all-in-one/






      share|improve this answer










      New contributor




      davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.























        0












        0








        0







        I faced a similar issue (works on one computer and not another). The resolution was to make sure HPLIP was set up on the non-working one. Here's what worked for me:



        apt-get install hplip python3-pip simple-scan
        pip3 install pyqt5
        hp-setup


        Update



        There's an even simpler way which can avoid the pyqt5 requirement:



        apt-get install hplip simple-scan
        simple-scan $(hp-makeuri SCANNER_HOSTNAME_OR_IP | grep ^SANE | cut -d ' ' -f 3)


        Substitute the hostname or IP address of your scanner instead of SCANNER_HOSTNAME_OR_IP



        See here for more ideas: https://chrisjrob.com/2016/01/02/ubuntu-simple-scan-hp-all-in-one/






        share|improve this answer










        New contributor




        davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        I faced a similar issue (works on one computer and not another). The resolution was to make sure HPLIP was set up on the non-working one. Here's what worked for me:



        apt-get install hplip python3-pip simple-scan
        pip3 install pyqt5
        hp-setup


        Update



        There's an even simpler way which can avoid the pyqt5 requirement:



        apt-get install hplip simple-scan
        simple-scan $(hp-makeuri SCANNER_HOSTNAME_OR_IP | grep ^SANE | cut -d ' ' -f 3)


        Substitute the hostname or IP address of your scanner instead of SCANNER_HOSTNAME_OR_IP



        See here for more ideas: https://chrisjrob.com/2016/01/02/ubuntu-simple-scan-hp-all-in-one/







        share|improve this answer










        New contributor




        davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer








        edited Jan 11 at 5:38





















        New contributor




        davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Jan 10 at 18:45









        davejagodadavejagoda

        1014




        1014




        New contributor




        davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        davejagoda is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f908538%2fxsane-doesnt-find-network-scanner-printer-works%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How did Captain America manage to do this?

            迪纳利

            南乌拉尔铁路局