Re: Missing parallel port

2010-01-06 Thread Ben Gemmill
It is on the mother board
Buy #plate25F16 from Startech.com and hook it up to the IDC25 pin header 
connection and mount it on the back of your computer


Re: missing parallel port

2002-04-25 Thread Jerome Acks Jr
On Wed, Apr 24, 2002 at 11:45:11AM -0700, David Smead wrote:
> Gordon,
> 
> Thanks for the reply.  I tried the modprobe - can't find such a module.
> I added CONFIG_PRINTER=y to config-2.2.19-idepci and rebooted.  Nothing
> changed.

You need to recompile the kernel for this to take effect.

Check to see if you have the lp module by running "locate lp.o"
If you have the module, it should return something like:
/lib/modules/2.2.19-idepci/kernel/drivers/char/lp.o

If you find the lp module, run modprobe again but this time
include the complete pathname to the module.

> 
> I looked at Debian packages on debian.org, and found lprng, which I have
> already on the system.  It is telling me that /dev/lp0, etc isn't found.
> The file is there, (6, 0 ). Where is the driver for that?
> 
> When I initially installed Debian on the machine, I wasn't expecting to
> attach a local printer so I probably answered NO to some question.
> 
> Do I have to re-compile the kernel???  I couldn't find anything about an
> lp package in the installation manual.
> 
> I've tried modconf and added both parport and parport_pc. With this
> config, lprngtool quits complaining about no /dev/lp0, but still nothing
> gets printed though it is getting into the Q.
> 
> 
> -- 
> Sincerely,
> 
> David Smead
> http://www.amplepower.com.
> 
> On Wed, 24 Apr 2002, Gordon Fraser wrote:
> 
> > David Smead ([EMAIL PROTECTED]) wrote:
> > > I can't print on the local printer.  I'd guess it is missing a
> > > module. Not I/O address shows up in /proc/ioports.
> > >
> > > There's a parport module that installs.
> >
> > You need to
> > $ modprobe lp
> >
> > (CONFIG_PRINTER that is, if you haven't compiled that module yet)
> >
> > Gordon
> >
> >
> 
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 

-- 
Jerome


pgpe1hAxKC92M.pgp
Description: PGP signature


Re: missing parallel port

2002-04-24 Thread David Smead
Gordon,

Thanks for the reply.  I tried the modprobe - can't find such a module.
I added CONFIG_PRINTER=y to config-2.2.19-idepci and rebooted.  Nothing
changed.

I looked at Debian packages on debian.org, and found lprng, which I have
already on the system.  It is telling me that /dev/lp0, etc isn't found.
The file is there, (6, 0 ). Where is the driver for that?

When I initially installed Debian on the machine, I wasn't expecting to
attach a local printer so I probably answered NO to some question.

Do I have to re-compile the kernel???  I couldn't find anything about an
lp package in the installation manual.

I've tried modconf and added both parport and parport_pc. With this
config, lprngtool quits complaining about no /dev/lp0, but still nothing
gets printed though it is getting into the Q.


-- 
Sincerely,

David Smead
http://www.amplepower.com.

On Wed, 24 Apr 2002, Gordon Fraser wrote:

> David Smead ([EMAIL PROTECTED]) wrote:
> > I can't print on the local printer.  I'd guess it is missing a
> > module. Not I/O address shows up in /proc/ioports.
> >
> > There's a parport module that installs.
>
> You need to
> $ modprobe lp
>
> (CONFIG_PRINTER that is, if you haven't compiled that module yet)
>
> Gordon
>
>



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: missing parallel port

2002-04-24 Thread Gordon Fraser
David Smead ([EMAIL PROTECTED]) wrote:
> I can't print on the local printer.  I'd guess it is missing a
> module. Not I/O address shows up in /proc/ioports.
> 
> There's a parport module that installs.

You need to 
$ modprobe lp

(CONFIG_PRINTER that is, if you haven't compiled that module yet)

Gordon

-- 
Gordon Fraser   There are two ways to write error-free
[EMAIL PROTECTED]programs; only the third one works.
http://www.freakzone.net


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Missing parallel port

2001-03-04 Thread csj
I needed to add this to the kernel .config

CONFIG_PARPORT_1284=y

In make menuconfig just look for that 1284 thing. And yes, do turn 
your printer on before the computer boots.

On Friday 02 March 2001 23:38, Keith G. Murphy wrote:
> Charles Radding wrote:
> > Print spoolers (I have tried CUPS and now lprng) cannot find my
> > parallel port. It's there; Windows knows about it; the kernel
> > detects it, whether the parallel port is built in or a module,
> > whether the kernel is 2.2.18 or 2.4.2;
>
> This stuff has changed under kernel 2.2, and it's a bit confusing. 
> You not only need parport.o, but parport_pc.o and lp.o (if you're
> using modules).  If you're doing 'make menuconfig' to configure the
> kernel, do:
>
> General setup => Parallel port support & PC-Style Hardware
> Character devices => Parallel printer support
>
> Basically, I guess the kernel has to know there *is* a parallel
> port, it's a PC-style one, and there's a printer on it.
>
> > e.g. from dmesg
> >
> > parport0: PC-style at 0x378 [SPP]
> >
> > But no luck on actually communicating through it with the
> > printer. In linux, that is; Windows has no trouble.
> >
> > Any suggestions?
> >
> > Charles Radding
> >
> > --
> > To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> > with a subject of "unsubscribe". Trouble? Contact
> > [EMAIL PROTECTED]



Re: Missing parallel port

2001-03-02 Thread Keith G. Murphy
Charles Radding wrote:
> 
> Print spoolers (I have tried CUPS and now lprng) cannot find my parallel
> port. It's there; Windows knows about it; the kernel detects it, whether the
> parallel port is built in or a module, whether the kernel is 2.2.18 or 2.4.2;

This stuff has changed under kernel 2.2, and it's a bit confusing.  You
not only need parport.o, but parport_pc.o and lp.o (if you're using
modules).  If you're doing 'make menuconfig' to configure the kernel,
do:

General setup => Parallel port support & PC-Style Hardware
Character devices => Parallel printer support

Basically, I guess the kernel has to know there *is* a parallel port,
it's a PC-style one, and there's a printer on it.

> e.g. from dmesg
> 
> parport0: PC-style at 0x378 [SPP]
> 
> But no luck on actually communicating through it with the printer. In linux,
> that is; Windows has no trouble.
> 
> Any suggestions?
> 
> Charles Radding
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Missing parallel port

2001-03-01 Thread Pann McCuaig
On Thu, Mar 01, 2001 at 19:10, Charles Radding wrote:
> Print spoolers (I have tried CUPS and now lprng) cannot find my parallel 
> port. It's there; Windows knows about it; the kernel detects it, whether the 
> parallel port is built in or a module, whether the kernel is 2.2.18 or 2.4.2; 
> e.g. from dmesg
> 
>   parport0: PC-style at 0x378 [SPP]
> 
> But no luck on actually communicating through it with the printer. In linux, 
> that is; Windows has no trouble.

Is the lp module (lp.o) installed? If so, does /etc/printcap reference
it properly (lp=/dev/lp0 on my system)?

Luck,
Pann
-- 
geek by nature, Linux by choice L I N U X   .~.
The Choice  /V\
http://www.ourmanpann.com/linux/ of a GNU  /( )\
Generation ^^-^^