Working with Linux kernel oops messages
Even if you're not a kernel hacker, sometimes you may want to learn that which sections of the kernel code results the oops messages. To do this, you have to learn ksymoops utility:
ksymoops -v vmlinux -m System.map
When we start ksymoops as above, it waits oops messages from standart input, copy and paste here and it will be shows the problem like that:
>>EIP; 800e21e4 <assign_rx_buffers+38/108> <=======
Simply we learn that it is related to network core. But of course there are more than this, you should discover the other parameters and usage too.
- 1 Comment
- Murat Demirten
- 17 Apr 2008, 15:56
-
sign-up for an account to post comments.
Maybe you should look at these also:
USERBOX
CATEGORIES
MOST READ TODAY
- Disabling reverse dns lookups in ssh
- XFS Filesystem has duplicate UUID problem
- How to record a linux session
- Remove all frozen messages from exim mail queue
- Learning which libraries are used for a binary
- Disabling ssh password authentication
- Enabling remote desktop on a VirtualBox Machine
- Users with /bin/false shell to login on vsftpd
- Syntax highlighting in less
- Persistent device naming with udev
LAST ADDED
- Using iPhone internet sharing over bluetooth under Linux
- Using USB sound card with amarok
- Multi-conditional search and replace (clearing a ftp trojan script example)
- Disabling ipv6 functionality
- How to convert a mp3 file
- How to choose the fastest Debian mirror
- Disabling reverse dns lookups in ssh
- Rewriting destination ip address
- Deleting A File By It's Inode Value
- Learning which libraries are used for a binary

nice tip.