linux-admin.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Teste kernel for a certain capability
@ 2005-04-16 18:56 Mário Gamito
  2005-04-16 21:53 ` markus reichelt
  0 siblings, 1 reply; 5+ messages in thread
From: Mário Gamito @ 2005-04-16 18:56 UTC (permalink / raw)
  To: linux-admin

Hi,

Is there a command one can issue to check if the kernel supports a
certain feature ?

Let's say, for instance, Appletalk, or NTFS.
Whatever...

Warm Regards,
Mário Gamito
-
To unsubscribe from this list: send the line "unsubscribe linux-admin" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Teste kernel for a certain capability
  2005-04-16 18:56 Teste kernel for a certain capability Mário Gamito
@ 2005-04-16 21:53 ` markus reichelt
  2005-04-16 22:09   ` Mário Gamito
  0 siblings, 1 reply; 5+ messages in thread
From: markus reichelt @ 2005-04-16 21:53 UTC (permalink / raw)
  To: linux-admin

[-- Attachment #1: Type: text/plain, Size: 726 bytes --]

Mário Gamito <lists@tuxdoit.com> wrote:
> Is there a command one can issue to check if the kernel supports a
> certain feature ?

something like "make tests"? ;)

not really, one has to actually try to use the feature in question to
determine if the kernel supports it correctly.

And it further depends on the type of kernel, a monolithic one or the
ordinary module kernel. If the latter is the case you could check if
the feature's module is loaded, but ... that's by no means a
guarantee for that the feature will work. May also depend on the
distro you are using, among other stuff.

Rule of thumb: You have to stress-test it

Anything specific you are looking for?

--
Bastard Administrator in $hell

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: Teste kernel for a certain capability
  2005-04-16 21:53 ` markus reichelt
@ 2005-04-16 22:09   ` Mário Gamito
  2005-04-16 22:38     ` markus reichelt
  0 siblings, 1 reply; 5+ messages in thread
From: Mário Gamito @ 2005-04-16 22:09 UTC (permalink / raw)
  To: markus reichelt; +Cc: linux-admin

Hi Markus,

> Rule of thumb: You have to stress-test it
> 
> Anything specific you are looking for?
Checking for AppleTalk monolithic support would be nice :)

> 
> --
> Bastard Administrator in $hell
Aren't we all ;-) ?

Regards,
Mário Gamito

-
To unsubscribe from this list: send the line "unsubscribe linux-admin" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Teste kernel for a certain capability
  2005-04-16 22:09   ` Mário Gamito
@ 2005-04-16 22:38     ` markus reichelt
  2005-04-20  5:00       ` Brian Benson
  0 siblings, 1 reply; 5+ messages in thread
From: markus reichelt @ 2005-04-16 22:38 UTC (permalink / raw)
  To: linux-admin

[-- Attachment #1: Type: text/plain, Size: 827 bytes --]

Mário Gamito <lists@tuxdoit.com> wrote:
> > Rule of thumb: You have to stress-test it
> > 
> > Anything specific you are looking for?
> Checking for AppleTalk monolithic support would be nice :)

Hm. Haven't played with that one yet, but what about some script you
run at some time (end) of the boot process? As far as I know,
AppleTalk's purpose was to allow multiple users to share resources.
Check for those; if it works, go ahead, do your stuff, if not well,
time for plan B. I use that kind of approach (feature is present, but
its usability is the point) on my laptop when I connect to my LAN to
check for the presence of backup servers (-> NFS)


> > --
> > Bastard Administrator in $hell
> Aren't we all ;-) ?

As it should be; users better have a backup ;)

-- 
Bastard Administrator in $hell


[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: Teste kernel for a certain capability
  2005-04-16 22:38     ` markus reichelt
@ 2005-04-20  5:00       ` Brian Benson
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Benson @ 2005-04-20  5:00 UTC (permalink / raw)
  To: linux-admin

If it is 2.6 and it has .config.gz support then you can just extract
the config from /proc, load it in a new kernel and run make menuconfig
to check out whats included.

On 4/16/05, markus reichelt <ml@bitfalle.org> wrote:
> Mário Gamito <lists@tuxdoit.com> wrote:
> > > Rule of thumb: You have to stress-test it
> > >
> > > Anything specific you are looking for?
> > Checking for AppleTalk monolithic support would be nice :)
> 
> Hm. Haven't played with that one yet, but what about some script you
> run at some time (end) of the boot process? As far as I know,
> AppleTalk's purpose was to allow multiple users to share resources.
> Check for those; if it works, go ahead, do your stuff, if not well,
> time for plan B. I use that kind of approach (feature is present, but
> its usability is the point) on my laptop when I connect to my LAN to
> check for the presence of backup servers (-> NFS)
> 
> 
> > > --
> > > Bastard Administrator in $hell
> > Aren't we all ;-) ?
> 
> As it should be; users better have a backup ;)
> 
> --
> Bastard Administrator in $hell
> 
> 
>
-
To unsubscribe from this list: send the line "unsubscribe linux-admin" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2005-04-20  5:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-16 18:56 Teste kernel for a certain capability Mário Gamito
2005-04-16 21:53 ` markus reichelt
2005-04-16 22:09   ` Mário Gamito
2005-04-16 22:38     ` markus reichelt
2005-04-20  5:00       ` Brian Benson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).