- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how to know the kernel features are enabled or dis...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2004 02:14 PM
тАО07-05-2004 02:14 PM
how to know the kernel features are enabled or disabled
I am working on a RHEL3.0 without source code installed. Application team asked me to check if some kernel features are enabled:
COFNIG_NET
CONFIG_SYSVIPC
CONFIG_BINFMT_ELF
etc..
How to know if they are enabled or disabled.
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2004 03:39 PM
тАО07-05-2004 03:39 PM
Re: how to know the kernel features are enabled or disabled
Short answers for the 3 listed:
If you have networking (at all), then CONFIG_NET is configured in.
If you can run most executables, CONFIG_BINFMT_ELF is configured in.
CONFIG_SYSVIPC will be compiled in, as it provides compatability with previous versions of SYS V IPC (Inter-Process communications). It's highly unlikely this one isn't compiled in.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2004 06:24 PM
тАО07-05-2004 06:24 PM
Re: how to know the kernel features are enabled or disabled
Kernel configuration settings are updated in the .config file. Features enablement uses "y" "n" or "m". Where
y - it is enabled
n - it is not enabled
m - modularised one
By default,
COFNIG_NET
CONFIG_SYSVIPC
CONFIG_BINFMT_ELF options are enabled.
Regards,
Muthukumar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2004 07:31 PM
тАО07-05-2004 07:31 PM
Re: how to know the kernel features are enabled or disabled
perhaps "sysctl -a" will also be little usefull for your purposes, for more info see man sysctl
Hope this will help you
br Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-05-2004 08:56 PM
тАО07-05-2004 08:56 PM
Re: how to know the kernel features are enabled or disabled
sysctl will be used to get the system control configuration settings. We can not ge t the kernel parameters with that.
.config file we be the source to know this. Default kernel's config will be located at /usr/src/linux-2.x.x/configs directory.
We can identify the kernel type and it's related .config file from grub loader or lilo loader.
Regards,
Muthukumar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-06-2004 01:03 AM
тАО07-06-2004 01:03 AM