- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Raid on linux
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
10-20-2005 08:35 PM
10-20-2005 08:35 PM
Raid on linux
I use ML 110, os linux,2 non hot Hdd, non smart array.
Can i creating and install raid by software ?
what i can do ?
Thank .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 10:54 PM
10-20-2005 10:54 PM
Re: Raid on linux
Check out the link about how to create RAID array:
http://www.tldp.org/HOWTO/Software-RAID-HOWTO.html
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 11:45 PM
10-20-2005 11:45 PM
Re: Raid on linux
The easiest way to do it is during the installation. See the installation guide for your distribution.
Basically, you need to configure partitions in the disks as "software raid", after that, you create the raid devices.
If you want to do after the installation is more complicated, but you still need to see the software-raid howto to know how to verify the status of the software raid devices.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 07:56 PM
10-21-2005 07:56 PM
Re: Raid on linux
1.First of all, run fdisk and change partition type from linux LVM to linux raid auto 0xfd.
2.Then create a file /etc/raidtab , use man raidtab for helping u about creating it.
3.run mkdraid /dev/md0
4.mke2fs -j -b 4096 -R stride=x /dev/md0, where (x= chunck size/blocksize in k, could be 16 ...)
5.add a line for it in /etc/fstab
HTH
Ziad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 08:07 PM
10-21-2005 08:07 PM
Re: Raid on linux
HTH
Ziad