- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- printing pdf output from hpux...
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
12-01-2004 03:15 AM
12-01-2004 03:15 AM
printing pdf output from hpux...
All feedback is appreciated,
manuel
The following is a solution I installed on a test box:
First, Acrobat Reader needs to be installed on the HP-UX system.
http://www.adobe.com/products/acrobat/readstep2.html
after you untar your adobe download, you will have the following:
COMMON.TAR HPUXRDR.TAR INSTALL LICREAD.TXT MANIFEST README
as root:
sh ./INSTALL
type accept for the license.
Enter installation directory for Acrobat 5.0.9 [/opt/Acrobat5]
Directory "/opt/Acrobat5" does not exist.
Do you want to create it now? [y] y
Installing platform independent files ... Done
Installing platform dependent files ...
under /opt you may want to setup a link?
drwxr-xr-x 6 root sys 96 Nov 30 11:53 Acrobat5
lrwxr-xr-x 1 root sys 8 Nov 30 11:54 adobe -> Acrobat5
setup a link for acroread:
# pwd
/usr/local/bin
# ln -s /opt/adobe/bin/acroread acroread
Now you are ready to print
--------------------------------
Then use this command to print a PDF document to the Laserjet printer:
# cat mydocument.pdf | /usr/local/bin/acroread -toPostScript -shrink | /usr/bin/lp.hp -d rich
To print only a range of pages:
# cat mydocument.pdf | /usr/local/bin/acroread -toPostScript -start 5 -end 15 -shrink | lp -d rich
initially I tried the above command w/o the "-shrink" option, but my printouts would encounter issues w/left and right margins (poor report design?).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 03:29 AM
12-01-2004 03:29 AM
Re: printing pdf output from hpux...
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 04:05 AM
12-01-2004 04:05 AM
Re: printing pdf output from hpux...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 06:51 AM
12-01-2004 06:51 AM
Re: printing pdf output from hpux...
Which depot did you install to get acroread on your box?
This may be a better option for production boxes...thanks,
manuel contreras
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 06:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 09:19 AM
12-01-2004 09:19 AM
Re: printing pdf output from hpux...
ftp://ftp.adobe.com/pub/adobe/acrobatreader/unix/
I was actually looking for an acroread in an install-able depot for HPUX boxes.
I read a reference (wish I could remember where) about performing an "swlist -l product" to verify that you have adobe/acrobat/acroread INSTALLED.
The current reader provided by adobe is not a depot, and will not show up in an swlist.
Thanks,
manuel