- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- software mirror of boot disk in Itanium rx2620 ser...
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
06-13-2005 01:45 AM
06-13-2005 01:45 AM
How can make a software mirror whith Red Had Enterprise 3 of a boot disk and his filesystems in a Itanium server rx2620.
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 02:19 AM
06-13-2005 02:19 AM
SolutionI don't know if RH E3 supports md (multiple devices) installation from the very beginning.
But if it doesn't you will have to follow some guidelines after the system installation.
Refer to
http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html_single/Software-RAID-HOWTO.html
Hope it helps,
Xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2005 08:21 AM
06-20-2005 08:21 AM
Re: software mirror of boot disk in Itanium rx2620 server
It works fine because i did it once.
After installation, you can add and option to the EFI to boot from the mirror.
But if you want to do it AFTER the installation is tricky. You should check the howtos. (Software RAID HOWTO)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2005 10:08 AM
06-20-2005 10:08 AM
Re: software mirror of boot disk in Itanium rx2620 server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2005 11:51 PM
06-20-2005 11:51 PM
Re: software mirror of boot disk in Itanium rx2620 server
Here you have some good documentation that may guide you to what you want, if RH3 does not support initial installation of boot partition on raid devices.
http://howtos.linux.com/howtos/Software-RAID-HOWTO-7.shtml
Regards,
Xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2005 01:31 AM
06-22-2005 01:31 AM
Re: software mirror of boot disk in Itanium rx2620 server
After 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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2005 04:12 AM
06-22-2005 04:12 AM
Re: software mirror of boot disk in Itanium rx2620 server
thnaks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2005 04:30 AM
06-22-2005 04:30 AM
Re: software mirror of boot disk in Itanium rx2620 server
tar cvf /root/efiboot.tar /boot/efi
umount /boot/efi
Edit /etc/raidtab
raiddev /dev/mdN
raid-level 1
nr-raid-disks 2
nr-spare-disks 0
chunk-size 32
persistent-superblock 1
device /dev/sda1
raid-disk 0
device /dev/sdb1
raid-disk 1
In /dev/mdN, N sould be the next available raid device. sda1 y sdb1 are the 150 MB partitions. sda1 is the current boot/efi and will be destroyed.
mkraid /dev/mdN
mkfs -t vfat /dev/mdN
mount -t vfat /dev/mdN /boot/efi
cd /
tar xvf /root/efiboot.tar
Edit /etc/fstab and replace /dev/sda1 on /boot/efi by /dev/mdN.