View previous topic :: View next topic |
Author |
Message |
Capitan Tux's lil' helper
Joined: 08 Aug 2004 Posts: 85
|
Posted: Sun Aug 08, 2004 3:42 pm Post subject: Grub Problem |
|
|
Hallo,
Ich bin seit heute morgen am gentoo installieren. zuvor hatte ich redhat/mandrake/suse und immer lilo installiert.
bei gentoo hab ich mich jetzt mal für grub entschieden und prompt probleme damit . wenn ich nämlich gentoo auswähle kommt ein fehler 15, der besagt, dass eine datei nicht gefunden wurde. das bzImage wurde nach /boot/kernel-2.6.7 kopiert. meine /boot partition befindet sich unter hda6 -> bei grub muß ich also hd0,5 eintragen, oder ?
meine / partition befindet sich unter hda4.
hier einmal meine grub.conf:
Code: | # Sample boot menu configuration file
#
# Boot automatically after 30 secs.
timeout 10
# By default, boot the first entry.
default 0
# Fallback to the second entry.
fallback 1
# For booting GNU/Hurd
title= gentoo Linux
root (hd0,5)
kernel (hd0,5)/kernel-2.6.7 root=/dev/hda4
module /boot/serverboot.gz
# For booting Windows NT or Windows95
title=Windows XP
rootnoverify (hd0,0)
chainloader +1
# chainload /bootsect.dos
# Change the colors.
title Change the colors
color light-green/brown blink-red/blue
|
meines erachtens müßten die einträge so korrekt sein .
es wäre wirklich klasse, wenn mir bei diesem problem jemand weiterhelfen könnte.
mfg
Capitan |
|
Back to top |
|
|
psyqil Advocate
Joined: 26 May 2003 Posts: 2767
|
|
Back to top |
|
|
Capitan Tux's lil' helper
Joined: 08 Aug 2004 Posts: 85
|
Posted: Sun Aug 08, 2004 4:03 pm Post subject: |
|
|
ich werd's mal ändern . |
|
Back to top |
|
|
Capitan Tux's lil' helper
Joined: 08 Aug 2004 Posts: 85
|
Posted: Sun Aug 08, 2004 4:23 pm Post subject: |
|
|
also ich hab die grub.conf jetzt verändert.
jetzt wird am anfang zwar normal gebootet (ca 2s) - es steht auch dran: booting from kernel, aber dann bleibt der bildschirm schwarz und nur ganz unten blinkt der cursor. ich kann aber weder etwas schreiben noch die konsole wechseln oder neustarten .
was mach ich denn immer nur falsch ? |
|
Back to top |
|
|
_hephaistos_ Advocate
Joined: 07 Apr 2004 Posts: 2694 Location: salzburg, austria
|
Posted: Sun Aug 08, 2004 4:27 pm Post subject: |
|
|
hmmmm framebuffer nicht richtig aktiviert?
ciao |
|
Back to top |
|
|
Sas Veteran
Joined: 05 Jul 2003 Posts: 1229 Location: Germany
|
Posted: Sun Aug 08, 2004 4:28 pm Post subject: |
|
|
Dann hast du wahrscheinlich was in deiner Kernel-Config falsch.... _________________ 42 |
|
Back to top |
|
|
psyqil Advocate
Joined: 26 May 2003 Posts: 2767
|
Posted: Sun Aug 08, 2004 4:34 pm Post subject: |
|
|
Capitan wrote: | was mach ich denn immer nur falsch ? | Schöne Grüße von Edward A. Murphy, Jr. Da das Grub-Problem behoben scheint, such im Forum doch mal nach 'kernel bootet nicht' oder so, und wenn Du nichts findest, mach einen neuen Thread mit ausführlichen Angaben über Deine Hardware und Kernelkonfiguration.
Viel Erfolg! |
|
Back to top |
|
|
Capitan Tux's lil' helper
Joined: 08 Aug 2004 Posts: 85
|
Posted: Sun Aug 08, 2004 7:12 pm Post subject: |
|
|
danke für die tipps.
gibt es bei gentoo die möglichkeit mit der livecd zu booten und nen neuen kernel zu kompilieren, oder darf ich da den ganzen spaß nochmal von vorne machen ? |
|
Back to top |
|
|
Raistlin l33t
Joined: 17 May 2004 Posts: 691 Location: Boston, MA
|
Posted: Sun Aug 08, 2004 7:25 pm Post subject: |
|
|
ja, du bootest mit der livecd:
dann, wenn er fertig ist, mountest du die partitionen entsprechend deinen einstellungen. (sei z.b. /dev/hda1 == boot, /dev/hda2 == swap und /dev/hda3 == /)
dann würde es folgendermassen weitergehen:
Code: |
mount /dev/hda3 /mnt/gentoo/
mount /dev/hda1 /mnt/gentoo/boot
swapon /dev/hda2
mount -t proc none /mnt/gentoo/proc
|
dann noch schnell ein Code: | chroot /mnt/gentoo /bin/bash |
und schon kannst du mit Code: | cd /usr/src/linux
make menuconfig
|
den kernel neu konfigurieren, compilieren, module compilieren/installieren, den kernel nach /boot kopieren und die grub.conf (bzw. menu.lst) datei anpassen.
danach Code: | exit
umount /mnt/gentoo/boot /mnt/gentoo/proc /mnt/gentoo
reboot |
und es sollte gehen
gruss, raist. _________________ Zwei Was Eins Initially
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." |
|
Back to top |
|
|
|