- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Mirror boot disk on RHEL4
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
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
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
тАО02-08-2007 05:42 AM
тАО02-08-2007 05:42 AM
Thanks.
Geetha.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2007 06:05 AM
тАО02-08-2007 06:05 AM
SolutionAfter the installation, you need to save the contents of the /boot/efi using a backup tool. Then you need to manually create the raid (using raidtab o mdadm), using the partitions (the actual boot/efi and the reserved on the second disk), create the vfat filesystem on it and then restore the backup. (See the howtos)
Then you can add the second disk as an option on the EFI shell.
Is not an easy task, but can be done.
Basic steps after installation could be:
tar cvf /root/efiboot.tar /boot/efi
umount /boot/efi
parted /dev/sda
Set the boot partition as RAID
parted /dev/sdb
Set the boot partition as RAID
mdadm ├в -create -├в verbose /dev/md
/dev/sdb1
mkfs -t vfat /dev/md
mount -t vfat /dev/md
cd /
tar xvf /root/efiboot.tar
Edit /etc/fstab and replace /dev/sda1 on /boot/efi by /dev/md
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2007 06:48 AM
тАО02-08-2007 06:48 AM
Re: Mirror boot disk on RHEL4
As I am new to the RHEL - some of my questions may be very basic. I don't remember seeing an option for mirroring partitions other than /boot/efi during installation? Where is the option? When I create partitions such as /usr, /var /home etc - should I choose type as RAID?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-08-2007 08:43 AM
тАО02-08-2007 08:43 AM
Re: Mirror boot disk on RHEL4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-09-2007 03:14 AM
тАО02-09-2007 03:14 AM
Re: Mirror boot disk on RHEL4
Thanks!