- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: PCL COMMANDS
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
06-29-2005 03:29 AM
06-29-2005 03:29 AM
It is accepting the commands but it is just printing the command rather than processing it.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2005 03:53 AM
06-29-2005 03:53 AM
Re: PCL COMMANDS
I've done things like this before by using the '-o raw' option on my 'lp' command line. Something like:
lp -dmyprinter -o raw somefile.pcl
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2005 12:53 AM
07-01-2005 12:53 AM
Solutionhttp://www.google.com/url?sa=U&start=1&q=http://www.csgnetwork.com/hppclhist.html&e=10342
http://www.google.com/url?sa=U&start=2&q=http://www.digitalissues.co.uk/html/software/utils/pcl_page.html&e=10342
How to use passthrough commmands to send stuff directly to the printer.
http://www.google.com/url?sa=U&start=5&q=http://support.microsoft.com/support/kb/articles/Q96/7/95.ASP&e=10342
I've had to work with this stuff a number of times in my time as a sysadmin. I've always hated it because the documentation was written by people with a poor command of how humans process information.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2005 01:35 AM
07-01-2005 01:35 AM
Re: PCL COMMANDS
Are you trying to send the commands from a file at the command line, or from inside a script or program?
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2005 12:48 AM
07-05-2005 12:48 AM
Re: PCL COMMANDS
Put the PCL commands in a separate file.
create a little script, that puts this file at the top of a temp file. Copy your text in the line behind the PCL commands.
After this text you should enter the PCL command for a reset to original settings.
Then print the temp file.
Rgds
Alexander M. Ermes
sample
cat LANDSCAPE ${1} > /usr/tmp/out
lp /usr/tmp/out
rm /usr/tmp/out