add plotter to unix ssystem


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers add plotter to unix ssystem
# 1  
Old 06-10-2008
add plotter to unix ssystem

Hi all,

I have a HP Plotter 4500. I want to connect it to UNIX system.
I used the lpadmin comand but it does not work.

Any help

Thanks
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Printer/Plotter support for Canon

How easy it is to set up a Canon plotter (36" paper) on Solaris 10? The one I'm looking at purchasing (ImagePROGRAF iPF755 MFP) uses HP-GL/2. The newer one looks like it dropped HP-GL/2 support and has a Canon proprietary language called GARO. I'm guessing that will make setup in Solaris not as... (7 Replies)
Discussion started by: markolinux
7 Replies

2. Hardware

Looking for plotter MFP reviews - need new plotter for UNIX/Windows apps

We currently have an HP DesignJet 750C+ plotter (for color plotting) and a Xerox 8825 (for B/W plotting and also scanning/copying) for our engineering drawings. They are getting old and will need replacing soon (maintenance visits are on the increase, and parts for the Xerox are getting hard to... (0 Replies)
Discussion started by: markolinux
0 Replies

3. Shell Programming and Scripting

How to add each entry in an unix file?

Hi, I've a data file having entries like this- $ cat BDWL.out 19571 349484 18963 349568 20180 351389 20372 350253 Now I want to add each entry and produce the final sum =1479780 as output. How can I do that using unix shell scripting?? using loop or sed/awk ?? Thanks, Naresh (5 Replies)
Discussion started by: NARESH1302
5 Replies

4. UNIX for Dummies Questions & Answers

Add new User in Unix ?!

Hello Experts, Guide me how to add new users (user id , passwd) in unix/Linux with different privileges like --> 1> It can be accessible by telnet (or where i should check/change to give different privileges like telnet or ssh2 or FTP) 2> can run only 1 command / script (2 Replies)
Discussion started by: darshak
2 Replies

5. Shell Programming and Scripting

Add leading zero's to the number in unix

Hi, Can anyone help me how to add leading zero's (0's) infront of numbers in unix script. For more details. x=450 Y=2344 i want the out put of 00000450, 000002344 (leading 5 zeros) Thanks A. Raj. (8 Replies)
Discussion started by: easterraj
8 Replies

6. Shell Programming and Scripting

add few lines to a file in unix

Hi, I have an xml file <Disp x=y a=b Disp/> <Disp q=1 w=2 Disp/> ..... I want to add a new set in between like this for a set of 100 files. <Disp x=y a=b Disp/> <Disp k=1 z=2 Disp/> <Disp q=1 w=2 (7 Replies)
Discussion started by: naga_5star
7 Replies

7. HP-UX

Need help for Plotter configuration on hp-ux machine

Hi to all, i am new to hp-ux. I am configured plotter on hp-ux through sam.It was network plotter.That plotter was added to lpspooler. But i am not getting that plotter , when i want to give print request. please help me anybody. it's very urgent to me. please. (0 Replies)
Discussion started by: balarajum
0 Replies

8. Solaris

Network to plotter

I'm using Sunblade and i'm trying to plot using networking but i do not know how to set the plotter in my system. (0 Replies)
Discussion started by: etyna
0 Replies

9. UNIX for Advanced & Expert Users

help connecting a plotter to HP-UX

While this is technically a newbie question, it is an advanced/expert situation so that's why I posted it here. I'm an intern at a company that recently aquired another business that ran off the HP-UX 10.20 unix platform. They (and myself) do not have any experience with it. I have spent... (0 Replies)
Discussion started by: intern
0 Replies

10. UNIX for Dummies Questions & Answers

How to set plotter info.

HP B.10.20 using Vue, using SiteComp software to do Cad drawings, how can I set HP plotter to Designjet 220? Currently set to HP 750. (0 Replies)
Discussion started by: frigd
0 Replies
Login or Register to Ask a Question
Text::Tabs(3pm) 					 Perl Programmers Reference Guide					   Text::Tabs(3pm)

NAME
Text::Tabs -- expand and unexpand tabs per the unix expand(1) and unexpand(1) SYNOPSIS
use Text::Tabs; $tabstop = 4; # default = 8 @lines_without_tabs = expand(@lines_with_tabs); @lines_with_tabs = unexpand(@lines_without_tabs); DESCRIPTION
Text::Tabs does about what the unix utilities expand(1) and unexpand(1) do. Given a line with tabs in it, expand will replace the tabs with the appropriate number of spaces. Given a line with or without tabs in it, unexpand will add tabs when it can save bytes by doing so (just like "unexpand -a"). Invisible compression with plain ASCII! EXAMPLE
#!perl # unexpand -a use Text::Tabs; while (<>) { print unexpand $_; } Instead of the "expand" comand, use: perl -MText::Tabs -n -e 'print expand $_' Instead of the "unexpand -a" command, use: perl -MText::Tabs -n -e 'print unexpand $_' LICENSE
Copyright (C) 1996-2002,2005,2006 David Muir Sharnoff. Copyright (C) 2005 Aristotle Pagaltzis This module may be modified, used, copied, and redistributed at your own risk. Publicly redistributed modified versions must use a different name. perl v5.12.1 2010-04-26 Text::Tabs(3pm)