- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: counting printed copyes
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
Forums
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
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
10-25-2001 07:14 AM
10-25-2001 07:14 AM
counting printed copyes
does anybody know way to count printed copies
on HPLaserJet printers . (MV4 & 2100)
I need to count number of pages printed by each
account in NT domain , but i don't want to use
WINdows event log , but separate file only for printed pages.
Is it possible to do this from HP-UX 10.20
using samba server, or from Linux ?
Is there any windows programs that can do this
but log printed pages in its own log file , not in windows event log ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2001 08:07 AM
10-25-2001 08:07 AM
Re: counting printed copyes
HPUX keeps track of how many print jobs are sent to a specific printer. When you use lp you get an output that looks like this:
request id is is5simx-45 (1 file)
The 45 represents how many jobs have gone to that printer since it was created.
Hope this leads you down the right path.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2001 09:04 AM
10-25-2001 09:04 AM
Re: counting printed copyes
Newer printers do have the ability to communicate a page count back to the computer but this is complicated by use of print servers (you mentioned NT) or one-directional interfaces. For HP JetDirect cards installed in HP LaserJet printers that support PJL, it might be possible to write a custom program thart can query the printer within the lp spooler model script. You would need a PJL reference book and some JetDirect and scripting skills.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 01:35 AM
10-29-2001 01:35 AM
Re: counting printed copyes
actually windows NT automatically logs printed pages in windows event log??
but i need program that will??
log printer activity??
in separate file .
Most important is relation
"windous NT Domain account" ->
"number of printed pages" .
Does HP have such program ???
Or someone else ???
I had heard that such counting?? of printed pages??
could be done on UNIX/Linux using Samba Server 2.2 and Winbind .??
Do You have any information about this???
thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 02:31 AM
10-29-2001 02:31 AM
Re: counting printed copyes
CUPS project may be a way to use filters for
pages number accounting.
Have a look to these links :
http://www.cups.org
http://www.cups.org/sam.html#7_6_3
HTH
Herv??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 08:45 AM
10-29-2001 08:45 AM
Re: counting printed copyes
from the UN*X lp spooler "interface" script that would be relatively easy, using one of at least two approaches to get the page count:
1) using SNMP to get the "Printed Pages" number from the printer itself
2) using some sort of printing language understanding software from within the interface script.
Ad 1) This does need an SNMP agent running on the printer (true for JetDirect interfaces), the knowledge of the "community string" (.i.e. SNMP password) and the "MIB Variable" containing the number you want.
Ad 2) For PostScript there is a package named "GhostScript" which could do this for you.
In both cases your "interface script" would do the "reporting" to your external database or logfile.
HTH,
Wodisch