- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Mondo Restore
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2003 05:32 AM
09-05-2003 05:32 AM
Mondo Restore
1) I insert the CD's and reboot
2) I nuke the system just fine and it tells me to reboot.
3) when I reboot, I get 'GRUB read error'.
so one thing I tried was,
1)boot off of floppy that was created on system 'a'.
2) run grub-install --root-directory=/boot '(hd0)'
3) I reboot, still get grub read error. Any help appreciated.
The reason I am doing this is to create a critical spare server in case 'a' dies, I can bring up 'b'.
Any help appreciated. Has anyone tried this before??????
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2003 05:42 AM
09-05-2003 05:42 AM
Re: Mondo Restore
grub-install /dev/hda
I guess you have an IDE hard drive..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2003 06:31 AM
09-05-2003 06:31 AM
Re: Mondo Restore
I have SCSI disk drives.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2003 06:57 AM
09-05-2003 06:57 AM
Re: Mondo Restore
Generally SCSI disks are /dev/sda(b) not always though..
Hope it would help.
Best regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2003 07:13 AM
09-05-2003 07:13 AM
Re: Mondo Restore
1 ) You have installed linux on A, had a full backup to DVD using mondo.
2 ) Restore this to B (hw identical of A)
But you have grub error on boot of B using mondo DVD.
I think You need to first boot B from install linux floppy or cd in rescue mode to partition your disk to the same setup/partitioning as on A
(scsi dev is probably /dev/sda* check this on A )
once this is done try you restore/mondo senario on B
Hope this help?
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2003 07:32 AM
09-05-2003 07:32 AM
Re: Mondo Restore
Actually I am getting the 'GRUB read error' after the install of the mondo cd on 'b'. Mondo restores all my data and partitions the drives just fine. All my data is on system 'b' now, I just can not boot. I get the grub read error.
B.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2003 08:14 AM
09-05-2003 08:14 AM
Re: Mondo Restore
on A
# df (to see id /dev/hda* or /dev/sda*)
then
check what dev has the boot flag
like
# fdisk -l /dev/hda (or sda this displays the partions tables)
the one with a * under boot is the boot-flag
then as parameter to grub on B
grub-install /dev/sda1
or
grub-install /dev/hda1
depending on what boot flag tell you should do it ?
Hope this time around It will help !
J-P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2003 02:38 AM
09-06-2003 02:38 AM
Re: Mondo Restore
<<<<<<<<<<<<<<<<< extract >>>>>>>>>>>>>>>>>>>
Before installing GRUB, you need to know how GRUB understands your hard drive and partition information. First of all, counting starts from 0, not from 1. In Linux, your first hard drive attached to the primary master controller is called "hda". In GRUB it becomes "hd0". Likewise, your first floppy drive in GRUB is "fd0". So the first, second and third partitions on the first hard disk (hda1, hda2 and hda3), become "hd0,0", "hd0,1" and "hd0,2" in GRUB. NOTE: the comma is an integral part of GRUB partition nomenclature.
To integrate the two fields (disk drive number and partition number) around the comma into one, use parentheses. For example: (hd0,0) (hd0,1) (hd0,2) and so on. (hd0,0) is first partition on first hard disk. Similarly, (hd1,5) is the sixth partition on second hard disk and (hd2,0) is first partition on third hard disk.
<<<<<<<<<<<<<<<< end of extract >>>>>>>>>>>>>>
the full article is at
http://www.linuxgazette.com/issue64/kohli.html
J-P