- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- General
- >
- Re: HP-UX 9.05 & HP Designjet 4000
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- 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
- Email to a Friend
- Report Inappropriate Content
09-22-2010 07:32 AM
09-22-2010 07:32 AM
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-22-2010 08:26 AM
09-22-2010 08:26 AM
SolutionTry compiling a samba client on the system, and hang the plotter off another system that has drivers.
The plotter is probably far newer than the OS. No way anyone wrote drivers for 9.05 HP-UX.
If you get the samba/cifs client to work on 9.05 you have a chance of submitting print jobs to another print queue remotely.
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
- Email to a Friend
- Report Inappropriate Content
09-22-2010 10:01 AM
09-22-2010 10:01 AM
Re: HP-UX 9.05 & HP Designjet 4000
Thanks for the suggestion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-22-2010 12:21 PM
09-22-2010 12:21 PM
Re: HP-UX 9.05 & HP Designjet 4000
I used to run my GIS systems on HPUX 9.x this way when drivers became a problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-22-2010 07:32 PM
09-22-2010 07:32 PM
Re: HP-UX 9.05 & HP Designjet 4000
If you don't have this directory, you must add the printer using sam as a remote printer. Since the plotter is very new (compared to your prehistoric 9.05 system), it has a network card that should support RFC1179 communication. When sam asks for the 3 names, the first is the plotter's name in HP-UX, the second is the IP address of the plotter and the 3rd will be the internal name -- use the name: raw and check the option for BSD handling.
Now all of this assumes that you have software that can generate HPGL/2 plotting commands. Unlike a printer, it cannot print plain ASCII text, but I'm sure you know that.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-23-2010 08:29 AM
09-23-2010 08:29 AM
Re: HP-UX 9.05 & HP Designjet 4000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-13-2010 07:03 AM
10-13-2010 07:03 AM
Re: HP-UX 9.05 & HP Designjet 4000
The key to solving this problem would be to "print" to a file, in either HPGL or PCL format. If you can do that, then you're good from here on out.
At that point you can just dd that file to the serial/parallel port that you've got the printer connected to in a script.
And, I may add, that since your program runs on HPUX 9.05 machine, there's a fair chance that it is using starbase graphics, which is the library that was implemented as "starbase on x", called "sox" starting with HPUX 9.0.2.x and beyond.
The reason I bring this up, is that "starbase graphics" and "starbase on x" where just screen based graphical libraries based on hpgl. And these programs would use a device file in /dev/[cant remember the name] as their output device. This tells us that we've already got everything drawn in HPGL, and you really need to do, is just redraw the image into a file.
Now, we owned our source code, but the idea was that we'd open an ordinary file in C (our GIS was written in C) and grab the graphic buffer and issue a redraw() command from the graphic buffer, against a different output device, that is, the FILE* device I just created, and then just doing an fclose() on it.
After dropping the file, now full of hpgl content, we could just dd the file to the the /dev/xxxxx interface of the printer. Since my printer spoke hpgl, it worked like a charm, and at a same time gave us the ability to save our output plots.
Now, I know you're running someone else's GIS, but it probably has extendable hooks or apis in it that you can call from C, etc. if it can't print directly to a file itself with the "print command" in the program.
Hope some of this info helps.
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-26-2010 12:03 PM
10-26-2010 12:03 PM
Re: HP-UX 9.05 & HP Designjet 4000
One last question would anyone have a recommendation for an alternative to Reflection X that can be used in a commercial environment free?.
Thanks for all the help you all put me on the right track.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-26-2010 12:05 PM
10-26-2010 12:05 PM
Re: HP-UX 9.05 & HP Designjet 4000
Have you looked at VNC?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-26-2010 12:12 PM
10-26-2010 12:12 PM
Re: HP-UX 9.05 & HP Designjet 4000
Generally I use a Linux work station.
I connect as follows:
ssh -X hostname
Then I can run any X window based command I want, and it goes back to the X server on the Linux box.
Linux is a free X windows client(server really).
This is really unrelated to the original thread and deserves its own thread.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP