- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP 750C Plotter configuration on HP-UX 10.0
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
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
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
тАО03-15-2004 10:12 PM
тАО03-15-2004 10:12 PM
HP 750C Plotter configuration on HP-UX 10.0
I am having an HP Visualize C3000 Workstation
I want to Install HP 750C plotter on the
same.
Please tell me any reference manual for the
same.
Its urgent any help will be highly
appreciated.
Thanks,
Amit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-15-2004 11:01 PM
тАО03-15-2004 11:01 PM
Re: HP 750C Plotter configuration on HP-UX 10.0
http://h20000.www2.hp.com/bc/docs/support/SupportManual/bpp02418/bpp02418.pdf
This Link may help you.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-16-2004 12:57 AM
тАО03-16-2004 12:57 AM
Re: HP 750C Plotter configuration on HP-UX 10.0
For a JetDirect network connection, you should be able to configure the internal network card settings from the front panel. You'll need an IP address, subnet mask and gateway (if your C3000 is on a different subnet). Then, download the latest JetDirect software from the HP website: http://h20180.www2.hp.com/apps/Lookup?h_query=jet+direct+printer+installer&h_tool=software&h_lang=en
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-16-2004 01:09 AM
тАО03-16-2004 01:09 AM
Re: HP 750C Plotter configuration on HP-UX 10.0
Otherwise if you have a JetDirect card, then you need to install Jetdirect software and configure it.. should be an easy install.
And of course, there are always the manuals one of which is a link above...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-16-2004 01:51 AM
тАО03-16-2004 01:51 AM
Re: HP 750C Plotter configuration on HP-UX 10.0
Please tell me how to configure this plotter as a local printer on serial port
thanks to all of you for your precious sugestions.
Thanks,
Amit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-16-2004 02:05 AM
тАО03-16-2004 02:05 AM
Re: HP 750C Plotter configuration on HP-UX 10.0
ioscan -kfC tty
to find the address of the serial port(s). Then run SAM and select printer/plotters, select the serial interface and use the HPGL2 model script. Set the printer to use the serial port at 9600 baud, no parity.
Now you'll specialized software to draw anything. You can test the plotter with the following command:
echo 'pu;pa0,0;pd;pa1000,1000;pu' | lp -dplotter_name
These commands are HPGL which is what the plotter understands. It cannot print text like a normal printer.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-16-2004 07:08 PM
тАО03-16-2004 07:08 PM
Re: HP 750C Plotter configuration on HP-UX 10.0
3xx/hpux5+6.
Since the beginning, the connexion is the same : I recommend parallel because it is faster and easier.
Do it by sam. Choose an HPGL model.
Then other workstation can reach the plotter by configuring with sam a remote printer.
Very simple.
From my point of view, I replace the model by :
#!/bin/sh
# nom du fichier : plt750C
# auteur : DMS
# version : 1.0
# date : 22.11.95
# Fichier interface pour traceur DESIGNJET 750C
# $0 = commande lp
# $1 = id
# $2 = user
# $3 = titre
# $4 = nb copies
# $5... = fichiers
# Envoie les messages d'erreur dans log plutot que vers l'imprimante
# Evite le blocage de l'imprimante
exec 2>>/usr/spool/lp/log
titre=$3
copies=$4
shift;shift;shift;shift;shift
files="$*"
i=1
while [ $i -le $copies ]
do
for file in $files
do
cat "$file" 2>&1
echo "PG;"
done
i=`expr $i + 1`
done
exit 0