View Single Post

  #7 (permalink)  
Old 04-09-2006, 05:37 PM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,035
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

You need to enter nosmp and maxcpus parameter at Grub or Lilo boot prompt. For example if you are using Grub as a boot loader, at Grub prompt press 'e' to edit command before booting.

1) Select second line
2) Again, press 'e' to edit selected command
3) Go to end of line and type two parameters
nosmp maxcpus
4) Press enter twice and b to boot system
5) This will prevent the kernel panic and system hang scenario.
Once your system is up using single CPU then you can run diagnostic commands such as:

Get all boot message:
Code:
dmesg  | less
Find out if problem with PCI cards
Code:
lspci –vv
Find out what device drivers loaded (if something is missing then your driver will not get loaded)
Code:
lsmod
Get memory info (is memory detected correctly?)
Code:
free
cat /proc/meminfo
Get CPU info (see if your CPU hit by any bug):
Code:
 cat /proc/cpuinfo
Find out your kernel version:
Code:
 uname -a
If kernel is old then update it to latest stable release from RHN using up2date command
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote