- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Bios showing two cpu
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
05-22-2002 07:15 AM
05-22-2002 07:15 AM
Bios showing two cpu
I've compiled my kernel with smp supports, but only one cpu is showing up in top, there's suppose to be according to the BIOS during boot. What gives? Shouldn't the kernel detected that there are 2 cpu on the system? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2002 03:29 PM
05-22-2002 03:29 PM
Re: Bios showing two cpu
Whilst he BIOS will state that there are two CPU's, it will also state whether a board is capable of having 2 CPU's.. Are you sure you arn't mis-interpreting what the bootup is saying?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2002 04:19 PM
05-22-2002 04:19 PM
Re: Bios showing two cpu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2002 05:35 PM
05-22-2002 05:35 PM
Re: Bios showing two cpu
1) confirm you are using SMP kernel.
# dmesg
2) see your kernel recognize how many cpus.
# cat /proc/cpuinfo
If you see 2 cpus in cpuinfo,
find out which version of top you are using.
In your question, you didn't mention about your distribution.
If you are using Red Hat, top is in procps RPM.
# rpm -q procps
procps-2.0.6 show you only one line cpu usage. procps-2.0.7 support individual cpu usage.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2002 07:02 AM
05-24-2002 07:02 AM
Re: Bios showing two cpu
Does it matter if I used i386 instead of i686 for the kernel, I am wondering about this because according to uname I have an i686.
For those who wish to know the type of HardWare and Flavor of Linux; I runing RH7.1 with 2.4.18 kernel (i386) with smp support. The box is a Compact Proliant.
Does any one have any idea why my kernel is only detecting 1 cpu whereas the BIOS tells me that there's 2 cpu? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2002 01:17 PM
05-24-2002 01:17 PM
Re: Bios showing two cpu
Are you enabling CPU ID in the BIOS for both CPU's or only for one of them?
may i see your SMP options for your .config kernel file?
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 05:44 AM
05-28-2002 05:44 AM
Re: Bios showing two cpu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2002 11:55 AM
05-31-2002 11:55 AM
Re: Bios showing two cpu
From the SMP HowTO
http://www.tldp.org/HOWTO/SMP-HOWTO-3.html
...
A note from Richard Jelinek says also that activating the Enhanced RTC is necessary to get the second CPU working (identified) on some original Intel Mainboards.
...
Here's the steps:
make config # or menuconfig or xconfig
make dep
make clean
make bzImage # or whatever you want
# copy the kernel image manually then RUN LILO
# or make lilo
make modules
make modules_install
Good Luck!