|
Linux Tutorial: Rename a RAID Array |
 vote
 |
|
I am moving a raid array called /dev/md0 from serverA to serverB. On serverB /dev/md0 is already in use. How do I rename a RAID array from /dev/md0 to /dev/md2?
You can move a RAID array (software based RAID array) to another system. However, if /dev/md0 is already is use on serverB, you can rename /dev/md0 as /dev/m2. read more... |
|
| | permapage | score:9114 | -nixcraft, November 27, 2012 |
|
Set up RAID1 on running Ubuntu 10.04 |
 vote
 |
|
| This guide explains how to set up software RAID1 on an already running Ubuntu 10.04 system. The GRUB2 bootloader will be configured in such a way that the system will still be able to boot if one of the hard drives fails (no matter which one). read more... |
|
| | permapage | score:9072 | -falko, July 6, 2010 |
|
Install RAID 10 on Ubuntu |
 vote
 |
|
| The Ubuntu Live CD installer does not support software RAID, and the server and alternate CDs only allow you to do RAID levels 0, 1, and 5. Raid 10 is the fastest RAID level that also has good redundancy too. So I was disappointed that Ubuntu did not have it as a option for my new file server. I did not want shell out lots of money for a RAID controller, especially since benchmarks show little performance benefit using a Hardware controller configured for RAID 10 in a file server. read more... |
|
| | permapage | score:8729 | -falko, August 20, 2008 |
|
Einarc v1.3: RAID configuration tool |
 vote
 |
|
| Most of hard-core Linux admins encountered hardware RAIDs and know what pain they could be to maintain and configure properly. Usually, you have to download some sort of proprietary CLI or GUI tool from vendor's website, learn it, try to understand its commands and, finally, use it to configure RAID or check its status. Einarc is a solution for all this hassle: it's a universal storage RAID command line interface and an API that provides management for various hardware/software RAID devices. Einarc would autodetect hardware RAID on a server, would automatically downloaded required command-line tool and wrap it around in a convenient and easy to learn syntax. It works as a translator that makes it possible for an admin to control all these devices using simple terms like "physical disc", "logical disc", "adapter", etc., while transparently converting these requests to proprietary RAID paradigms. For example, no matter what hardware RAID is used on a server, it's always easy to check state of its logical discs with Einarc. Just issue a "logical list" command and grep for "degraded" discs to see if there's a failure. Same thing goes for any event log reading/monitoring (log list), RAID array creation or modification (logical add), setting up various adapter options, etc. Version 1.3 of Einarc came after massive half a year of work on it and sports the following features: - Support for 3ware / AMCC controllers.
- Full read/write support of Linux software RAIDs.
- Updated all proprietary utilities URLs, pumped up version numbers, fixed wrapper regular expressions to support new versions of CLIs.
- Added new calculated fields in adapter_info: PCI product/subproduct and vendor/subvendor IDs. These allow precise identification of PCI devices related to adapters shown by Einarc.
- Fuller BBU support for Adaptec adapters.
- Multiple stability and build fixes.
As of version 1.3, the following RAIDs are supported: - Adaptec SCSI and SAS/SATA
- AMCC/3ware
- Areca
- LSI MegaRAID SCSI/SAS/SATA
- Fusion/MPT HBA
- Linux software MD device (for sake of completeness)
Einarc v1.3 is a part of Inquisitor, a free Linux hardware stress testing and benchmarking platform, which uses Einarc extensively for HDD testing purposes. read more... |
|
| | mail this link | permapage | score:8720 | -GreyCat, December 16, 2008 |
|
Proxmox 2 With Software Raid |
 vote
 |
|
| Proxmox Virtual Environment is an easy to use Open Source virtualization platform for running Virtual Appliances and Virtual Machines. Proxmox does not officially support software raid but I have found software raid to be very stable and in some cases have had better luck with it than hardware raid. read more... |
|
| | permapage | score:8699 | -falko, May 5, 2012 |
|
Tutorial: btrfs RAID1 with Ubuntu 12.10 on a Hetzner Server |
 vote
 |
|
| This tutorial shows how to install Ubuntu 12.10 on the btrfs filesystem (with RAID1) on a Hetzner server with two hard drives. While Hetzner's installimage tool doesn't list btrfs as a supported filesystem and only supports software RAID with /dev/md devices, it is still possible to achieve this setup and use the built-in RAID support in btrfs instead of using /dev/md devices. read more... |
|
| | permapage | score:8674 | -falko, January 7, 2013 |
|
Benchmarks: SSD vs. SATA RAID |
 vote
 |
|
Performance differences between SATA RAID and Solid State Drives are measured and discussed...
Solid state drives (SSD) have many advantages over traditional spinning-platter hard drives including no noise, low power and heat generation, good resistance to shock, and most importantly, extremely low seek times. To see just how much an SSD might improve performance, I used Bonnie++ to benchmark a contemporary SSD as it might be used in a laptop computer. (take a look at these contemporary prints) read more... |
|
| | mail this link | permapage | score:8620 | -Ray, July 30, 2008 (Updated: April 24, 2012) |
|
Tutorial: Network RAID1 with DRBD (Debian 6) |
 vote
 |
|
| This tutorial shows how to set up network RAID1 with the help of DRBD on two Debian Squeeze systems. DRBD stands for Distributed Replicated Block Device and allows you to mirror block devices over a network. This is useful for high-availability setups (like a HA NFS server) because if one node fails, all data is still available from the other node. read more... |
|
| | permapage | score:8331 | -falko, August 23, 2011 |
|
Tutorial: Mirrored RAID with GRUB |
 vote
 |
|
How to migrate from a single-disk bootable Linux installation to a RAID-1 system...
This article assumes you are using GRUB as your bootloader, and that you have an existing, working, and bootable installation of Linux. This document (should) contain every command required to convert a single drive over to a fully mirrored RAID-1 system. During the process, you will have an opportunity to change the filesystem type (perhaps from Ext2 to XFS or ReiserFS); I will be migrating partitions from Ext2 to Ext3 and XFS. read more... |
|
| | mail this link | permapage | score:8233 | -Ray, September 12, 2005 |
|
Nested RAID |
 vote
 |
|
An excellent explanation of nested RAID configurations and their trade-offs in two parts: RAID-01 and RAID-10, and a second article covering combinations of RAID-5 and RAID-6 with RAID-1 and RAID-0. (There is also a background introduction / refresher article on basic RAID levels here.)
In general, it’s fairly easy to recognize a Nested RAID configuration because it will have two or more numbers designating the combination of standard RAID levels. For example RAID-10 uses both RAID-1 and RAID-0 to create the Nested RAID configuration. RAID-51 uses RAID-5 and RAID-1 to create that Nested RAID configuration, and so on.
The order of the numbers in the Nested RAID designation is important. The first number to the left is the lowest standard RAID level used (just above the disks). The next highest RAID level is the next number to the right and so on. read more... |
|
| | mail this link | permapage | score:8220 | -Ray, January 14, 2011 |
|
Build your own (very) cheap RAID array |
 vote
 |
|
For a grand total of under $250, a half-terabyte RAID-5 SCSI array...
What self-respecting geek doesn't get the warm fuzzies at the mere mention of the RAID. With the rising GB to Dollar ratio, we felt it was a good time to feature a project that takes Pure Geekieness(TM) and mixes in a good helping of do it your self. Where else are you going to store all those MP3s (legally obtained, of course)? On a single 200 GB Drive? Or a RAID 5 Array? Take you pick, I know where I will be storing mine. read more... |
|
| | mail this link | permapage | score:8193 | -Ray, June 27, 2005 |
|
Installing Ubuntu on a RAID System |
 vote
 |
|
| This guide describes how to install Ubuntu (Ubuntu+GNOME) or Kubuntu (Ubuntu+KDE) 6.06.1 LTS (Dapper Drake) on a single or a multi-boot RAID system. It is meant as a variation of Ubuntu Wiki FakeRAID HowTo document, but digested and with minimum commentary. Its goal is to allow new Ubuntu users to complete an entire installation within 30 minutes, almost entirely by copy and paste. read more... |
|
| | permapage | score:8171 | -falko, February 9, 2007 |
|
ZFS and RAID-Z |
 vote
 |
|
Sun's new filesystem wants to protect your data...
Sun says ZFS and the new data replication model it includes, RAID-Z, can eliminate the need for additional expensive hardware. RAID-Z is a new take on the RAID systems that many system administrators employ promote data integrity. Sun believes the ZFS filesystem with RAID-Z offers "virtually unlimited capacity, provable data integrity, and near-zero administration."
ZFS provides transactional semantics -- which stores data changes and updates at once, rather than writing to disk as a file is altered -- and end-to-end data integrity, according to Sun developer Jeff Bonwick. read more... |
|
| | mail this link | permapage | score:8128 | -Ray, January 30, 2006 |
|
Set up RAID1 on CentOS/RedHat 6.0 System |
 vote
 |
|
| This tutorial is for turning a single disk CentOS 6 system into a two disk RAID1 system. The GRUB bootloader will be configured in such a way that the system will still be able to boot if one of the hard drives fails (no matter which one). read more... |
|
| | permapage | score:8124 | -falko, October 24, 2011 |
|
Install RAID5 and LVM on Debian |
 vote
 |
|
Do it the easy way with the Debian Etch installer...
Our team at LinuxForce recently put together a Debian server with LVM on a software RAID5 volume. This has been possible through complex installation procedures in the past, but today the Debian Etch installer is capable of handling such an installation if you follow the proper steps, which I outline in this article.
Among other things, we needed the flexibility to write partition tables for Xen on the fly, dependability that would allow a generous replacement window when harddrives failed, and as little possibility of data loss and downtime through harddrive failure as possible. read more... |
|
| | mail this link | permapage | score:7914 | -Ray, April 1, 2007 |
|
Tutorial: Managing Linux Software RAID |
 vote
 |
|
Setup, monitor and manage software RAID under Linux...
Software RAID is an emulation of what hardware RAID devices do. There are some disadvantages of software RAID compared to hardware RAID: some disk device write performance is lost; there is additional processing burden on the server; and the hot-swappability of disk units is not available. However, the cost of standard disk controllers and devices is much less than those that support RAID modes in hardware. Often a combination of hardware RAID devices and software RAID will provide a flexible and maintainable solution that fits within the availability and budget constraints of the application. read more... |
|
| | mail this link | permapage | score:7872 | -Ray, March 15, 2004 |
|
Install RAID1 on a running LVM system |
 vote
 |
|
| This guide explains how to set up software RAID1 on an already running LVM system (Debian Squeeze). The GRUB2 bootloader will be configured in such a way that the system will still be able to boot if one of the hard drives fails (no matter which one). read more... |
|
| | permapage | score:7870 | -falko, June 15, 2011 |
|
How to replace a bad drive in a software Linux RAID1 array |
 vote
 |
|
This guide shows how to remove a failed hard drive from a Linux RAID1 array (software RAID), and how to add a new hard disk to the RAID1 array without losing data.
In this example I have two hard drives, /dev/sda and /dev/sdb, with the partitions /dev/sda1 and /dev/sda2 as well as /dev/sdb1 and /dev/sdb2... read more... |
|
| | permapage | score:7854 | -falko, January 31, 2007 |
|
Tutorial: Migrate a live server to RAID with LVM |
 vote
 |
|
| I administer a CentOS 4 server for a small company. The system was originally set up using multiple filesystems on LVM on a single SATA hard drive. This disk ran out of space and I wanted more reliability so I decided to install two additional large drives in the system and mirror them using RAID 1. Since I had originally configured the machine with LVM I was able to do most of this while the system was in production. read more... |
|
| | permapage | score:7754 | -philiph, March 2, 2009 |
|
Resize LVM RAID Partitions |
 vote
 |
|
| This article describes how you can shrink and grow existing software RAID1 partitions with LVM on top. I have tested this with logical volumes that use ext3 as the file system. I will describe this procedure for an intact RAID array and also a degraded RAID array. read more... |
|
| | permapage | score:7602 | -falko, January 9, 2009 |
|
Buy Abstract Art Prints |
| Recent headlines |
Upgrade Ubuntu 12.10 to 13.04
Tutorial: Ubuntu 13.04 Samba Server with tdbsam
Tutorial: Replace Windows with Ubuntu 13.04
Tutorial: Build an Ubuntu 13.04 Server (Apache2, BIND, Dovecot)
Virtual Users/Domains with Postfix, Courier, MySQL, SquirrelMail (CentOS 6.3)
Using Multiple PHP Versions (PHP-FPM FastCGI) With ISPConfig 3 (Ubuntu 12.04)
Tutorial: Install Nginx, PHP5, PHP-FPM, and MySQL on CentOS 6.4
KVM Virtualization on CentOS 6.4
Setting up ProFTPd + TLS on Ubuntu 12.10
4 gui applications for installing Linux from USB key
Install Mplayer and Multimedia codecs on Ubuntu 13.04
Encrypt your data with EncFS (OpenSUSE 12.3)
Virtual Hosting: Proftpd, MySQL on Ubuntu 12.10
Multiboot Linux distributions from one USB key
Tutorial: Automatically add a disclaimer to emails with alterMIME (Postfix on Debian 6)
tmux: terminal multiplexer
Tutorial: Install Lighttpd, PHP5, MySQL on CentOS 6.4
Tutorial: Multiple PHP Versions (Ubuntu 12.10)
Tutorial: Install Apache2, PHP5, MySQL on OpenSUSE 12.3
Infotainment systems: The next generation
Tutorial: PrestaShop 1.5.x on Nginx (Debian 7/Ubuntu 12.10
Tutorial: Install Piwigo Gallery on Nginx (Debian 7)
The Coming HTML 5 Revolution in Linux
Riak Cloud Storage released under Apache 2 license
Tutorial: Run Joomla 1.7 on Nginx on Debian 6, Ubuntu 11.10
VirtualBox 4.2.10 released and ubuntu installation instructions included
Virtual Hosting with PureFTPd, MySQL on CentOS 6.4
Google Reader axed. Is FeedBurner next?
Deploy Piwik Web Analytics on OpenShift Online
Kali Linux 1.0 review
Tutorial: OpenSUSE 12.3 Samba Server with tdbsam
The Debate OS Project
Tutorial: Build a CentOS 6.4 x86_64 Server
Tutorial: Webcam streaming your desktop plus audio with ffmpeg, crtmpserver, Flowplayer
LibreOffice migration guide
Tutorial: Run ActiveCollab 3 on Nginx (LEMP) on Debian 7/Ubuntu 12.10
Tutorial: mod_spdy with Apache2 on CentOS 6.4
PDNSD HowTo: A DNS Caching Personal Server
Fedora 16 security features
Pissed Off Penguins: A Free Game Project |
|