03.05.2025, 18:02 UhrDeutsch | English
Hallo Gast [ Registrierung | Anmelden ]

Neues Thema eröffnen   Neue Antwort erstellen
Vorheriges Thema anzeigen Druckerfreundliche Version Einloggen, um private Nachrichten zu lesen Nächstes Thema anzeigen
Autor Nachricht
KlausO
Titel: Kanotix startet nicht  BeitragVerfasst am: 31.05.2009, 14:57 Uhr



Anmeldung: 20. Jun 2008
Beiträge: 14

Hallo,

ich habe Excalibur mit KDE 3.5.10, auf meiner "hdb5" mit ext3 und dem bootloader in der Rootpartion (hdb5) installiert. In meinem "grub" ist folgender Eintrag:
Code:
title Kanotix
root (hd1,4)
chainloader +1
ich bekomme dann folgende Fehlermeldung:
Code:
root (hd1,4)
Filesytem type is ext2fs, partition type 0x83
chainloader +1
Error 13: Invalid or unsupported executable format
Press any key to contiune...
Ich benutze eigentlich immer den chainloader. Was mache ich hier falsch?

_________________
Gruß Klaus
- Jeder hat ein Recht auf Dummheit - manche übertreiben es aber mit diesem Privileg! -
 
 Benutzer-Profile anzeigen Private Nachricht senden  
Antworten mit Zitat Nach oben
Kano
Titel: Kanotix startet nicht  BeitragVerfasst am: 31.05.2009, 15:47 Uhr



Anmeldung: 17. Dez 2003
Beiträge: 16792

Normal nichts, aber du kannst grub2 auch in den mbr installieren, findet alle anderen Linux installs eh über os-prober.
 
 Benutzer-Profile anzeigen Private Nachricht senden  
Antworten mit Zitat Nach oben
KlausO
Titel:   BeitragVerfasst am: 31.05.2009, 18:29 Uhr



Anmeldung: 20. Jun 2008
Beiträge: 14

Sorry Kano,

das habe ich leider nicht kapiert Verlegen

mein jetziges grub, über das der PC gestartet wird:
Code:
timeout 10
color black/cyan yellow/cyan
gfxmenu (hd0,0)/usr/share/gfxboot/themes/pclinuxos/boot/message
default 0

title PCLinuxOS 2.6.26.8.tex3
kernel (hd0,0)/boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=PCLinuxOS_2.6.26.8.tex3 root=/dev/hda1 acpi=on resume=/dev/hda5 splash=silent vga=788
initrd (hd0,0)/boot/initrd-2.6.26.8.tex3.img

title failsafe
kernel (hd0,0)/boot/vmlinuz BOOT_IMAGE=failsafe root=/dev/hda1 failsafe acpi=on resume=/dev/hda5
initrd (hd0,0)/boot/initrd.img

title windows 2000
root (hd1,0)
map (hd0) (hd1)
map (hd1) (hd0)
chainloader +1

title Kanotix
root (hd1,4)
chainloader +1

aus der root Partition von Kantotix:
Code:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from  and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(hd1,5)
search --fs-uuid --set c6fe6a37-dfeb-41f5-8739-ae6540b0d3e2
if loadfont /usr/share/grub/ascii.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set root=(hd1,5)
search --fs-uuid --set c6fe6a37-dfeb-41f5-8739-ae6540b0d3e2
insmod png
if background_image /boot/grub/KanotixPenguins.png ; then
  set color_normal=light-blue/black
  set color_highlight=white/blue
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Debian GNU/Linux, linux 2.6.28-13-generic" {
   set root=(hd1,5)
   search --fs-uuid --set c6fe6a37-dfeb-41f5-8739-ae6540b0d3e2
   linux   /boot/vmlinuz-2.6.28-13-generic root=/dev/sdb5 ro quiet vga=791 splash
   initrd   /boot/initrd.img-2.6.28-13-generic
}
menuentry "Debian GNU/Linux, linux 2.6.28-13-generic (recovery mode)" {
   set root=(hd1,5)
   search --fs-uuid --set c6fe6a37-dfeb-41f5-8739-ae6540b0d3e2
   linux   /boot/vmlinuz-2.6.28-13-generic root=/dev/sdb5 ro single quiet vga=791 splash
   initrd   /boot/initrd.img-2.6.28-13-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "PCLinuxOS 2.6.26.8.tex3 (on /dev/sda1)" {
   set root=(hd0,1)
   linux /boot/vmlinuz-2.6.26.8.tex3 BOOT_IMAGE=PCLinuxOS_2.6.26.8.tex3 root=/dev/hda1 acpi=on resume=/dev/hda5 splash=silent vga=788
   initrd (hd0,0)/boot/initrd-2.6.26.8.tex3.img
}
menuentry "failsafe (on /dev/sda1)" {
   set root=(hd0,1)
   linux /boot/vmlinuz BOOT_IMAGE=failsafe root=/dev/hda1 failsafe acpi=on resume=/dev/hda5
   initrd (hd0,0)/boot/initrd.img
}
menuentry "Toorox (on /dev/sda1)" {
   set root=(hd0,1)
   linux /boot/vmlinuz root=/dev/hdb5 vga=791 nomce noapic lang=de
   initrd (hd1,4)/boot/initrd.gz
}
menuentry "Microsoft Windows 2000 Professional (on /dev/sdb1)" {
   set root=(hd1,1)
   chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file is an example on how to add custom entries
### END /etc/grub.d/40_custom ###

Ich nehme nicht an das ich die "alte" menu.lst einfach nur durch die grub.cfg tauschen darf / kann, ist ja grub und grub2. Hier von habe ich leider garkeine Ahnung.

_________________
Gruß Klaus
- Jeder hat ein Recht auf Dummheit - manche übertreiben es aber mit diesem Privileg! -
 
 Benutzer-Profile anzeigen Private Nachricht senden  
Antworten mit Zitat Nach oben
Kano
Titel:   BeitragVerfasst am: 31.05.2009, 18:41 Uhr



Anmeldung: 17. Dez 2003
Beiträge: 16792

Installier einfach grub2 in deinem alten system, siehe !grub2 beim Bot.
 
 Benutzer-Profile anzeigen Private Nachricht senden  
Antworten mit Zitat Nach oben
Beiträge vom vorherigen Thema anzeigen:     
Gehe zu:  
Alle Zeiten sind GMT + 1 Stunde
Neues Thema eröffnen   Neue Antwort erstellen
Vorheriges Thema anzeigen Druckerfreundliche Version Einloggen, um private Nachrichten zu lesen Nächstes Thema anzeigen
PNphpBB2 © 2003-2007 
 
Deutsch | English
Logos and trademarks are the property of their respective owners, comments are property of their posters, the rest is © 2004 - 2006 by Jörg Schirottke (Kano).
Consult Impressum and Legal Terms for details. Kanotix is Free Software released under the GNU/GPL license.
This CMS is powered by PostNuke, all themes used at this site are released under the GNU/GPL license. designed and hosted by w3you. Our web server is running on Kanotix64-2006.