- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to find out which printer drivers are conf...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2012 12:25 PM
06-05-2012 12:25 PM
Hello;
As the title says, am trying to fin our which driver is used for the alredy working print queues..
neither hpnpf norhppi seems to give that info ..
Any ideas ??
Thnx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2012 02:53 PM
06-05-2012 02:53 PM
SolutionIn the HP-UX world, there are usually no "drivers" for the printer. Instead, there are "model scripts".
(It will be easier to Google for something if you know its proper name.)
This procedure will apply for JetDirect (= network) printers only.
Run these commands:
cd /etc/lp/interface/model.orig grep '^#SMODEL' *
If there are multiple network printers (and thus multiple files in the directory), the output will be several lines like this:
queuename:#SMODEL:2950:HP ColorLaserJet CP1510 Series:clj1510
The useful fields are:
- queuename: the name of the print queue
- 2950: the printer model ID (used when selecting a printer model with hppi or addqueue)
- HP ColorLaserJet CP1510 Series: human readable model name
If multiple lines are displayed for one print queue, then the model script used with that queue is listed as usable with several printer models. The original model script templates for JetDirect printers are stored in /opt/hpnpl/sh directory.
For LPD (=remote) print queues, there will be no corresponding file in /etc/lp/interface/model.orig. The model script in the /etc/lp/interface directory will always be a copy of "rmodel" from /usr/lib/lp/model/ directory, which will only send the print job and its options to the remote destination as-is. For a remote print queue, it is the responsibility of the remote destination to actually apply the options to the print job.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2012 05:40 AM
06-06-2012 05:40 AM
Re: How to find out which printer drivers are configured for which print queue
Just what i was looking for ..