You are not logged in.

#1 2009-09-13 02:26:59

brenix
Member
From: California
Registered: 2008-03-05
Posts: 185

[SOLVED]Kernel26-bfs hangs on boot detecting hard drive

So I just installed kernel26-bfs (2.6.31) from the AUR. Modified my menu.lst to point to the kernel26-bfs.img. When booting it will hang right after udev is initialized and say "Waiting for 10 seconds for /dev/disk/by-uuid/......". It will then drop into the ramfs shell.

I've tried setting my BIOS settings for the hard drive, but neither worked..

Do I need to change my fstab or menu.lst for this to work? I've noticed in the thread that the performance counters need to be disabled..Not sure if I need to do anything about that...

This has happened on two of my machines now.

Anyone?

Last edited by brenix (2009-09-16 22:30:07)

Offline

#2 2009-09-13 02:44:56

sand_man
Member
From: Australia
Registered: 2008-06-10
Posts: 2,164

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Well the uuid shouldn't have changed but just check to be sure.
Is the root device uuid the same for the vanilla kernel in menu.1st?


neutral

Offline

#3 2009-09-13 02:51:12

brenix
Member
From: California
Registered: 2008-03-05
Posts: 185

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Ya, below is the output of my menu.lst and blkid. I'm currently using kernel 2.6.31 from the testing repo, which works fine.

I just realized, but in Con's readme, it did mention that bfs isn't friendly with reiserfs. Could that be why? I hope not..I really want it to work

$ cat /boot/grub/menu.lst 
# (0) Arch Linux
title  Arch Linux
root   (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/1948b712-da71-46e5-ad3b-d0dd60903b1a ro vga=792
initrd /kernel26.img
$ blkid 
/dev/sda1: UUID="07cdb5d3-f6af-4348-a98c-8bfe0c38c2e5" TYPE="ext2" 
/dev/sda2: UUID="ff260dd9-31ac-496b-ad5b-492245f3cf64" TYPE="swap" 
/dev/sda3: UUID="1948b712-da71-46e5-ad3b-d0dd60903b1a" TYPE="reiserfs" 
/dev/sda4: UUID="33129a6e-4ddd-4272-bf3b-7509690bd1f5" TYPE="reiserfs"

Offline

#4 2009-09-14 14:26:34

brenix
Member
From: California
Registered: 2008-03-05
Posts: 185

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Ok, so I tried to use it with one of my machines with ext4, but still same issue. I feel like I'm missing something

Offline

#5 2009-09-14 14:58:57

Zariel
Member
Registered: 2008-10-07
Posts: 446

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

If you press CTRL+ALT+DEL do you get the x SCSI message?

Offline

#6 2009-09-14 15:52:30

brenix
Member
From: California
Registered: 2008-03-05
Posts: 185

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Zariel wrote:

If you press CTRL+ALT+DEL do you get the x SCSI message?

As far as I know I don't, it just reboots.

Offline

#7 2009-09-14 15:59:36

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

brenix wrote:

Ya, below is the output of my menu.lst and blkid. I'm currently using kernel 2.6.31 from the testing repo, which works fine.

I just realized, but in Con's readme, it did mention that bfs isn't friendly with reiserfs. Could that be why? I hope not..I really want it to work

$ cat /boot/grub/menu.lst 
# (0) Arch Linux
title  Arch Linux
root   (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/1948b712-da71-46e5-ad3b-d0dd60903b1a ro vga=792
initrd /kernel26.img
$ blkid 
/dev/sda1: UUID="07cdb5d3-f6af-4348-a98c-8bfe0c38c2e5" TYPE="ext2" 
/dev/sda2: UUID="ff260dd9-31ac-496b-ad5b-492245f3cf64" TYPE="swap" 
/dev/sda3: UUID="1948b712-da71-46e5-ad3b-d0dd60903b1a" TYPE="reiserfs" 
/dev/sda4: UUID="33129a6e-4ddd-4272-bf3b-7509690bd1f5" TYPE="reiserfs"

Try change /dev/disk/by/uuid/..
to /dev/your / partition smile


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#8 2009-09-14 16:24:15

Bogart
Member
From: Madrid, Spain
Registered: 2005-06-22
Posts: 272

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

brenix wrote:

Ya, below is the output of my menu.lst and blkid. I'm currently using kernel 2.6.31 from the testing repo, which works fine.

I just realized, but in Con's readme, it did mention that bfs isn't friendly with reiserfs. Could that be why? I hope not..I really want it to work

$ cat /boot/grub/menu.lst 
# (0) Arch Linux
title  Arch Linux
root   (hd0,0)
kernel /vmlinuz26 root=/dev/disk/by-uuid/1948b712-da71-46e5-ad3b-d0dd60903b1a ro vga=792
initrd /kernel26.img
$ blkid 
/dev/sda1: UUID="07cdb5d3-f6af-4348-a98c-8bfe0c38c2e5" TYPE="ext2" 
/dev/sda2: UUID="ff260dd9-31ac-496b-ad5b-492245f3cf64" TYPE="swap" 
/dev/sda3: UUID="1948b712-da71-46e5-ad3b-d0dd60903b1a" TYPE="reiserfs" 
/dev/sda4: UUID="33129a6e-4ddd-4272-bf3b-7509690bd1f5" TYPE="reiserfs"

So the root partition is /dev/sda3, right? Shouldn't that make the "root" line to have something like (hd0,2)? Not sure if it matters, but it did catch my attention.

Offline

#9 2009-09-14 19:48:30

brenix
Member
From: California
Registered: 2008-03-05
Posts: 185

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Yes, the root is sda3. I've used the aif "auto-prepare" option during install.

::Layout::
sda1 (boot) # where the kernel26-bfs.img is...
sda2 (swap)
sda3 (root)
sda4 (home)

I'll try changing it to root=/dev/sda1 when I get home, but I think i've tried it already. Will post back with result..

Offline

#10 2009-09-16 14:42:21

endtroducing
Member
From: Montreal, Quebec
Registered: 2007-02-22
Posts: 10

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Hi!

Can you please tell me what is the meaning of BSF? Did you find a solution for your problem? Im in the same situation.

Thanks!

Last edited by endtroducing (2009-09-16 14:42:58)

Offline

#11 2009-09-16 14:55:43

pyther
Member
Registered: 2008-01-21
Posts: 1,395
Website

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

If you do not know the meaning of the BFS kernel, then you shouldn't be using it, use the stock arch kernel instead.


Website - Blog - arch-home
Arch User since March 2005

Offline

#12 2009-09-16 16:27:21

endtroducing
Member
From: Montreal, Quebec
Registered: 2007-02-22
Posts: 10

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

pyther wrote:

If you do not know the meaning of the BFS kernel, then you shouldn't be using it, use the stock arch kernel instead.

You're right, I should not be using it with my hardware. I have 16 processors in my machine. Thanks! Your comment was very helpfull.

Last edited by endtroducing (2009-09-16 16:28:13)

Offline

#13 2009-09-16 17:10:24

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

endtroducing wrote:
pyther wrote:

If you do not know the meaning of the BFS kernel, then you shouldn't be using it, use the stock arch kernel instead.

You're right, I should not be using it with my hardware. I have 16 processors in my machine. Thanks! Your comment was very helpfull.

I think pyther has some right , he wanted to warn you becouse you can have some problems with this sheluder (It is in early stage).
I will explain something about BFS.
Like someone says its oriented for low-latency and desktop use , its fast (apps speedup becouse it uses 100% of your CPU).
Ok that's all wink

Last edited by SpeedVin (2009-09-16 17:11:15)


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#14 2009-09-16 17:25:30

Zariel
Member
Registered: 2008-10-07
Posts: 446

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

endtroducing wrote:
pyther wrote:

If you do not know the meaning of the BFS kernel, then you shouldn't be using it, use the stock arch kernel instead.

You're right, I should not be using it with my hardware. I have 16 processors in my machine. Thanks! Your comment was very helpfull.

Then you shouldnt use BFS either.

Offline

#15 2009-09-16 17:45:37

brisbin33
Member
From: boston, ma
Registered: 2008-07-24
Posts: 1,796
Website

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

i had 2.6.30-bfs (installed from AUR) working just fine all last week.  yesterday, it froze right about where you mentioned on my first reboot after upgrading to 2.6.31-bfs (i use UUIDs with ext3 /). 

this morning i've reinstalled (recompiled) and this time it didnt ask me for any input on config options (as it did yesterday).  i hope to try and boot into it again tonight.  i hope whatever it was is fixed, bfs felt much snappier (placebo affect notwithstanding wink).

Offline

#16 2009-09-16 17:50:01

brenix
Member
From: California
Registered: 2008-03-05
Posts: 185

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Hmm, I've never received a input for the config options. I'm still running into the same issue after changing it to /dev/sda1 (or sda3)...Maybe tonight I'll try recompiling/installing with makepkg rather than yaourt.

If it works for you, let me know what ya did differently

Last edited by brenix (2009-09-16 17:50:36)

Offline

#17 2009-09-16 17:59:10

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Remember use your own config wink


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

#18 2009-09-16 19:37:52

brisbin33
Member
From: boston, ma
Registered: 2008-07-24
Posts: 1,796
Website

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

SpeedVin, i thought your PKGBUILD used the config file from stock arch + Cons FAQ recommendations (n to dynticks and 1000 Ghz or whatever).  is this not the case?

Offline

#19 2009-09-16 22:29:43

brenix
Member
From: California
Registered: 2008-03-05
Posts: 185

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

Ok, finally solved. Did a few things different. Not sure which fixed it, but its working fast now too!

1. Modified config file and disabled performance counters
2. Installed package with makepkg rather than yaourt
3. Found out that I forgot to use vmlinuz26-bfs for the kernel line in menu.lst (doh!)

Offline

#20 2009-09-18 18:29:36

SpeedVin
Member
From: Poland
Registered: 2009-04-29
Posts: 955

Re: [SOLVED]Kernel26-bfs hangs on boot detecting hard drive

brisbin33 wrote:

SpeedVin, i thought your PKGBUILD used the config file from stock arch + Cons FAQ recommendations (n to dynticks and 1000 Ghz or whatever).  is this not the case?

I uses configs posted by bangok_manuel in bfs topic on the forum wink
Own Config based on following config is better wink


Shell Scripter | C/C++/Python/Java Coder | ZSH

Offline

Board footer

Powered by FluxBB