Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Open UNIX printing to Ricoh Copier

6 views
Skip to first unread message

Chris Rendall

unread,
Feb 25, 2002, 10:23:59 PM2/25/02
to
I'm trying to configure my Open UNIX system to print to our networked Ricoh
copiers and it's not quite working. I set the system to print to a remote
print server and the print jobs just sit in the queue. The Ricoh supports
lpd printing but I'm not sure how to get it working. Anyone have any ideas?

Chris

Karel Adams

unread,
Feb 26, 2002, 12:46:35 PM2/26/02
to

"Chris Rendall" <cren...@teamind.com> schreef in bericht news:Xns91C0D92FACE00c...@24.164.224.58...

Yes lots

Like for instance:

-) make sure the devices can ping one another (both by name and by IP-adress)
-) RTFM
-) send us your /etc/printcap file
-) tell us what steps you went through
-) in particular, stating whether you did 'accept ricoh' and 'enable ricoh'
-) consult good sites like Tony Lawrence's
-) sending a file to the printer/copier from an ftp session might print it out,
depending on the printer server's qualities

Pat Welch

unread,
Feb 26, 2002, 9:56:12 PM2/26/02
to

Never used one, but I've set up lots of LPD printers under both OS5 and
UW7.

1) more info - how did you set it up?
2) Did you configure the IP address and subnet-mask on the Ricoh? How?
3) Very basic - can you ping the Ricoh: by number? by name assigned to
the device in scoadmin?
4) Did you edit /etc/printcap so the correct 'port' is addressed on the
Ricoh? (the name will be in their docs
5) Is the LPD name mapped in /etc/hosts?
6) more info (redundant request :) )

--
----------------------------------------------------
Pat Welch, UBB Computer Services, a WCS Affiliate
Caldera Authorized Partner
Unix/Linux/Windows/Hardware Sales/Support
(209) 745-1401 Fax: (413) 714-2833
Nationwide pager: (800) 608-7122
E-mail: pat...@inreach.com
----------------------------------------------------

Mike Brown

unread,
Feb 26, 2002, 10:27:07 PM2/26/02
to

You require some secret information.

The name of the print queue on the Ricoh is something like

RDP_123456

where the 123456 is the serial number of the printer. I think
it may also be the last digits of the MAC address of the ethernet
interface.

So, set up a hosts entry for the copier
eg:

192.168.100.44 ricoh01 ricoh01.anywhere.com

and then configure a lpd printer as

RDP_123456@ricoh01

Good luck,

Mike
--
Michael Brown

The Kingsway Group

Chris Rendall

unread,
Feb 28, 2002, 3:05:02 PM2/28/02
to
Mike Brown <mi...@tkg.ca> wrote in news:3C7C520B...@tkg.ca:

> Chris Rendall wrote:
>>
>> I'm trying to configure my Open UNIX system to print to our networked
>> Ricoh copiers and it's not quite working.
>>

> You require some secret information.
>
> The name of the print queue on the Ricoh is something like
>
> RDP_123456
>
> where the 123456 is the serial number of the printer. I think
> it may also be the last digits of the MAC address of the ethernet
> interface.
>

Thanks Mike! That was it!

I have the Aficio Manager installed on one of my Windows Servers and that
application goes out and finds all my Ricoh copier/printers and returns the
"secret" information on each printer. Once I entered that information in
for the printer setup the printing started working perfectly.

Thanks,
Chris

Chris Rendall

unread,
Feb 28, 2002, 6:20:34 PM2/28/02
to
>
> Thanks Mike! That was it!
>
> I have the Aficio Manager installed on one of my Windows Servers and
> that application goes out and finds all my Ricoh copier/printers and
> returns the "secret" information on each printer. Once I entered that
> information in for the printer setup the printing started working
> perfectly.
>
> Thanks,
> Chris
>
>

Looks like I might have spoken too soon. All but one of my Ricoh
copier/printers prints out. The one that doesn't is an Aficio 450 which is
the oldest of the Ricoh's we have. The document seems to sit in the queue
for 10 minutes until it times unlike to others that print right away. I may
have to check with my Ricoh dealer to see if there is anything they can do.

Chris

Mike Brown

unread,
Feb 28, 2002, 9:50:05 PM2/28/02
to

Try printing the printserver config page for each of the printers, I can
remember that the earlier ones having a default configuration that I had
to change. If my memory was better ....

Chris Rendall

unread,
Feb 28, 2002, 3:01:38 PM2/28/02
to
Thanks Mike! That was it!

I have the Aficio Manager installed on one of my Windows Servers and that
application goes out and finds all my Ricoh copier/printers and returns the

"secret" information on each printer. Once I plugged that in information in
the printing is working perfectly.

Thanks,
Chris


"Mike Brown" <mi...@tkg.ca> wrote in message news:3C7C520B...@tkg.ca...

Chris Rendall

unread,
Mar 1, 2002, 4:00:54 PM3/1/02
to
I've got a copy of netcat and I was able to configure filePro to print out
with it and from the command line I can print to the Ricoh copier using
netcat. But using the lp command to use netcat doesn't work. The examples
I found use OpenServer 5 with netcat and I'm not sure what I need to change
to get it to work with Open UNIX. The printing systems seem to be quite
different between OpenServer and Open UNIX/UnixWare.

Anyone have any suggestions on how to configure the lp command to use netcat
to output to the copier/printer?

Thanks,
Chris

Jean-Pierre Radley

unread,
Mar 1, 2002, 4:49:00 PM3/1/02
to ScoMisc [c.u.s.m]
Chris Rendall propounded (on Fri, Mar 01, 2002 at 09:00:54PM +0000):

Either Tom Melvin or Jeff Liebermann or both of them have simple sample
lp interface scripts that use netcat, on their respecitve websites. I'll
dig one out if you can't find them yourself.

--
JP

Tony Lawrence

unread,
Mar 2, 2002, 6:15:06 AM3/2/02
to
Jean-Pierre Radley wrote:


From the FAQ: http://pcunix.com/SCOFAQ/scotec7.html#getnetcat


A simple netcat interface script is:

PORT=9100 # for hp, netgear, some others
shift; shift; shift; shift; shift
# throw away everything but the file names
cat $* | netcat -h printserver -p $PORT

There are other examples here.

Printing through pipe device: http://pcunix.com/SCOFAQ/scotec7.html#ncex1

Printing through interface script: http://pcunix.com/SCOFAQ/scotec7.html#ncex2

You'll also want to see http://pcunix.com/Jeffl/portnumbers.html


--
Tony Lawrence
SCO/Linux Support Tips, How-To's, Tests and more: http://pcunix.com

Bill Vermillion

unread,
Mar 2, 2002, 11:02:45 AM3/2/02
to
In article <20020301214...@jpradley.jpr.com>,

Just for reference so he [and anyone else can find it[ that source is

http://www.cruzio.com/~jeffl/sco/lp

I thought I saw one of your interface scripts there at one time but
I dont' see it there now.

Bill

--
Bill Vermillion - bv @ wjv . com

Chris Rendall

unread,
Mar 4, 2002, 9:43:18 AM3/4/02
to
Tony Lawrence <to...@pcunix.com> wrote in
news:3C80B4EE...@pcunix.com:
> There are other examples here.
>
> Printing through pipe device:
> http://pcunix.com/SCOFAQ/scotec7.html#ncex1
>
> Printing through interface script:
> http://pcunix.com/SCOFAQ/scotec7.html#ncex2
>
> You'll also want to see http://pcunix.com/Jeffl/portnumbers.html
>

Thanks for the excellent links! I used the one on printing throught the
interface script and it works great.

Thanks again!

Chris

0 new messages