|
Prev: Panic with HIGHMEM enabled in RHEL3
Next: Fedora 6 to 7
From: Olivier on 6 Jul 2007 07:26 Hello, I ghosted an old server using ghost I imported that machine in a new VMWARE 5 with success, but when I am booting the system, it doesn't work. I get a grub> prompt, and nothinh happens. How can I repair GRUB PSE HELP
From: Allen Kistler on 6 Jul 2007 11:40 Olivier wrote: > I ghosted an old server using ghost > > I imported that machine in a new VMWARE 5 with success, but when I am > booting the system, it doesn't work. > > I get a grub> prompt, and nothinh happens. > > How can I repair GRUB > > PSE HELP Boot to "linux rescue" from CD #1 and install grub. If you don't know how to do that, Google is your friend for common questions like installing grub.
From: Jan Gerrit Kootstra on 6 Jul 2007 16:27 Allen Kistler wrote: > Olivier wrote: > >>I ghosted an old server using ghost >> >>I imported that machine in a new VMWARE 5 with success, but when I am >>booting the system, it doesn't work. >> >>I get a grub> prompt, and nothinh happens. >> >>How can I repair GRUB >> >>PSE HELP > > > Boot to "linux rescue" from CD #1 and install grub. > If you don't know how to do that, Google is your friend for common > questions like installing grub. Oliver, grub-install /dev/hda (ide disc) grub-install /dev/sda (scsi disc) Best regards, Jan Gerrit Kootstra
From: Allen Kistler on 6 Jul 2007 19:13 Jan Gerrit Kootstra wrote: > Allen Kistler wrote: >> Olivier wrote: >> >>> I ghosted an old server using ghost >>> >>> I imported that machine in a new VMWARE 5 with success, but when I am >>> booting the system, it doesn't work. >>> >>> I get a grub> prompt, and nothinh happens. >>> >>> How can I repair GRUB >>> >>> PSE HELP >> >> >> Boot to "linux rescue" from CD #1 and install grub. >> If you don't know how to do that, Google is your friend for common >> questions like installing grub. > > grub-install /dev/hda (ide disc) > > grub-install /dev/sda (scsi disc) .... but not straight from the rescue boot. The mounts won't be right immediately.
From: tblanchard001 on 11 Jul 2007 12:59
On Jul 6, 4:27 pm, Jan Gerrit Kootstra <jan.ger...(a)kootstra.org.uk> wrote: > Allen Kistler wrote: > > Olivier wrote: > > >>I ghosted an old server using ghost > > >>I imported that machine in a new VMWARE 5 with success, but when I am > >>booting the system, it doesn't work. > > >>I get a grub> prompt, and nothinh happens. > > >>How can I repair GRUB > > >>PSE HELP > > > Boot to "linux rescue" from CD #1 and install grub. > > If you don't know how to do that, Google is your friend for common > > questions like installing grub. > > Oliver, > > grub-install /dev/hda (ide disc) > > grub-install /dev/sda (scsi disc) > > Best regards, > > Jan Gerrit Kootstra- Hide quoted text - > > - Show quoted text - Are you using MBR or /boot to boot the system -- grub-install /dev/hda -- sets up grub in the MBR grub-install -root-directory=/boot /dev/hda -- sets up grub in the / boot directory Also try, grub>find /boot/grub/stage1 if you get a result back the rest of your stuff will be on that disk as well, then you could run: grub> root (hd0,1) -- assuming that's what the find command returned above. grub> kernel /boot/vmlinux-<kernel version> |