Operating System - HP-UX
1747996 Members
4882 Online
108756 Solutions
New Discussion юеВ

Re: Installing printer drivers in HPUX 11.11

 
Jagadesh_2
Regular Advisor

Installing printer drivers in HPUX 11.11

We have HPUX servers with OS 11.11. When i issue the command
#addqueue -l
Printer model: HP LaserJet 4050 Series is not listed in this output. Kindly let me know where can i get the printer drivers for the same and the let me know the installation procedure too.

Please find the output of addqueue -l

# addqueue -l
Printer Id Printer Model
________________________________________________
1) HP LaserJet IIISi
1) HP PaintJet XL300
2) HP Color LaserJet
3) HP LaserJet 4
5) HP LaserJet 4Si
6) HP PaintJet XL300
7) DeskJet 1200C
7) HP CopyJet
8) DesignJet 650C
10) HP LaserJet 4 Plus
11) HP LaserJet 5Si
12) HP LaserJet 4V
14) DeskJet 1600C
14) DeskJet 1600CM
15) HP LaserJet 5
15) HP LaserJet 5N
15) HP LaserJet 5M
16) HP Color LaserJet 5
16) HP Color LaserJet 5M
20) DesignJet 750C (C3196A)
20) HP DesignJet 750C Plus (C4708A)
20) HP DesignJet 750C Plus (C4709A)
21) DesignJet 755CM (C3198A)
21) DesignJet 755CM (C3198B)
22) HP DesignJet 700 (C4705A)
22) HP DesignJet 700 (C4706A)
23) HP DesignJet 2500CP (C4704A)
24) HP DesignJet 2000CP (C4703A)
25) HP DesignJet 3500CP (C4724A)
26) HP DesignJet 3000CP (C4723A)
257) HP LaserJet 4000 Series
258) HP LaserJet 5000 Series
266) HP LaserJet 8000 Series
270) HP Color LaserJet 4550
1000) HP LaserJet 5L
1001) HP LaserJet 5P
1001) HP LaserJet 5MP
1002) HP LaserJet 4P
1002) HP LaserJet 4MP
1003) LaserJet 4L
1003) LaserJet 4ML
1004) HP LaserJet 6P
1004) HP LaserJet 6MP
1005) HP LaserJet 6L
1008) HP 2000C
9990) dumplot plotter
9991) dumplot printer
9992) dumplot printer_cr
9998) Generic printer
9999) Generic plotter


Thanks in advance.
6 REPLIES 6
Sameer_Nirmal
Honored Contributor

Re: Installing printer drivers in HPUX 11.11

Bill Hassell
Honored Contributor

Re: Installing printer drivers in HPUX 11.11

The 4050 printer is part of the 4000 series. Actually, the majority of new Laser printers use the same printer script: net_ljx000 and there is a man page for it.


Bill Hassell, sysadmin
Mahesh Kumar Malik
Honored Contributor

Re: Installing printer drivers in HPUX 11.11

Hi Jagadesh

You may choose following option for Printer ID

257) HP LaserJet 4000 Series

Regards
Mahesh
Raj D.
Honored Contributor

Re: Installing printer drivers in HPUX 11.11

Hi Jagadesh ,

You can also use this script to add the printer very easily:

############################################
#!/bin/ksh -x

# SCRIPT For adding of SAP Printers.
# The data file is addprt.list
# Please enter the printers name in the file addprt.list to be added.
###########################################


PRINTERS=/home/username/printer/addprt.list

#Turn of the scheduler first

echo " Stopping LP Schedular "
lpshut

for i in `cat $PRINTERS`
do
echo $i
lpadmin -p$i -v/dev/null -mrmodel -ocmrcmodel -osmrsmodel -orm$i-jet-laser -orp$i
echo " Printer $i Created. * * "
accept $i
enable $i
done

#Don't forget to enable the scheduler. Scheduler enabling..
lpsched

echo " Printers Created Successfully "
echo " ------------------------------------------------------------------"
###########################################

Note:
1. /home/username/printer/addprt.list is the flename need to add the printer name , i.e PR10
PR11
PR12
etc..
2. /home/username/printer/add_printers.sc is the script name , to be run to add the prt.
3. in /etc/hosts , IP has to define for the remote printers in the format :
9.110.11.2 PR10-jet-laser #Example.

--------------------------------------

Hope this will help you , if you unable to add via addqueue.

Cheers ,
Raj.
-----


" If u think u can , If u think u cannot , - You are always Right . "
Raj D.
Honored Contributor

Re: Installing printer drivers in HPUX 11.11

Jagadesh ,

Also Remeber , addqueue , do not stops the LP scheduler , but the script will stop the scheduler for few seconds , and start, and it will not have any impact as its very quick.

Cheers .
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
IleneH
Visitor

Re: Installing printer drivers in HPUX 11.11

Please update this reply be updated with working links.