- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Kernel Configurations
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
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
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
01-08-2003 10:58 AM
01-08-2003 10:58 AM
Kernel Configurations
I'm trying to install something on our advance server 2.1 running kernel 2.4.9 It is telling me to check if the following features are enabled. Where do I look for these features. Any help is greatly appreciated.
CONFIG_NET
CONFIG_BINFMT_ELF
CONFIG_INET
CONFIG_NETDEVICES.
Any help is greatly appreciated and points will be assigned.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2003 09:20 PM
01-08-2003 09:20 PM
Re: Kernel Configurations
On my Suse 8.1 system, those entries can be found in:
/boot/vmlinux.config
/boot/vmlinux.autoconf.h
HTH,
Kel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2003 09:46 PM
01-08-2003 09:46 PM
Re: Kernel Configurations
kernel features are defined in .config file
First install Kernel source RPM
Then
#cd /usr/src/linux-2.4.9
#vi .config
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2003 10:40 PM
01-08-2003 10:40 PM
Re: Kernel Configurations
If you've compiled your own kernel, U.SivaKumar's response will be right on the money.
With a little reading (/usr/share/doc/kernel-doc/Configure.help), and some nutting out we can duduce the following things.
The existance of /proc/sys/net says that CONFIG_NET is enabled, just as /proc/sys/net/ipv4/ says that CONFIG_INET is enabled.
If you have a working network card in the system, CONFIG_NETDEVICES is enabled.
As for CONFIG_BINFMT_ELF, well this requires a little more exploration. Type:
file `which file`
It should return a string similar to:
/usr/bin/file: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), not stripped
The fact that you could run this, and ELF binary, means that this config setting is set to either Y or M. Issuing:
lsmod | grep binfmt_elf
will show whether it's a module (M, it will show a line) or compiled into the kernel (Y, the above won't return anything).
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2003 07:26 AM
01-09-2003 07:26 AM
Re: Kernel Configurations
Although I have used a few versions of RH (quickly dropped in favor of Mandrake and Suse)
I have never had the opportunity to use Advanced Server.
Good to know, thanks again,
Kel