Chris
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
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
----------------------------------------------------
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 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
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
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 ....
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...
Anyone have any suggestions on how to configure the lp command to use netcat
to output to the copier/printer?
Thanks,
Chris
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
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
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
Thanks for the excellent links! I used the one on printing throught the
interface script and it works great.
Thanks again!
Chris