HI
Ich hab zwei platten in meinem PC, hda und hdb, auf hdb habe ich wie im gentoo howto sdb1 zu /boot , sdb2 zu swap und sdb3 zu / gemacht
und nach vielen steps auch grub-install -no--floppy /dev/sdb aufgerufen.
Nach einem neustart erscheint zwar dann das grub prompt (grub>) aber nicht das menu mit meinen einträgen aus menu.lst
setze ich dann in der grub command line
|
Quellcode
|
1
|
root (hd1,0)
|
und sage
|
Quellcode
|
1
|
configfile /grub/grub.conf
|
erscheint das menü.
Meine frage ist, warum das menü nicht gleich erscheint?
ich hab auch schon versucht grub direkt einzurichten mit
|
Quellcode
|
1
2
3
|
grub> root (hd1,0)
grub> setup
grub> quit
|
wie hier
http://www.gentoo.de/doc/de/handbook/han…?part=1&chap=10
aber auch ohne erfolg, es kommt immer nur das grub prompt!
hier noch meine konfigs / verzeichnisse, shen eigentlich so aus wie hier
http://www.gentoo.org/doc/de/grub-error-guide.xml
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
gentoo ~ # cat /boot/grub/menu.lst
# This is a sample grub.conf for use with Genkernel, per the Gentoo handbook
# http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=10#doc_chap2
# If you are not using Genkernel and you need help creating this file, you
# should consult the handbook. Alternatively, consult the grub.conf.sample that
# is included with the Grub documentation.
default 0
timeout 30
#splashimage=(hd1,0)/boot/grub/splash.xpm.gz
titleGentoo 2.6.36 02.01.2011
root(hd1,0)
kernel/boot/gentoo-2.6.36r5 root=/dev/sdb3
|
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
gentoo ~ # ls -al /boot/
total 4407
drwxr-xr-x 4 root root1024 Jan 2 21:14 .
drwxr-xr-x 18 root root4096 Jan 3 12:17 ..
-rw-r--r-- 1 root root 0 Jan 3 11:59 .keep
lrwxrwxrwx 1 root root 1 Jan 2 16:06 boot -> .
-rw-r--r-- 1 root root 4473888 Jan 2 19:21 gentoo-2.6.36r5
drwxr-xr-x 2 root root1024 Jan 3 12:43 grub
drwx------ 2 root root 12288 Jan 2 15:35 lost+found
gentoo ~ # ls -al /boot/grub/
total 446
drwxr-xr-x 2 root root 1024 Jan 3 12:43 .
drwxr-xr-x 4 root root 1024 Jan 2 21:14 ..
-rw-r--r-- 1 root root197 Jan 3 12:43 default
-rw-r--r-- 1 root root 30 Jan 2 23:00 device.map
-rw-r--r-- 1 root root 8692 Jan 3 12:43 e2fs_stage1_5
-rw-r--r-- 1 root root 7820 Jan 3 12:43 fat_stage1_5
-rw-r--r-- 1 root root 7088 Jan 3 12:43 ffs_stage1_5
-rw-r--r-- 1 root root668 Jan 3 12:52 grub.conf
-rw-r--r-- 1 root root 7088 Jan 3 12:43 iso9660_stage1_5
-rw-r--r-- 1 root root 8684 Jan 3 12:43 jfs_stage1_5
lrwxrwxrwx 1 root root 9 Jan 2 21:14 menu.lst -> grub.conf
-rw-r--r-- 1 root root658 Jan 3 12:06 menu.lst.save
-rw-r--r-- 1 root root 7292 Jan 3 12:43 minix_stage1_5
-rw-r--r-- 1 root root 9684 Jan 3 12:43 reiserfs_stage1_5
-rw-r--r-- 1 root root 33856 Jan 3 11:59 splash.xpm.gz
-rw-r--r-- 1 root root512 Jan 3 12:43 stage1
-rw-r--r-- 1 root root 107912 Jan 3 12:43 stage2
-rw-r--r-- 1 root root 107912 Jan 2 23:00 stage2.old
-rw-r--r-- 1 root root 107912 Jan 3 11:59 stage2_eltorito
-rw-r--r-- 1 root root 7344 Jan 3 12:43 ufs2_stage1_5
-rw-r--r-- 1 root root 6692 Jan 3 12:43 vstafs_stage1_5
-rw-r--r-- 1 root root 9524 Jan 3 12:43 xfs_stage1_5
gentoo ~ #
|
vielen dank schon mal!