Software-Raid Problem

I

informant

Guest
Hallo, ich habe soeben ein Software Raid (1) erstellt. Er zeigt auch UU an. Jetzt möchte ich jedoch gern den grub auf die andere HDD bringen, damit auch diese booten kann. Hier bekomm ich jedoch den Fehler

Code:
grub> device (hd0) /dev/sda
device (hd0) /dev/sda
grub> root (hd0,0)
 Filesystem type unknown, partition type 0xfd
grub> setup (hd0)
setup (hd0)
Error 17: Cannot mount selected partition
was für eine falsche HDD steht.

Suche ich jedoch mit
Code:
grub> find /grub/stage1 und grub> find /boot/grub/stage1
bekomm ich die Meldung
Code:
Error 15: File not found

Wie bekomme ich dann raus, welche HDD ich nehmen muss, damit ich den grub auf die 2. HDD bekomme.

Bitte um eure Hilfe. Vielen Dank.

MfG
 
Last edited by a moderator:
hast du es einfach mal mit grub-install probiert?

z.B. "grub-install /dev/sda" oder "grub-install /dev/sdb"

Code:
# grub-install --help
Usage: grub-install [OPTION] install_device
Install GRUB on your drive.

  -h, --help              print this message and exit
  -v, --version           print the version information and exit
  --modules=MODULES       pre-load specified modules MODULES
  --boot-directory=DIR    install GRUB images under the directory DIR/grub
                          instead of the /boot/grub directory
  --grub-setup=FILE       use FILE as grub-setup
  --grub-mkimage=FILE     use FILE as grub-mkimage
  --grub-mkrelpath=FILE   use FILE as grub-mkrelpath
  --grub-mkdevicemap=FILE use FILE as grub-mkdevicemap
  --grub-probe=FILE       use FILE as grub-probe
  --no-floppy             do not probe any floppy drive
  --allow-floppy          Make the drive also bootable as floppy 
                          (default for fdX devices). May break on some BIOSes.
  --recheck               probe a device map even if it already exists
  --force                 install even if problems are detected
  --disk-module=MODULE    disk module to use

INSTALL_DEVICE can be a GRUB device name or a system device filename.

grub-install copies GRUB images into /boot/grub, and uses grub-setup
to install grub into the boot sector.

Report bugs to <bug-grub@gnu.org>.
 
Hi, jo da bekomm ich folgendes:

<siehe screen>

PS: sudo-legacy ist installiert. Installeirt Debian Wheezy ja standardgemäß. Wenn ich grub2 installiere komm ich in grub nicht rein oder gibts heir einen anderen Befehl?
 

Attachments

  • screen.png
    screen.png
    4 KB · Views: 137
Last edited by a moderator:
Ah, nun scheint es zu klappen, ich habe den grub mit grub2 ersetzt und grub-install durchgeführt. siehe da, es klappt. Vielen Dank.

MfG
 
Last edited by a moderator:
Back
Top