- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lp:request not accepted
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-29-2008 09:45 AM
04-29-2008 09:45 AM
Is there a size limitation of lp that can be changed?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 10:00 AM
04-29-2008 10:00 AM
Re: lp:request not accepted
All the requests get queued under /var/spool/lp/request/qname
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 10:02 AM
04-29-2008 10:02 AM
Re: lp:request not accepted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 10:07 AM
04-29-2008 10:07 AM
Re: lp:request not accepted
Don't know if a size limitation exist, and I don't see why it should ...
Where is located the original large file you want to print ? In /var or not ? If not, what is free space in /var ?
Normally the files to be printed are linked into a spool directory /var/spool/lp/.... If linking is not possible, for example because source file is in an other filesystem, the file is copied into the spool directory.
Regards
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 10:11 AM
04-29-2008 10:11 AM
Re: lp:request not accepted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 10:53 AM
04-29-2008 10:53 AM
SolutionUse the command:
df -g /stand | awk '/flags/{print $1,$2}'
This will show something like this:
0x10 flags
or
0 flags
The 0x10 (actually, the 1 digit) indicates that largefiles (larger than 2GB) are enabled on this directory. If not (as in: 0 flags), then no file larger then 2GB can be printed on this system. Change the parent filesystem (probably /var) to support largefiles using fsadm as in:
fsadm -F vxfs -o largefiles /var
For added comfort, you can add the largefiles option to /etc/fstab as in:
/dev/vg00/lvol8 /var vxfs largefiles,nosuid,delaylog 0 2
The above line will check when mounting the filesystem (at boot time) that largefiles has been enabled on /var -- if not, you'll get an error and /var will not be mounted. (see man mount_vxfs or man mount_hfs)
=======================
For the techies:
# filesystem features (from /usr/include/sys/statvfs.h)
# df -g will return these flags
# ST_RDONLY 0x01 /* read only vfs */
# ST_NOSUID 0x02 /* someone is waiting for lock */
# ST_EXPORTED 0x04 /* file system is exported (NFS) */
# ST_QUOTA 0x08 /* filesystem with quotas */
# ST_LARGEFILES 0x10 /* filesystem supports largefiles */
So if flags shows: 0x19 then largefiles is enabled, quotas are enabled and the filesystem was mounted as readonly.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 10:56 AM
04-29-2008 10:56 AM
Re: lp:request not accepted
Assuming that /var/spool is the mount point, check if this filesystem has the "largefiles" option turned on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 11:12 AM
04-29-2008 11:12 AM
Re: lp:request not accepted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 11:56 AM
04-29-2008 11:56 AM
Re: lp:request not accepted
enbling the largefiles thorugh fsamd is ONE TIME activity and hence is it mandatory to have the fstab updated.?
We should be OK as long as the same disk is used. Incase of disk failure/replacement the LVM mirror or newfs with largefiles will take care.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2008 04:34 PM
04-29-2008 04:34 PM
Re: lp:request not accepted
It does not matter whether the lvol has 8GB or 800GB, unless it has largefiles enabled, no one file can be created larger than 2GB. Yes, the fsadm conversion is a one-time fix (and can be reversed if desired). The fsadm entry is completely optional. As mentioned, the largefiles option is really a check in case the filesystem may have been changed or re-created with nolargefiles.
Bill Hassell, sysadmin