All of lore.kernel.org
 help / color / mirror / Atom feed
* list of compiled in support
@ 2002-07-08 20:48 Martinez, Michael - CSREES/ISTM
  2002-07-08 21:00 ` Richard B. Johnson
  2002-07-09 10:20 ` Alan Cox
  0 siblings, 2 replies; 11+ messages in thread
From: Martinez, Michael - CSREES/ISTM @ 2002-07-08 20:48 UTC (permalink / raw)
  To: 'linux-kernel@vger.kernel.org'

How does one tell if a kernel has compiled in support for ipx?

Michael Martinez
System Administrator (Contractor)
Information Systems and Technology Management
CSREES - United States Department of Agriculture
(202) 720-6223


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: list of compiled in support
  2002-07-08 20:48 Martinez, Michael - CSREES/ISTM
@ 2002-07-08 21:00 ` Richard B. Johnson
  2002-07-09 10:20 ` Alan Cox
  1 sibling, 0 replies; 11+ messages in thread
From: Richard B. Johnson @ 2002-07-08 21:00 UTC (permalink / raw)
  To: Martinez, Michael - CSREES/ISTM; +Cc: 'linux-kernel@vger.kernel.org'

On Mon, 8 Jul 2002, Martinez, Michael - CSREES/ISTM wrote:

> How does one tell if a kernel has compiled in support for ipx?
> 
> Michael Martinez
> System Administrator (Contractor)
> Information Systems and Technology Management
> CSREES - United States Department of Agriculture
> (202) 720-6223
> 

You can tell if it supports ipx, but you can't tell if it supports
it because you loaded a module or because it was compiled in.


`ls /proc/net/ipx*`  will show.......

           ipx ipx_interface ipx_route

... if you've got ipx enabled (somehow).

To find if it's enabled by a module, then you can then do:

`lsmod | grep ipx` if you found it was enabled.

Cheers,
Dick Johnson

Penguin : Linux version 2.4.18 on an i686 machine (797.90 BogoMips).

                 Windows-2000/Professional isn't.


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: list of compiled in support
  2002-07-08 20:48 Martinez, Michael - CSREES/ISTM
  2002-07-08 21:00 ` Richard B. Johnson
@ 2002-07-09 10:20 ` Alan Cox
  1 sibling, 0 replies; 11+ messages in thread
From: Alan Cox @ 2002-07-09 10:20 UTC (permalink / raw)
  To: Martinez, Michael - CSREES/ISTM; +Cc: 'linux-kernel@vger.kernel.org'

> How does one tell if a kernel has compiled in support for ipx?

Open an AF_IPX socket

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: list of compiled in support
@ 2002-07-09 12:47 Martinez, Michael - CSREES/ISTM
  2002-07-09 12:53 ` Thunder from the hill
  0 siblings, 1 reply; 11+ messages in thread
From: Martinez, Michael - CSREES/ISTM @ 2002-07-09 12:47 UTC (permalink / raw)
  To: 'Alan Cox', Martinez, Michael - CSREES/ISTM; +Cc: linux-kernel

Okay. this would require a little C code right? is there a shell command
line tool I could use instead?

Michael Martinez
System Administrator (Contractor)
Information Systems and Technology Management
CSREES - United States Department of Agriculture
(202) 720-6223


-----Original Message-----
From: Alan Cox [mailto:alan@lxorguk.ukuu.org.uk]
Sent: Tuesday, July 09, 2002 6:20 AM
To: MMARTINEZ@intranet.reeusda.gov
Cc: linux-kernel@vger.kernel.org
Subject: Re: list of compiled in support


> How does one tell if a kernel has compiled in support for ipx?

Open an AF_IPX socket

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: list of compiled in support
  2002-07-09 12:47 Martinez, Michael - CSREES/ISTM
@ 2002-07-09 12:53 ` Thunder from the hill
  0 siblings, 0 replies; 11+ messages in thread
From: Thunder from the hill @ 2002-07-09 12:53 UTC (permalink / raw)
  To: Martinez, Michael - CSREES/ISTM; +Cc: 'Alan Cox', linux-kernel

Hi,

On Tue, 9 Jul 2002, Martinez, Michael - CSREES/ISTM wrote:
> Okay. this would require a little C code right? is there a shell command
> line tool I could use instead?

What exactly is your intention? IPX networking from a shell script?

							Regards,
							Thunder
-- 
(Use http://www.ebb.org/ungeek if you can't decode)
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GCS/E/G/S/AT d- s++:-- a? C++$ ULAVHI++++$ P++$ L++++(+++++)$ E W-$
N--- o?  K? w-- O- M V$ PS+ PE- Y- PGP+ t+ 5+ X+ R- !tv b++ DI? !D G
e++++ h* r--- y- 
------END GEEK CODE BLOCK------


^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: list of compiled in support
@ 2002-07-09 13:01 Martinez, Michael - CSREES/ISTM
  0 siblings, 0 replies; 11+ messages in thread
From: Martinez, Michael - CSREES/ISTM @ 2002-07-09 13:01 UTC (permalink / raw)
  To: 'root@chaos.analogic.com',
	Martinez, Michael - CSREES/ISTM
  Cc: 'linux-kernel@vger.kernel.org'

great, thanks

Michael Martinez
System Administrator (Contractor)
Information Systems and Technology Management
CSREES - United States Department of Agriculture
(202) 720-6223


-----Original Message-----
From: Richard B. Johnson [mailto:root@chaos.analogic.com]
Sent: Monday, July 08, 2002 5:01 PM
To: Martinez, Michael - CSREES/ISTM
Cc: 'linux-kernel@vger.kernel.org'
Subject: Re: list of compiled in support


On Mon, 8 Jul 2002, Martinez, Michael - CSREES/ISTM wrote:

> How does one tell if a kernel has compiled in support for ipx?
> 
> Michael Martinez
> System Administrator (Contractor)
> Information Systems and Technology Management
> CSREES - United States Department of Agriculture
> (202) 720-6223
> 

You can tell if it supports ipx, but you can't tell if it supports
it because you loaded a module or because it was compiled in.


`ls /proc/net/ipx*`  will show.......

           ipx ipx_interface ipx_route

... if you've got ipx enabled (somehow).

To find if it's enabled by a module, then you can then do:

`lsmod | grep ipx` if you found it was enabled.

Cheers,
Dick Johnson

Penguin : Linux version 2.4.18 on an i686 machine (797.90 BogoMips).

                 Windows-2000/Professional isn't.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: list of compiled in support
@ 2002-07-09 13:09 Martinez, Michael - CSREES/ISTM
  2002-07-09 13:29 ` jbradford
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Martinez, Michael - CSREES/ISTM @ 2002-07-09 13:09 UTC (permalink / raw)
  To: 'Thunder from the hill', Martinez, Michael - CSREES/ISTM
  Cc: 'Alan Cox', linux-kernel

No, no. Just simply find out whether my kernel supports ipx. And if it does
support it, then to disable it, without recompiling the kernel, perhaps by
removing ipx entries from /etc/services.

Michael Martinez
System Administrator (Contractor)
Information Systems and Technology Management
CSREES - United States Department of Agriculture
(202) 720-6223


-----Original Message-----
From: Thunder from the hill [mailto:thunder@ngforever.de]
Sent: Tuesday, July 09, 2002 8:53 AM
To: Martinez, Michael - CSREES/ISTM
Cc: 'Alan Cox'; linux-kernel@vger.kernel.org
Subject: RE: list of compiled in support


Hi,

On Tue, 9 Jul 2002, Martinez, Michael - CSREES/ISTM wrote:
> Okay. this would require a little C code right? is there a shell command
> line tool I could use instead?

What exactly is your intention? IPX networking from a shell script?

							Regards,
							Thunder
-- 
(Use http://www.ebb.org/ungeek if you can't decode)
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GCS/E/G/S/AT d- s++:-- a? C++$ ULAVHI++++$ P++$ L++++(+++++)$ E W-$
N--- o?  K? w-- O- M V$ PS+ PE- Y- PGP+ t+ 5+ X+ R- !tv b++ DI? !D G
e++++ h* r--- y- 
------END GEEK CODE BLOCK------

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: list of compiled in support
  2002-07-09 13:09 list of compiled in support Martinez, Michael - CSREES/ISTM
@ 2002-07-09 13:29 ` jbradford
  2002-07-09 14:22 ` Horst von Brand
  2002-07-09 16:43 ` Alan Cox
  2 siblings, 0 replies; 11+ messages in thread
From: jbradford @ 2002-07-09 13:29 UTC (permalink / raw)
  To: Martinez, Michael - CSREES/ISTM; +Cc: linux-kernel

Can't you just

grep ipx System.map

???  Or am I being thick again?  :-/

> No, no. Just simply find out whether my kernel supports ipx. And if it does
> support it, then to disable it, without recompiling the kernel, perhaps by
> removing ipx entries from /etc/services.
> 
> Michael Martinez
> System Administrator (Contractor)
> Information Systems and Technology Management
> CSREES - United States Department of Agriculture
> (202) 720-6223
> 
> 
> -----Original Message-----
> From: Thunder from the hill [mailto:thunder@ngforever.de]
> Sent: Tuesday, July 09, 2002 8:53 AM
> To: Martinez, Michael - CSREES/ISTM
> Cc: 'Alan Cox'; linux-kernel@vger.kernel.org
> Subject: RE: list of compiled in support
> 
> 
> Hi,
> 
> On Tue, 9 Jul 2002, Martinez, Michael - CSREES/ISTM wrote:
> > Okay. this would require a little C code right? is there a shell command
> > line tool I could use instead?
> 
> What exactly is your intention? IPX networking from a shell script?
> 
> 							Regards,
> 							Thunder
> -- 
> (Use http://www.ebb.org/ungeek if you can't decode)
> ------BEGIN GEEK CODE BLOCK------
> Version: 3.12
> GCS/E/G/S/AT d- s++:-- a? C++$ ULAVHI++++$ P++$ L++++(+++++)$ E W-$
> N--- o?  K? w-- O- M V$ PS+ PE- Y- PGP+ t+ 5+ X+ R- !tv b++ DI? !D G
> e++++ h* r--- y- 
> ------END GEEK CODE BLOCK------
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: list of compiled in support
  2002-07-09 13:09 list of compiled in support Martinez, Michael - CSREES/ISTM
  2002-07-09 13:29 ` jbradford
@ 2002-07-09 14:22 ` Horst von Brand
  2002-07-09 16:43 ` Alan Cox
  2 siblings, 0 replies; 11+ messages in thread
From: Horst von Brand @ 2002-07-09 14:22 UTC (permalink / raw)
  To: Martinez, Michael - CSREES/ISTM; +Cc: linux-kernel

"Martinez, Michael - CSREES/ISTM" <MMARTINEZ@intranet.reeusda.gov> said:
> No, no. Just simply find out whether my kernel supports ipx. And if it does
> support it, then to disable it, without recompiling the kernel, perhaps by
> removing ipx entries from /etc/services.

Deleting entries from /etc/services and such won't disable anything, just
make it a triffle more dificult to use.

If you want to disable it, do so. If it isn't there, it will complain.
-- 
Dr. Horst H. von Brand                   User #22616 counter.li.org
Departamento de Informatica                     Fono: +56 32 654431
Universidad Tecnica Federico Santa Maria              +56 32 654239
Casilla 110-V, Valparaiso, Chile                Fax:  +56 32 797513

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: list of compiled in support
  2002-07-09 13:09 list of compiled in support Martinez, Michael - CSREES/ISTM
  2002-07-09 13:29 ` jbradford
  2002-07-09 14:22 ` Horst von Brand
@ 2002-07-09 16:43 ` Alan Cox
  2 siblings, 0 replies; 11+ messages in thread
From: Alan Cox @ 2002-07-09 16:43 UTC (permalink / raw)
  To: Martinez, Michael - CSREES/ISTM
  Cc: 'Thunder from the hill', Martinez Michael - CSREES/ISTM,
	'Alan Cox', linux-kernel

> No, no. Just simply find out whether my kernel supports ipx. And if it does
> support it, then to disable it, without recompiling the kernel, perhaps by
> removing ipx entries from /etc/services.

If IPX is compiled into the kernel then you can't disable it from the kernel.
You can certainly check what ipx tools are installed and make sure those are
not activated - but thats really distro specific - most don't ship any IPX
using apps.

Alan

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: list of compiled in support
@ 2002-07-09 20:23 Martinez, Michael - CSREES/ISTM
  0 siblings, 0 replies; 11+ messages in thread
From: Martinez, Michael - CSREES/ISTM @ 2002-07-09 20:23 UTC (permalink / raw)
  To: 'jbradford@dial.pipex.com',
	Martinez, Michael - CSREES/ISTM
  Cc: linux-kernel

Or maybe:

strings /proc/kernel/ksyms | grep ipx

Michael Martinez
System Administrator (Contractor)
Information Systems and Technology Management
CSREES - United States Department of Agriculture
(202) 720-6223


-----Original Message-----
From: jbradford@dial.pipex.com [mailto:jbradford@dial.pipex.com]
Sent: Tuesday, July 09, 2002 9:30 AM
To: MMARTINEZ@intranet.reeusda.gov
Cc: linux-kernel@vger.kernel.org
Subject: Re: list of compiled in support


Can't you just

grep ipx System.map

???  Or am I being thick again?  :-/

> No, no. Just simply find out whether my kernel supports ipx. And if it
does
> support it, then to disable it, without recompiling the kernel, perhaps by
> removing ipx entries from /etc/services.
> 
> Michael Martinez
> System Administrator (Contractor)
> Information Systems and Technology Management
> CSREES - United States Department of Agriculture
> (202) 720-6223
> 
> 
> -----Original Message-----
> From: Thunder from the hill [mailto:thunder@ngforever.de]
> Sent: Tuesday, July 09, 2002 8:53 AM
> To: Martinez, Michael - CSREES/ISTM
> Cc: 'Alan Cox'; linux-kernel@vger.kernel.org
> Subject: RE: list of compiled in support
> 
> 
> Hi,
> 
> On Tue, 9 Jul 2002, Martinez, Michael - CSREES/ISTM wrote:
> > Okay. this would require a little C code right? is there a shell command
> > line tool I could use instead?
> 
> What exactly is your intention? IPX networking from a shell script?
> 
> 							Regards,
> 							Thunder
> -- 
> (Use http://www.ebb.org/ungeek if you can't decode)
> ------BEGIN GEEK CODE BLOCK------
> Version: 3.12
> GCS/E/G/S/AT d- s++:-- a? C++$ ULAVHI++++$ P++$ L++++(+++++)$ E W-$
> N--- o?  K? w-- O- M V$ PS+ PE- Y- PGP+ t+ 5+ X+ R- !tv b++ DI? !D G
> e++++ h* r--- y- 
> ------END GEEK CODE BLOCK------
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2002-07-09 20:20 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-07-09 13:09 list of compiled in support Martinez, Michael - CSREES/ISTM
2002-07-09 13:29 ` jbradford
2002-07-09 14:22 ` Horst von Brand
2002-07-09 16:43 ` Alan Cox
  -- strict thread matches above, loose matches on Subject: below --
2002-07-09 20:23 Martinez, Michael - CSREES/ISTM
2002-07-09 13:01 Martinez, Michael - CSREES/ISTM
2002-07-09 12:47 Martinez, Michael - CSREES/ISTM
2002-07-09 12:53 ` Thunder from the hill
2002-07-08 20:48 Martinez, Michael - CSREES/ISTM
2002-07-08 21:00 ` Richard B. Johnson
2002-07-09 10:20 ` Alan Cox

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.