LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-07-2008, 04:58 PM   #1
thatwaschrislee
LQ Newbie
 
Registered: Feb 2008
Posts: 20

Rep: Reputation: 0
dmesg not complete


Hello,
I have recently been experimenting building my own kernel and have run into some trouble. I feel my first problem is reading the messages outputted during boot-up.

Why are some lines displayed during boot-up but are omitted in /var/log/dmesg?

During boot-up, I can see something about VFS:... and then many hundred lines quickly scroll by looking similar to the following:
udev[349]: delete_path: rmdir(/dev/.udev/failed) failed: Read-only file system

When I check dmesg, there is no mention of any of the above errors.

chris
 
Old 03-07-2008, 05:26 PM   #2
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
I don't know why log does differ than what is on the screen but if you wish to review you can try this. I don't know the distro or version you have but here is an example of a Redhat distro to review what is on the screen.

When the grub boot manager comes up hit the 'e' key then if it is a default grub then you move up or down with the arrow key to highlight the kernel you boot. Usually defaults it. Then hit ' e ' again and you have the boot kernel configuration. arrow down to the vmlinuz line and hit ' e' again. Arrow to the end of the line and if there is the words like rghb and quiet remove those and add the number ' 3 ' to it. Hit ' b ' to boot the kernel into runlevel 3. Once booted you are at a login prompt. Hold down the left shift key and then hit page up key to scroll back. Should see everything that went to the screen from start to finish.

Brian
 
Old 03-07-2008, 11:31 PM   #3
thatwaschrislee
LQ Newbie
 
Registered: Feb 2008
Posts: 20

Original Poster
Rep: Reputation: 0
I am using slackware 12.0, linux kernel 2.6.24.3.

After boot-up I can use right-shift+pgup to see some of the boot messages but since there are so many of the mentioned udev lines, the buffer fills up and I cannot see what happens at the beginning.

chris
 
Old 03-08-2008, 08:49 AM   #4
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
No ideas as to the cause. Might google for like a portion of the error and get an idea to the cause.

Brian
 
Old 03-08-2008, 10:52 AM   #5
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Try checking '/var/log/syslog' and '/var/log/messages'. Those two combined should have everything output to the screen and more.
 
Old 03-08-2008, 02:06 PM   #6
thatwaschrislee
LQ Newbie
 
Registered: Feb 2008
Posts: 20

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by H_TeXMeX_H View Post
Try checking '/var/log/syslog' and '/var/log/messages'. Those two combined should have everything output to the screen and more.
I've checked these two files but there is no mention of the udev errors I am receiving.

btw, there may be a bunch of errors with a cp operation just before the mentioned udev problems. It flashes too quickly to be sure though.

Any other ideas??

chris
 
Old 03-08-2008, 02:42 PM   #7
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
Try hitting the pause/break key on your keyboard during the boot process - it should pause the output as it's going by, so you can make a note of it.

To resume the boot process, press pause/break again, or hit enter.

See http://en.wikipedia.org/wiki/Break_key for more info (apparently, Ctrl+NumLock has the same effect).
 
Old 03-08-2008, 02:47 PM   #8
thatwaschrislee
LQ Newbie
 
Registered: Feb 2008
Posts: 20

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by pwc101 View Post
Try hitting the pause/break key on your keyboard during the boot process - it should pause the output as it's going by, so you can make a note of it.
...(apparently, Ctrl+NumLock has the same effect).
I tried both and neither paused the output. I also tried some combinations of CTRL+pause, ALT+pause... nothing. Am I missing something??

chris
 
Old 03-08-2008, 02:53 PM   #9
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
No, I don't think so. It works for me, if I remember rightly. Sorry :/
 
Old 03-08-2008, 04:52 PM   #10
thatwaschrislee
LQ Newbie
 
Registered: Feb 2008
Posts: 20

Original Poster
Rep: Reputation: 0
I guess what I am looking for is where do I find udevmonitor's output. This is not in /var/log/syslog or /var/log/messages no matter what udev_log level is set to.

Anybody know?

thanks for the help so far,
chris
 
Old 03-08-2008, 06:00 PM   #11
thatwaschrislee
LQ Newbie
 
Registered: Feb 2008
Posts: 20

Original Poster
Rep: Reputation: 0
maybe a bit elementary, but I've found the scroll lock key to pause the start-up. Not much immediate need for the log anymore...

thanks for the suggestions,

chris
 
Old 03-08-2008, 06:58 PM   #12
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Why are some lines displayed during boot-up but are omitted in /var/log/dmesg?
As for dmesg not matching what you see on screen: that's because
dmesg is a window into the kernel ring-buffer. Problems
with scripts are NOT on kernel level, hence won't show there.



Cheers,
Tink

Last edited by Tinkster; 03-08-2008 at 07:02 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
dmesg (command) and /var/log/dmesg are different? Oxagast Linux - Software 2 07-10-2006 05:50 AM
dmesg -What's it all mean? shilo Slackware 2 09-05-2004 04:58 AM
/bin/dmesg > /dmesg-boot not Working in Knoppix 3.4 suguru Debian 2 07-04-2004 05:21 PM
dmesg XPediTioN Slackware 22 07-17-2003 08:21 PM
How could i get the full boot infos,dmesg is not good and complete whepin Linux - Newbie 1 12-26-2001 10:10 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:14 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration