Xsane doesn't find network scanner (printer works)
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
add a comment |
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
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
add a comment |
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
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
printing scanner
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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/
New contributor
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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/
New contributor
add a comment |
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/
New contributor
add a comment |
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/
New contributor
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/
New contributor
edited Jan 11 at 5:38
New contributor
answered Jan 10 at 18:45
davejagodadavejagoda
1014
1014
New contributor
New contributor
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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