- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Large print jobs failure
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
04-28-2007 01:19 AM
04-28-2007 01:19 AM
Large print jobs failure
Large print jobs fail on network printer (printronix 7000 ). If there is a print job of 900 pages, I only get the first 100 pages. Is there anything to adjust on Hp unix B11.0 / 9000 in order to print the whole job at once? Any idea appreciated.
Kind regards
George
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2007 05:14 AM
04-28-2007 05:14 AM
Re: Large print jobs failure
Cheers,
Wout
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2007 12:02 PM
04-29-2007 12:02 PM
Re: Large print jobs failure
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2007 03:17 PM
04-29-2007 03:17 PM
Re: Large print jobs failure
Start by verifying that you have a *LOT* of free space in /var. A few dozen megs is not enough. If you don't have the space, you'll need to:
1. add another disk
2. add it to vg00 or start a new volume group
3. create a 500 or 1000 meg lvol
4. create a new filesystem on the new volume
5. mount it using a temporary mountpoint
6. stop the spooler (lpshut) when convenient.
7. copy everything in /var/spool/lp/request to the temporary mountpoint.
8. verify the copy by counting files and directories:
find /var/spool/lp/request -type f | wc -l
find /tempmount -type f | wc -l
find /var/spool/lp/request -type d | wc -l
find /tempmount -type d | wc -l
9. remove the contents of the /var/spool/lp/request directory (leave the empty directory)
10. add the new lvol to /etc/fstab with a mountpoint /var/spool/lp/request
11. umount the tempmount.
12. mount the lvol using:
mount /var/spool/lp/request
This will verify the entry in /etc/fstab
13 verify the new mountpoint with bdf
Now try the big job again.
If there are no error messages about disk space, this may be a network problem that will take a large scale trace to determine the reason.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2007 08:25 PM
04-29-2007 08:25 PM
Re: Large print jobs failure
There is a lot of free space in /var
#bdf
â ¦
/dev/vg00/lvol7 1536000 1140532 374842 75% /var
used 1140532 bytes
avail 378440 kbytes
%used 75% /var
Besides there are no file system full errors in syslog concerning /var
Any idea about â large scale traceâ to determine the reason appreciated
Kind regards
George
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2007 12:29 PM
04-30-2007 12:29 PM
Re: Large print jobs failure
Bill Hassell, sysadmin