Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
02-18-2006, 03:54 PM
|
#1
|
LQ Newbie
Registered: Jan 2006
Posts: 12
Rep:
|
Scanning with an HP PSC 1510xi
hey pps, currently i am using an HP PSC 1510xi all-in-one printer with cups and using the driver hpijs.
printing works beautifully, but the problem is i need to use my scanner!
I've search the forums and google, but the only reference i found was on linuxprinting.org where someone mentions that for printing they use hpijs and for advanced functionality such as scanner they use the hplip driver.
Now first off, i'm not to sure how to change the driver or use both at that as said on linuxprinting.org.
In the cups web interface, i tried to goto the modify printer option, but when i get to where u choose the driver, all it lists is the hpijs for all different models. Do i need to install the hpilip drivers??
Sorry, but this is my first time using a printer in linux, so any helpful info would be appreciated.
g.
|
|
|
02-18-2006, 04:42 PM
|
#2
|
LQ Guru
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that.
Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700
Rep:
|
You need to use the hplip driver. It contains the hpijs plus the needed extras to use the scanning feature. Just install over they both use the same version driver.
Brian1
|
|
|
02-18-2006, 06:20 PM
|
#3
|
LQ Newbie
Registered: Jan 2006
Posts: 12
Original Poster
Rep:
|
Quote:
Originally Posted by Brian1
You need to use the hplip driver. It contains the hpijs plus the needed extras to use the scanning feature. Just install over they both use the same version driver.
Brian1
|
k thats what i assumed, but i have no idea how to install the new drivers or where to get em(assuming hp site).
does the install differ depending on what printing software i'm using? (cups)
|
|
|
02-18-2006, 07:43 PM
|
#4
|
Member
Registered: Apr 2004
Location: Arkansas
Distribution: Ubuntu 8.10
Posts: 365
Rep:
|
I have packaged hplip, along with net-snmp, for Slackware. If you want to use it you're more than welcome. You can download the packages from here:
hplip-0.9.8
net-snmp-5.3.0.1
After you install both packages, you will need to rename the /etc/rc.d/rc.hplip.new to rc.hplip. From a root terminal:
# cd /etc/rc.d
# mv rc.hplip.new rc.hplip
Next you will need to start hplip and restart cups:
# ./rc.hplip start
# ./rc.cups restart
If all went well with hplip start you should see two [OK] lines (one for hpiod and the other hpssd).
Now so that it starts every time you boot, add the following to rc.local:
if [ -x /etc/rc.d/rc.hplip ]; then
echo "Starting HPLIP Printer/Scanner Daemon"
/etc/rc.d/rc.hplip start
echo "HPLIP Started"
fi
Now you should be good to go.
HTH,
MMYoung
|
|
|
02-19-2006, 01:36 PM
|
#5
|
LQ Newbie
Registered: Jan 2006
Posts: 12
Original Poster
Rep:
|
ok first off, i downloaded the net-snmp and hplip software that u listed, but couldn't get them installed, so i went and downloaded the source for them.
the net-snmp installed fine, but when i try ./configure with the hplip drivers i get this error:
configure: error: cannot find net-snmp support (or --disable-network-build)
the way i installed net-snmp was ./configure, make, make install
any ideas?
g.
|
|
|
02-19-2006, 03:05 PM
|
#6
|
Member
Registered: Apr 2004
Location: Arkansas
Distribution: Ubuntu 8.10
Posts: 365
Rep:
|
Quote:
Originally Posted by hypn0tiq
ok first off, i downloaded the net-snmp and hplip software that u listed, but couldn't get them installed
|
Why couldn't you install them? All you had to do was, in a root terminal, cd to the directory where the packages were downloaded to and type in:
installpkg net-snmp*.tgz
installpkg hplip*.tgz
Or even more simple:
installpkg *.tgz
Quote:
Originally Posted by hypn0tiq
the net-snmp installed fine, but when i try ./configure with the hplip drivers i get this error:
configure: error: cannot find net-snmp support (or --disable-network-build)
|
Maybe the net-snmp install didn't go as well as you thought(?). Maybe net-snmp installed it's libs someplace other than where hplip is looking for them, not sure.
Quote:
Originally Posted by hypn0tiq
the way i installed net-snmp was ./configure, make, make install
|
That's pretty much standard and *should* install net-snmp to /usr/local. I don't think that hplip is hard-coded to any particular directory (other than /usr maybe).
The thing is, hplip is actually designed for systems that use the type of start up scripts that Red Hat uses, not for the BSD style scripts that Slackware uses. My package "slackerizes" hplip's init scripts for you and puts rc.hplip.new in /etc/rc.d. Just doing a ./configure && make && make install won't give you that without doing some manual configuring afterwards.
Do you still have the source directory that you installed net-snmp from? If so I *think* it honors the make uninstall (or something similar) command to remove whatever the make install command did. You will need to read the net-snmp INSTALL text file to determine the exact command. If you can uninstall net-snmp, your best bet would be to use installpkg to install my packages, then proceed with the other stuff I explained in my previous post.
HTH,
MMYoung
|
|
|
02-20-2006, 04:05 PM
|
#7
|
LQ Guru
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that.
Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700
Rep:
|
I goto linuxprinting.org for finding help like this. Here is a link to point you to the hplip driver where install instructions on install are there as well.
http://www.linuxprinting.org/show_pr...um=HP-PSC_1510
|
|
|
All times are GMT -5. The time now is 03:18 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|