hp deskjet 1050 scanning

Asked by hp

I'm using Ubuntu 10.04 LTS and I installed a multifunction printer from HP - Deskjet 1050 J410 - through HPLIP. The printer part works perfectly, but I cannot get the scanner to work and I really hate using windows for anything except games. I hope there is a way to make my scanner work in Ubuntu. Thank you in advance for your time! hp

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu hplip Edit question
Assignee:
No assignee Edit question
Solved by:
hp
Solved:
Last query:
Last reply:
Revision history for this message
mycae (mycae) said :
#1

I don't own this printer, but there is a suggestion here that seems reasonable:

http://art.ubuntuforums.org/showthread.php?s=d7d8764a143c4a608dda1ba9af771831&t=1621081&page=3

make a new empty file in your home folder, called hp-script.sh

then put this in it

--- CUT BELOW LINE----
#!/bin/bash

LINE=$(grep deskjet_1050_j410_series /usr/share/hplip/data/models/models.dat -n -A 60 | grep "io-mfp-mode=" | cut -d "-" -f 1)
sed -i.bak "$LINE s/io-mfp-mode=.*/io-mfp-mode=1/" /usr/share/hplip/data/models/models.dat
LINE=$(grep deskjet_1050_j410_series /usr/share/hplip/data/models/models.dat -n -A 60 | grep "scan-type=" | cut -d "-" -f 1)
sed -i.bak "$LINE s/scan-type=.*/scan-type=7/" /usr/share/hplip/data/models/models.dat

---- CUT ABOVE LINE ----

then right click the file, select properties, permissions then tick "execute" for user. Place this file in your home folder /home/YOURNAME/

now open a terminal (Ctrl+Alt+T, or from applications menu), then

sudo ./hp-script.sh

Revision history for this message
hp (elevendots-deactivatedaccount-deactivatedaccount) said :
#2

I did that, but unfortunately it didn't help. Even after a restart of the system. Although thank you very much for trying to help!!!

Revision history for this message
hp (elevendots-deactivatedaccount-deactivatedaccount) said :
#3

I forgot to add, I'm using Ubuntu 10.04 LTS 64bit and HPLIP 3.10.9.

Revision history for this message
hp (elevendots-deactivatedaccount-deactivatedaccount) said :
#4

Well, I didn't realize that I was using an outdated hplip. After installing HPLIP 3.11.1 everything works perfectly.