LVM and Raid. Scott Gilliland

Size: px
Start display at page:

Download "LVM and Raid. Scott Gilliland"

Transcription

1 LVM and Raid Scott Gilliland

2 Why aren't flat partitions enough? Redundancy Speed Live changes Multipath I/O Shared partitions

3 Raid Levels Raid-0: Block-level Striping Raid-1: Mirroring Raid-2: Byte striping Raid-3: Byte striping w/ parity disk Raid-4: Block-level striping with parity disk Raid-5: Block-level striping with distributed parity to cover the loss of any disk Raid-6: Block-level striping with distributed parity to cover the loss of any two disks

4 Raid Levels Raid-0: Block-level Striping Raid-1: Mirroring Raid-2: Byte striping Raid-3: Byte striping w/ parity disk Raid-4: Block-level striping with parity disk Raid-5: Block-level striping with distributed parity to cover the loss of any disk Raid-6: Block-level striping with distributed parity to cover the loss of any two disks

5 Raid 0 Reads and writes are split between disks For n disks, rates go up by n Loss of any disk looses all data In theory, you still have n-1/n of your data, but really, you lose your data. Great if you have lots of disks, but don't care about your data

6 Raid 1 N copies of all data Each write has to update all disks Ow, that's slow! Reads can be spread across all disks Like Raid 0, but without the data loss! Great if you only have two disks, and want redundancy Like if you're building a machine with old drives For more n 3, use Raid 5

7 Raid 5 Distributes the parity information across all disks Can loose any one disk Reads use n-1/n disks Writes write to all n disks Or worse a read of the whole stripe may be needed Stripe sizes matter Especially for large numbers of small,disparate reads Usually a safe bet for 3 or more disks

8 Raid 6 Usually defined as being Raid 5, but with twice the parity Can loose up to two disks Preferred over 'hot-spares' If you have an extra disk, you may as well use it How else will you know if your hot spare is bad?

9 Linux Software Raid Combines multiple block devices into one Disks or partitions Often called the MD system Stands for Multi Disk Modern arrays use a 'Superblock' Contains disk UID and array config Allows for auto-detection Actually at end of disk Configured via mdadm

10 Linux Software Raid (cont) Status from /proc/mdstat And more modernly /sys/md You can even stack Raid sets Raid 0+1, Raid 0+5 Can be 'reshaped' live Can be set to come up on boot But your bootloader will need a flat disk Or it will need to 'understand' RAID

11 Typical Raid 1 Two disks, one partition each Partitions mirrored as /dev/md0 Each has a bootloader, set to boot with root=/dev/md0 If boot disk fails, other disk can boot to the degraded array scott@galileo:~$ cat /proc/mdstat Personalities : [raid1] md0 : active raid1 hda1[0] hdc1[1] blocks [2/2] [UU] unused devices: <none>

12 Typical Raid 5 A single or mirrored set of disks to boot A Raid 5 set as root, or as storage The mirrored set often covers all disks, as samesized disks will all have the same extra space Here, the spare space is striped together as /tmp -bash-3.2$ cat /proc/mdstat Personalities : [raid6] [raid5] [raid4] [raid0] md1 : active raid0 sdc1[0] sdd1[1] sde1[2] sdf1[3] blocks 256k chunks md0 : active raid5 sdf2[5] sde2[4] sdd2[3] sdc2[2] sdb3[1] sda3[0] blocks level 5, 256k chunk, algorithm 2 [6/6][UUUUUU]

13 mdadm Seems to be the best way to change an array Create: # mdadm --create /dev/md0 --level=5 --raid-devices=3 \ /dev/sdc1 /dev/sdd1 /dev/sde1 Set as faulty, remove, add: # mdadm --manage /dev/md0 --fail /dev/sdc1 # mdadm --manage /dev/md0 --remove /dev/sdc1 # mdadm --manage /dev/md0 --add /dev/sdc1

14 LVM (and LVM2) Can be considered an alternative to traditional partitioning Can use any block device: partitions and full disks Allows for rearranging of storage, mirroring, striping, and snapshots With a daemon, can handle shared storage and multipath Ex: two servers with a shared SAN disk between them Does not do Raid 5 or 6. Or Raid 2, Raid 3, or Raid 4.

15 LVM Basics 3 main types of entities: PV Physical Volume This is a disk you want to store data on. VG Volume Group A pool of PV's on a machine. You usually just want one. LV Logical Volume An exposed block device. May be spanned, striped, mirrored, or a 'snapshot'.

16 LVM Snapshots Allows you to take a full-disk image at a single point in time Uses Copy-on-write Only needs additional space when the device is written Needs physical space allocated for changes Useful for taking backups that are selfconsistent Make snapshot, backup contents off-disk, erase snapshot

17 LVM configuration Command-line tools are simplest All the details in LVM(8) System-config-lvm is the Redhat GUI tool Only handles LVM, making MD+LVM configurations difficult EVMS tool has an LVM2 module Not actively maintained? Also has an MD module for software RAID. KVPM is a kde4-based manager Seems kinda beta, but works Can parse MD devices Handles filesystems

18 Command-line LVM Most of: [pv vg lv][change convert create display extend reduce remove rename resize s scan] lvm> pvs PV VG Fmt Attr PSize PFree /dev/md0 test lvm2 a- 1.91G 1.62G /dev/sdc2 test lvm2 a- 1.44G M /dev/sde2 test lvm2 a- 1.39G 1.20G lvm> vgs VG #PV #LV #SN Attr VSize VFree test wz--n- 4.75G 3.77G lvm> lvs LV VG Attr LSize Origin Snap% Move Log Copy% Convert mirrored test mwn-a M mirrored_mlog striped test -wn-a M

19 Command-line LVM PVS, VGS, and LVS can take additional fields sudo pvs -o pv_fmt,pv_size,dev_size,pv_free,pv_used,pv_name,pv_attr,pv_pe_count,pv_pe_alloc_count,pv_tags,pvseg_start,pvseg _size,pe_start,lv_name Fmt PSize DevSize PFree Used PV Attr PE Alloc PV Tags Start SSize 1st PE LV lvm2 1.44G 1.44G M M /dev/sdc2 a K striped lvm2 1.44G 1.44G M M /dev/sdc2 a K mirrored lvm2 1.44G 1.44G M M /dev/sdc2 a K striped lvm2 1.44G 1.44G M M /dev/sdc2 a K lvm M M M 0 /dev/sdd1 a K lvm2 1.39G 1.40G M M /dev/sde2 a K striped lvm2 1.39G 1.40G M M /dev/sde2 a K lvm2 1.39G 1.40G M M /dev/sde2 a K striped lvm2 1.39G 1.40G M M /dev/sde2 a K sudo lvs -o +segtype,stripes,stripesize,devices,seg_count,copy_percent LV VG Attr LSize Origin Snap% Move Log Copy% Convert Type #Str Stripe Devices #Seg Copy% mirrored test mwn-a M mirrored_mlog mirror 2 0 mirrored_mimage_0(0),mirrored_mimage_1(0) striped test -wn-a M striped K /dev/sdc2(0),/dev/sde2(0) 2 striped test -wn-a M striped K /dev/sdc2(250),/dev/sde2(101) 2

20 KVPM

21 System-config-lvm

Typing some stupidities in text files, databases or whatever, where does it fit? why does it fit there, and how do you access there?

Typing some stupidities in text files, databases or whatever, where does it fit? why does it fit there, and how do you access there? Filesystems, LVM, MD Typing some stupidities in text files, databases or whatever, where does it fit? why does it fit there, and how do you access there? Filesystem - Introduction Short description of

More information

How To Set Up Software Raid In Linux 6.2.2 (Amd64)

How To Set Up Software Raid In Linux 6.2.2 (Amd64) Software RAID on Red Hat Enterprise Linux v6 Installation, Migration and Recovery November 2010 Ashokan Vellimalai Raghavendra Biligiri Dell Enterprise Operating Systems THIS WHITE PAPER IS FOR INFORMATIONAL

More information

LVM2 data recovery. Milan Brož mbroz@redhat.com. LinuxAlt 2009, Brno

LVM2 data recovery. Milan Brož mbroz@redhat.com. LinuxAlt 2009, Brno LVM2 data recovery Milan Brož mbroz@redhat.com LinuxAlt 2009, Brno Linux IO storage stack [ VFS ] filesystem [ volumes ] MD / LVM / LUKS / MPATH... [ partitions ] legacy partition table recovery from the

More information

Linux Software Raid. Aug 2010. Mark A. Davis

Linux Software Raid. Aug 2010. Mark A. Davis Linux Software Raid Aug 2010 Mark A. Davis a What is RAID? Redundant Array of Inexpensive/Independent Drives It is a method of combining more than one hard drive into a logic unit for the purpose of: Increasing

More information

Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting.

Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting. Ubuntu 12.04 32 bit + 64 bit Server Software RAID Recovery and Troubleshooting. (Version 1.0) 10(1)/2008-OTC/CHN-PROJECT-16/05/2013 216 OPEN TECHNOLOGY CENTRE NATIONAL INFORMATICS CENTRE DEPARTMENT OF

More information

Striped Set, Advantages and Disadvantages of Using RAID

Striped Set, Advantages and Disadvantages of Using RAID Algorithms and Methods for Distributed Storage Networks 4: Volume Manager and RAID Institut für Informatik Wintersemester 2007/08 RAID Redundant Array of Independent Disks Patterson, Gibson, Katz, A Case

More information

Intel Rapid Storage Technology enterprise (Intel RSTe) for Linux OS

Intel Rapid Storage Technology enterprise (Intel RSTe) for Linux OS Intel Rapid Storage Technology enterprise (Intel RSTe) for Linux OS Software User s Guide June 2012 Reference Number: 454301, Revision: 1.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL

More information

Unix System Administration

Unix System Administration Unix System Administration Caleb Phillips Data Redundancy CSCI 4113, Spring 2010 Where are We? Advanced Topics NTP and Cron Data Redundancy (RAID, rsync, backups...) Division of Labor (NFS, NIS, PAM, LDAP,...)...

More information

Using the Software RAID Functionality of Linux

Using the Software RAID Functionality of Linux Using the Software RAID Functionality of Linux Kevin Carson Solution Architect Hewlett-Packard (Canada) Co. 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to

More information

RAID. Contents. Definition and Use of the Different RAID Levels. The different RAID levels: Definition Cost / Efficiency Reliability Performance

RAID. Contents. Definition and Use of the Different RAID Levels. The different RAID levels: Definition Cost / Efficiency Reliability Performance RAID Definition and Use of the Different RAID Levels Contents The different RAID levels: Definition Cost / Efficiency Reliability Performance Further High Availability Aspects Performance Optimization

More information

Shared Storage Setup with System Automation

Shared Storage Setup with System Automation IBM Tivoli System Automation for Multiplatforms Authors: Markus Müller, Fabienne Schoeman, Andreas Schauberer, René Blath Date: 2013-07-26 Shared Storage Setup with System Automation Setup a shared disk

More information

Installing Debian with SATA based RAID

Installing Debian with SATA based RAID Installing Debian with SATA based RAID Now for 2.6 kernel version I've read that there will soon be an installer that will do raid installs and perhaps even support SATA, but today it is manual. My install

More information

Veritas Volume Manager Administration on HP-UX Course Summary

Veritas Volume Manager Administration on HP-UX Course Summary Veritas Volume Manager Administration on HP-UX Course Summary Contact Us: (616) 875-4060 Length: Classroom: 4 days Virtual: 6 hrs/day - 5 days Prerequisite: HP-UX System and Network Administration I and

More information

RAID Level Descriptions. RAID 0 (Striping)

RAID Level Descriptions. RAID 0 (Striping) RAID Level Descriptions RAID 0 (Striping) Offers low cost and maximum performance, but offers no fault tolerance; a single disk failure results in TOTAL data loss. Businesses use RAID 0 mainly for tasks

More information

Intel Rapid Storage Technology (Intel RST) in Linux*

Intel Rapid Storage Technology (Intel RST) in Linux* White Paper Ramu Ramakesavan (Technical Marketing Engineer) Patrick Thomson (Software Engineer) Intel Corporation Intel Rapid Storage Technology (Intel RST) in Linux* August 2011 326024 Executive Summary

More information

How To Manage Your Volume On Linux 2.5.5 (Evms) 2.4.5 On A Windows Box (Amd64) On A Raspberry Powerbook (Amd32) On An Ubuntu Box (Aes) On Linux

How To Manage Your Volume On Linux 2.5.5 (Evms) 2.4.5 On A Windows Box (Amd64) On A Raspberry Powerbook (Amd32) On An Ubuntu Box (Aes) On Linux www.suse.com/documentation Storage Administration Guide SUSE Linux Enterprise Server 10 SP3/SP4 March 6, 2011 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents

More information

Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) 1. Gather information about current system.

Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) 1. Gather information about current system. Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) All commands run from terminal as super user. Default CentOS 6.3 installation with two hard drives, /dev/sda

More information

DELL RAID PRIMER DELL PERC RAID CONTROLLERS. Joe H. Trickey III. Dell Storage RAID Product Marketing. John Seward. Dell Storage RAID Engineering

DELL RAID PRIMER DELL PERC RAID CONTROLLERS. Joe H. Trickey III. Dell Storage RAID Product Marketing. John Seward. Dell Storage RAID Engineering DELL RAID PRIMER DELL PERC RAID CONTROLLERS Joe H. Trickey III Dell Storage RAID Product Marketing John Seward Dell Storage RAID Engineering http://www.dell.com/content/topics/topic.aspx/global/products/pvaul/top

More information

Support for Storage Volumes Greater than 2TB Using Standard Operating System Functionality

Support for Storage Volumes Greater than 2TB Using Standard Operating System Functionality Support for Storage Volumes Greater than 2TB Using Standard Operating System Functionality Introduction A History of Hard Drive Capacity Starting in 1984, when IBM first introduced a 5MB hard drive in

More information

Redundant Array of Inexpensive/Independent Disks. RAID 0 Disk striping (best I/O performance, no redundancy!)

Redundant Array of Inexpensive/Independent Disks. RAID 0 Disk striping (best I/O performance, no redundancy!) 1 Data storage A Simple Overview 1. HW: SCSI/IDE/SATA/SAS (SAN!) 2. HW/SW: RAID 3. SW: Logical volumes 4. SW: Journalling filesystems 5. SW/NET: Networked filesystem (NAS!) DAS-NAS-SAN 2 RAID Redundant

More information

RAID Utility User s Guide Instructions for setting up RAID volumes on a computer with a MacPro RAID Card or Xserve RAID Card.

RAID Utility User s Guide Instructions for setting up RAID volumes on a computer with a MacPro RAID Card or Xserve RAID Card. RAID Utility User s Guide Instructions for setting up RAID volumes on a computer with a MacPro RAID Card or Xserve RAID Card. 1 Contents 3 RAID Utility User s Guide 3 Installing the RAID Software 4 Running

More information

The Logical Volume Manager (LVM)

The Logical Volume Manager (LVM) Page 1 WHITEPAPER The Logical Volume Manager (LVM) This document describes the LVM in SuSE Linux. It is freely distributable as long as it remains unchanged. SuSE has included a Logical Volume Manager

More information

RAID HARDWARE. On board SATA RAID controller. RAID drive caddy (hot swappable) SATA RAID controller card. Anne Watson 1

RAID HARDWARE. On board SATA RAID controller. RAID drive caddy (hot swappable) SATA RAID controller card. Anne Watson 1 RAID HARDWARE On board SATA RAID controller SATA RAID controller card RAID drive caddy (hot swappable) Anne Watson 1 RAID The word redundant means an unnecessary repetition. The word array means a lineup.

More information

Resilient NAS by Design. Buffalo. A deployment guide to disaster recovery. Page 1

Resilient NAS by Design. Buffalo. A deployment guide to disaster recovery. Page 1 Buffalo Resilient NAS by Design A deployment guide to disaster recovery Page 1 Table of contents Introduction. 3 1.0 RAID configuration. 4 1.1 RAID Disk crash recovery..4 1.2 RAID Disk crash recovery Procedure..4

More information

RAID Utility User Guide. Instructions for setting up RAID volumes on a computer with a Mac Pro RAID Card or Xserve RAID Card

RAID Utility User Guide. Instructions for setting up RAID volumes on a computer with a Mac Pro RAID Card or Xserve RAID Card RAID Utility User Guide Instructions for setting up RAID volumes on a computer with a Mac Pro RAID Card or Xserve RAID Card Contents 3 RAID Utility User Guide 3 The RAID Utility Window 4 Running RAID Utility

More information

LifeKeeper for Linux. Software RAID (md) Recovery Kit v7.2 Administration Guide

LifeKeeper for Linux. Software RAID (md) Recovery Kit v7.2 Administration Guide LifeKeeper for Linux Software RAID (md) Recovery Kit v7.2 Administration Guide February 2011 SteelEye and LifeKeeper are registered trademarks. Adobe Acrobat is a registered trademark of Adobe Systems,

More information

10 Red Hat Linux Tips and Tricks

10 Red Hat Linux Tips and Tricks Written and Provided by Expert Reference Series of White Papers 10 Red Hat Linux Tips and Tricks 1-800-COURSES www.globalknowledge.com 10 Red Hat Linux Tips and Tricks Compiled by Red Hat Certified Engineers

More information

Data storage, backup and restore

Data storage, backup and restore , backup and restore IMT3292 - System Administration November 25, 2008 A Simple Overview 1 HW: SCSI/IDE/SATA/SAS (SAN!) 2 HW/SW: 3 SW: Logical volumes 4 SW: Journalling filesystems 5 SW/NET: Networked

More information

Table of Contents. Software-RAID-HOWTO

Table of Contents. Software-RAID-HOWTO Table of Contents The Software-RAID HOWTO...1 Jakob Østergaard jakob@unthought.net and Emilio Bueso bueso@vives.org...1 1. Introduction...1 2. Why RAID?...1 3. Devices...1 4. Hardware issues...1 5. RAID

More information

These application notes are intended to be a guide to implement features or extend the features of the Elastix IP PBX system.

These application notes are intended to be a guide to implement features or extend the features of the Elastix IP PBX system. Elastix Application Note #201201091: Elastix RAID Setup Step By Step Including Recovery Title Elastix Raid Setup Step By Step Including Recovery Author Bob Fryer Date Document Written 9 th January 2012

More information

Total Backup Recovery Server for Linux. User s Guide

Total Backup Recovery Server for Linux. User s Guide Total Backup Recovery Server for Linux User s Guide Content Copyright Notice 3 Chapter 1. Introduction 4 1.1 Total Backup Recovery Server for Linux a reliable solution for SMB users 4 1.2 Features of Total

More information

Cloning Complex Linux Servers

Cloning Complex Linux Servers Cloning Complex Linux Servers Cloning A Linux Machine That Has A Complex Storage Setup Where I work we have Cent OS servers whose drives are in various software raid and LVM2 configurations. I was recently

More information

Using Linux mdadm Multipathing with Sun StorEdge Systems

Using Linux mdadm Multipathing with Sun StorEdge Systems Using Linux mdadm Multipathing with Sun StorEdge Systems Sun Microsystems, Inc. www.sun.com Part No. 819-2452-10 April 2005, Revision A Submit comments about this document at: http://www.sun.com/hwdocs/feedback

More information

How To Create A Multi Disk Raid

How To Create A Multi Disk Raid Click on the diagram to see RAID 0 in action RAID Level 0 requires a minimum of 2 drives to implement RAID 0 implements a striped disk array, the data is broken down into blocks and each block is written

More information

MANAGING DISK STORAGE

MANAGING DISK STORAGE 1 Chapter 12 MANAGING DISK STORAGE Chapter 12: MANAGING DISK STORAGE 2 CHAPTER OVERVIEW Understand disk-storage concepts and terminology Distinguish between basic and dynamic storage Identify the types

More information

Presented by: Supervised by: Mr. Soumen Paul, Lecturer. Department of CS & I Haldia Institute of Technology Haldia

Presented by: Supervised by: Mr. Soumen Paul, Lecturer. Department of CS & I Haldia Institute of Technology Haldia Software RAID on Linux Niladri Saha Presented by: Amit Kumar Saha College Roll No. 04/CSE/17 Univ. Roll No. 10301041016 College Roll No. 04/CSE/20 Univ. Roll No. 10301041022 Supervised by: Mr. Soumen Paul,

More information

Creating a Disk Drive For Linux

Creating a Disk Drive For Linux Storage Presenter:! Robert Wang Linux s Abstraction (vfs) (file systems) (physical devices) Storage Device Disk Drive Multiple Drives RAID! Redundant Array of Independent/Inexpensive Disks! Software or

More information

Red Hat Enterprise Linux 6 Logical Volume Manager Administration. LVM Administrator Guide

Red Hat Enterprise Linux 6 Logical Volume Manager Administration. LVM Administrator Guide Red Hat Enterprise Linux 6 Logical Volume Manager Administration LVM Administrator Guide Logical Volume Manager Administration Red Hat Enterprise Linux 6 Logical Volume Manager Administration LVM Administrator

More information

Advanced Linux System Administration on Red Hat

Advanced Linux System Administration on Red Hat Advanced Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with basic Linux administration (i.e., they know users, packages,

More information

CSE-E5430 Scalable Cloud Computing P Lecture 5

CSE-E5430 Scalable Cloud Computing P Lecture 5 CSE-E5430 Scalable Cloud Computing P Lecture 5 Keijo Heljanko Department of Computer Science School of Science Aalto University keijo.heljanko@aalto.fi 12.10-2015 1/34 Fault Tolerance Strategies for Storage

More information

Definition of RAID Levels

Definition of RAID Levels RAID The basic idea of RAID (Redundant Array of Independent Disks) is to combine multiple inexpensive disk drives into an array of disk drives to obtain performance, capacity and reliability that exceeds

More information

ZFS Administration 1

ZFS Administration 1 ZFS Administration 1 With a rapid paradigm-shift towards digital content and large datasets, managing large amounts of data can be a challenging task. Before implementing a storage solution, there are

More information

Chapter 12 Network Administration and Support

Chapter 12 Network Administration and Support Chapter 12 Network Administration and Support Objectives Manage networked accounts Monitor network performance Protect your servers from data loss Guide to Networking Essentials, Fifth Edition 2 Managing

More information

VERITAS Volume Management Technologies for Windows

VERITAS Volume Management Technologies for Windows WHITE PAPER VERITAS Volume Management Technologies for Windows V E R I T A S W H I T E P A P E R The Next Generation of Disk Management for Windows Platforms Windows 2000 and Windows Server 2003 1 TABLE

More information

What is RAID and how does it work?

What is RAID and how does it work? What is RAID and how does it work? What is RAID? RAID is the acronym for either redundant array of inexpensive disks or redundant array of independent disks. When first conceived at UC Berkley the former

More information

Chapter 2 Array Configuration [SATA Setup Utility] This chapter explains array configurations using this array controller.

Chapter 2 Array Configuration [SATA Setup Utility] This chapter explains array configurations using this array controller. Embedded MegaRAID SATA User's Guide Areas Covered Before Reading This Manual This section explains the notes for your safety and conventions used in this manual. Chapter 1 Overview This chapter introduces

More information

Logical Volume Management for Linux on System z

Logical Volume Management for Linux on System z Logical Volume Management for Linux on System z Horst Hummel IBM Horst.Hummel@de.ibm.com February 29 th 2008 Session 9282 Agenda Logical volume management overview RAID levels Striping Mirroring Multipathing

More information

Xserve G5 Using the Hardware RAID PCI Card Instructions for using the software provided with the Hardware RAID PCI Card

Xserve G5 Using the Hardware RAID PCI Card Instructions for using the software provided with the Hardware RAID PCI Card Xserve G5 Using the Hardware RAID PCI Card Instructions for using the software provided with the Hardware RAID PCI Card 2 Using the Hardware RAID PCI Card You use command-line tools to configure and manage

More information

VERITAS Volume Management Technology for Windows COMPARISON: MICROSOFT LOGICAL DISK MANAGER (LDM) AND VERITAS STORAGE FOUNDATION FOR WINDOWS

VERITAS Volume Management Technology for Windows COMPARISON: MICROSOFT LOGICAL DISK MANAGER (LDM) AND VERITAS STORAGE FOUNDATION FOR WINDOWS WHITE PAPER VERITAS Volume Management Technology for COMPARISON: MICROSOFT LOGICAL DISK MANAGER (LDM) AND VERITAS STORAGE FOUNDATION FOR WINDOWS 2000 and 2003 1 TABLE OF CONTENTS Table of Contents...2

More information

RAID Made Easy By Jon L. Jacobi, PCWorld

RAID Made Easy By Jon L. Jacobi, PCWorld 9916 Brooklet Drive Houston, Texas 77099 Phone 832-327-0316 www.safinatechnolgies.com RAID Made Easy By Jon L. Jacobi, PCWorld What is RAID, why do you need it, and what are all those mode numbers that

More information

Overview of I/O Performance and RAID in an RDBMS Environment. By: Edward Whalen Performance Tuning Corporation

Overview of I/O Performance and RAID in an RDBMS Environment. By: Edward Whalen Performance Tuning Corporation Overview of I/O Performance and RAID in an RDBMS Environment By: Edward Whalen Performance Tuning Corporation Abstract This paper covers the fundamentals of I/O topics and an overview of RAID levels commonly

More information

Violin: A Framework for Extensible Block-level Storage

Violin: A Framework for Extensible Block-level Storage Violin: A Framework for Extensible Block-level Storage Michail Flouris Dept. of Computer Science, University of Toronto, Canada flouris@cs.toronto.edu Angelos Bilas ICS-FORTH & University of Crete, Greece

More information

File System & Device Drive. Overview of Mass Storage Structure. Moving head Disk Mechanism. HDD Pictures 11/13/2014. CS341: Operating System

File System & Device Drive. Overview of Mass Storage Structure. Moving head Disk Mechanism. HDD Pictures 11/13/2014. CS341: Operating System CS341: Operating System Lect 36: 1 st Nov 2014 Dr. A. Sahu Dept of Comp. Sc. & Engg. Indian Institute of Technology Guwahati File System & Device Drive Mass Storage Disk Structure Disk Arm Scheduling RAID

More information

Implementing the SUSE Linux Enterprise High Availability Extension on System z

Implementing the SUSE Linux Enterprise High Availability Extension on System z Implementing the SUSE Linux Enterprise High Availability Extension on System z Mike Friesenegger Novell Monday, February 28, 2011 Session Number: 8474 Agenda What is a high availability (HA) cluster? What

More information

RAID technology and IBM TotalStorage NAS products

RAID technology and IBM TotalStorage NAS products IBM TotalStorage Network Attached Storage October 2001 RAID technology and IBM TotalStorage NAS products By Janet Anglin and Chris Durham Storage Networking Architecture, SSG Page No.1 Contents 2 RAID

More information

Managing Storage Using RAID

Managing Storage Using RAID Note The RAID feature is applicable to E-Series Servers and the SM E-Series NCE. The RAID feature is not applicable to the EHWIC E-Series NCE and the NIM E-Series NCE. This chapter includes the following

More information

An Introduction to RAID. Giovanni Stracquadanio stracquadanio@dmi.unict.it www.dmi.unict.it/~stracquadanio

An Introduction to RAID. Giovanni Stracquadanio stracquadanio@dmi.unict.it www.dmi.unict.it/~stracquadanio An Introduction to RAID Giovanni Stracquadanio stracquadanio@dmi.unict.it www.dmi.unict.it/~stracquadanio Outline A definition of RAID An ensemble of RAIDs JBOD RAID 0...5 Configuring and testing a Linux

More information

RAID Overview: Identifying What RAID Levels Best Meet Customer Needs. Diamond Series RAID Storage Array

RAID Overview: Identifying What RAID Levels Best Meet Customer Needs. Diamond Series RAID Storage Array ATTO Technology, Inc. Corporate Headquarters 155 Crosspoint Parkway Amherst, NY 14068 Phone: 716-691-1999 Fax: 716-691-9353 www.attotech.com sales@attotech.com RAID Overview: Identifying What RAID Levels

More information

RAID Technology Overview

RAID Technology Overview RAID Technology Overview HP Smart Array RAID Controllers HP Part Number: J6369-90050 Published: September 2007 Edition: 1 Copyright 2007 Hewlett-Packard Development Company L.P. Legal Notices Copyright

More information

LBNC and IBM Corporation 2009. Document: LBNC-Install.doc Date: 06.03.2009 Path: D:\Doc\EPFL\LNBC\LBNC-Install.doc Version: V1.0

LBNC and IBM Corporation 2009. Document: LBNC-Install.doc Date: 06.03.2009 Path: D:\Doc\EPFL\LNBC\LBNC-Install.doc Version: V1.0 LBNC Compute Cluster Installation and Configuration Author: Markus Baertschi Owner: Markus Baertschi Customer: LBNC Subject: LBNC Compute Cluster Installation and Configuration Page 1 of 14 Contents 1.

More information

Backup to attached Tape Drive using Open-E DSS V6

Backup to attached Tape Drive using Open-E DSS V6 Backup to attached Tape Drive using Open-E DSS V6 Software Version: DSS ver. 6.00 up13 Presentation updated: March 2010 TO SET UP A BACKUP TO AN ATTACHED TAPE DRIVE, PERFORM THE FOLLOWING STEPS: 1. Hardware

More information

How To Recover From A Disaster On Linux (Amd64) On A Hard Disk Drive (Amd32) On An Uniden (Amd66) Or A Hard Drive (Oranium) On Your Computer (Orren) On The Same Computer (

How To Recover From A Disaster On Linux (Amd64) On A Hard Disk Drive (Amd32) On An Uniden (Amd66) Or A Hard Drive (Oranium) On Your Computer (Orren) On The Same Computer ( Methods of Linux Bare Metal Restore and Disaster Recovery www.storix.net 1-877-786-7491 STORIX WHITE PAPER 2 We don t think much about health insurance when we re feeling well, but even the least prudent

More information

How to choose the right RAID for your Dedicated Server

How to choose the right RAID for your Dedicated Server Overview of RAID Let's first address, "What is RAID and what does RAID stand for?" RAID, an acronym for "Redundant Array of Independent Disks, is a storage technology that links or combines multiple hard

More information

RAID User Guide. Edition. Trademarks V1.0 P/N: 91-187C51GME0-00

RAID User Guide. Edition. Trademarks V1.0 P/N: 91-187C51GME0-00 RAID User Guide Edition V1.0 P/N: 91-187C51GME0-00 Trademarks All brand or product names mentioned are trademarks or registered trademarks of their respective holders. Contents NVIDIA RAID...1 RAID Arrays...1

More information

CS420: Operating Systems

CS420: Operating Systems NK YORK COLLEGE OF PENNSYLVANIA HG OK 2 RAID YORK COLLEGE OF PENNSYLVAN James Moscola Department of Physical Sciences York College of Pennsylvania Based on Operating System Concepts, 9th Edition by Silberschatz,

More information

RedHat (RHEL) System Administration Course Summary

RedHat (RHEL) System Administration Course Summary Contact Us: (616) 875-4060 RedHat (RHEL) System Administration Course Summary Length: 5 Days Prerequisite: RedHat fundamentals course Recommendation Statement: Students should have some experience with

More information

Moving Virtual Storage to the Cloud. Guidelines for Hosters Who Want to Enhance Their Cloud Offerings with Cloud Storage

Moving Virtual Storage to the Cloud. Guidelines for Hosters Who Want to Enhance Their Cloud Offerings with Cloud Storage Moving Virtual Storage to the Cloud Guidelines for Hosters Who Want to Enhance Their Cloud Offerings with Cloud Storage Table of Contents Overview... 1 Understanding the Storage Problem... 1 What Makes

More information

Citrix XenServer-6.2 Administration Training

Citrix XenServer-6.2 Administration Training Citrix XenServer-6.2 Administration Training Course Duration : 20Days Class Duration : 3hours per day ( Fast Track Course duration 7days Per day 8 hours ) Classroom Training Fast-Track Training: - Online

More information

Guide to SATA Hard Disks Installation and RAID Configuration

Guide to SATA Hard Disks Installation and RAID Configuration Guide to SATA Hard Disks Installation and RAID Configuration 1. Guide to SATA Hard Disks Installation... 2 1.1 Serial ATA (SATA) Hard Disks Installation... 2 2. Guide to RAID Configurations... 3 2.1 Introduction

More information

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4

How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 How you configure Iscsi target using starwind free Nas software & configure Iscsi initiator on Oracle Linux 6.4 Download the software from http://www.starwindsoftware.com/ Click on products then under

More information

Managing RAID. RAID Options

Managing RAID. RAID Options Managing RAID Note If you purchased E-Series Server Option 1 (E-Series Server without preinstalled operating system or hypervisor), and you want to store data files on local Redundant Array of Inexpensive

More information

Intel RAID Software User s Guide:

Intel RAID Software User s Guide: Intel RAID Software User s Guide: Intel Embedded Server RAID Technology II Intel Integrated Server RAID Intel RAID Controllers using the Intel RAID Software Stack 3 Revision 8.0 August, 2008 Intel Order

More information

HP Array Configuration Utility User Guide

HP Array Configuration Utility User Guide HP Array Configuration Utility User Guide January 2006 (First Edition) Part Number 416146-001 Copyright 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change

More information

Ultimate Guide to Oracle Storage

Ultimate Guide to Oracle Storage Ultimate Guide to Oracle Storage Presented by George Trujillo George.Trujillo@trubix.com George Trujillo Twenty two years IT experience with 19 years Oracle experience. Advanced database solutions such

More information

Intel RAID Software User s Guide:

Intel RAID Software User s Guide: Intel RAID Software User s Guide: Intel Embedded Server RAID Technology II Intel Integrated Server RAID Intel RAID Controllers using the Intel RAID Software Stack 3 Revision 9.0 December, 2008 Intel Order

More information

RAID Rebuilding. Objectives CSC 486/586. Imaging RAIDs. Imaging RAIDs. Imaging RAIDs. Multi-RAID levels??? Video Time

RAID Rebuilding. Objectives CSC 486/586. Imaging RAIDs. Imaging RAIDs. Imaging RAIDs. Multi-RAID levels??? Video Time Objectives 00:13 CSC 486/586 RAID Rebuilding In your previous module, you learned about RAID technology, including hardware and software RAIDs. In this module you will learn about the issues you need to

More information

VERY IMPORTANT NOTE! - RAID

VERY IMPORTANT NOTE! - RAID Disk drives are an integral part of any computing system. Disk drives are usually where the operating system and all of an enterprise or individual s data are stored. They are also one of the weakest links

More information

Filesystems Performance in GNU/Linux Multi-Disk Data Storage

Filesystems Performance in GNU/Linux Multi-Disk Data Storage JOURNAL OF APPLIED COMPUTER SCIENCE Vol. 22 No. 2 (2014), pp. 65-80 Filesystems Performance in GNU/Linux Multi-Disk Data Storage Mateusz Smoliński 1 1 Lodz University of Technology Faculty of Technical

More information

Chapter 6 External Memory. Dr. Mohamed H. Al-Meer

Chapter 6 External Memory. Dr. Mohamed H. Al-Meer Chapter 6 External Memory Dr. Mohamed H. Al-Meer 6.1 Magnetic Disks Types of External Memory Magnetic Disks RAID Removable Optical CD ROM CD Recordable CD-R CD Re writable CD-RW DVD Magnetic Tape 2 Introduction

More information

Getting Started With RAID

Getting Started With RAID Dell Systems Getting Started With RAID www.dell.com support.dell.com Notes, Notices, and Cautions NOTE: A NOTE indicates important information that helps you make better use of your computer. NOTICE: A

More information

PIONEER RESEARCH & DEVELOPMENT GROUP

PIONEER RESEARCH & DEVELOPMENT GROUP SURVEY ON RAID Aishwarya Airen 1, Aarsh Pandit 2, Anshul Sogani 3 1,2,3 A.I.T.R, Indore. Abstract RAID stands for Redundant Array of Independent Disk that is a concept which provides an efficient way for

More information

ENTERPRISE LINUX SYSTEM ADMINISTRATION

ENTERPRISE LINUX SYSTEM ADMINISTRATION ENTERPRISE LINUX SYSTEM ADMINISTRATION The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation

More information

Areas Covered. Chapter 1 Features (Overview/Note) Chapter 2 How to Use WebBIOS. Chapter 3 Installing Global Array Manager (GAM)

Areas Covered. Chapter 1 Features (Overview/Note) Chapter 2 How to Use WebBIOS. Chapter 3 Installing Global Array Manager (GAM) PRIMERGY RX300 S2 Onboard SCSI RAID User s Guide Areas Covered Chapter 1 Features (Overview/Note) This chapter explains the overview of the disk array and features of the SCSI array controller. Chapter

More information

Storage Fusion Architecture. Multipath (v1.8) User Guide

Storage Fusion Architecture. Multipath (v1.8) User Guide Storage Fusion Architecture Multipath (v1.8) User Guide Table of Contents... 2 1. OVERVIEW... 3 2. DDN MULTIPATH RPM VERSIONS... 3 3. INSTALLATION... 4 3.1 RPM INSTALLATION... 4 3.1.1 DETERMINING THE LINUX

More information

Copyright 2014 http://itfreetraining.com

Copyright 2014 http://itfreetraining.com This video will look at using Windows Storage Spaces in Windows Server 2012 R2. Windows Storage Spaces is a new system introduced in Windows Server 2012 that allows multiple physical drives to be combined

More information

Comparison: Microsoft Logical Disk Manager (LDM) and VERITAS Volume Manager

Comparison: Microsoft Logical Disk Manager (LDM) and VERITAS Volume Manager Comparison: Microsoft Logical Disk Manager (LDM) and VERITAS Volume Manager V E R I T A S W H I T E P A P E R for Microsoft Windows Table of Contents Online Storage Management Challenge.......................................................................................................................1

More information

RAID Basics Training Guide

RAID Basics Training Guide RAID Basics Training Guide Discover a Higher Level of Performance RAID matters. Rely on Intel RAID. Table of Contents 1. What is RAID? 2. RAID Levels RAID 0 RAID 1 RAID 5 RAID 6 RAID 10 RAID 0+1 RAID 1E

More information

technology brief RAID Levels March 1997 Introduction Characteristics of RAID Levels

technology brief RAID Levels March 1997 Introduction Characteristics of RAID Levels technology brief RAID Levels March 1997 Introduction RAID is an acronym for Redundant Array of Independent Disks (originally Redundant Array of Inexpensive Disks) coined in a 1987 University of California

More information

Extended installation documentation

Extended installation documentation Extended installation documentation Version 3.0-1 Revision 12431 Stand: March 13, 2012 Alle Rechte vorbehalten. / All rights reserved. (c) 2002 bis 2012 Univention GmbH Mary-Somerville-Straße 1 28359 Bremen

More information

IBM ^ xseries ServeRAID Technology

IBM ^ xseries ServeRAID Technology IBM ^ xseries ServeRAID Technology Reliability through RAID technology Executive Summary: t long ago, business-critical computing on industry-standard platforms was unheard of. Proprietary systems were

More information

INSTALL ZENTYAL SERVER

INSTALL ZENTYAL SERVER GUIDE FOR Zentyal Server is a small business server based on Ubuntu s LTS server version 10.04 and the ebox platform. It also has the LXDE desktop installed with Firefox web browser and PCMAN File manager.

More information

ucloud server User Guide v3.0 (2013.01)

ucloud server User Guide v3.0 (2013.01) ucloud server User Guide v3.0 (2013.01) KT Revision history Date of revision Version Cause of revision Contents of revision 2011.03.01 2012.02.01 2012.03.01 2012.05.01 2013.01.07 2013.01.08 1.0 2.0 2.1

More information

SSDs and RAID: What s the right strategy. Paul Goodwin VP Product Development Avant Technology

SSDs and RAID: What s the right strategy. Paul Goodwin VP Product Development Avant Technology SSDs and RAID: What s the right strategy Paul Goodwin VP Product Development Avant Technology SSDs and RAID: What s the right strategy Flash Overview SSD Overview RAID overview Thoughts about Raid Strategies

More information

RAID Implementation for StorSimple Storage Management Appliance

RAID Implementation for StorSimple Storage Management Appliance RAID Implementation for StorSimple Storage Management Appliance Alpa Kohli June, 2012 KB-00008 Document Revision 1 StorSimple knowledge base articles are intended to provide customers with the information

More information

IncidentMonitor Server Specification Datasheet

IncidentMonitor Server Specification Datasheet IncidentMonitor Server Specification Datasheet Prepared by Monitor 24-7 Inc October 1, 2015 Contact details: sales@monitor24-7.com North America: +1 416 410.2716 / +1 866 364.2757 Europe: +31 088 008.4600

More information

Backup, Booten, RAID, LVM, Virtualization

Backup, Booten, RAID, LVM, Virtualization Backup, Booten,,, Linux LV, WU Wien May 9, 2014 Copyleft: This Document may be distributed under GNU GFDL or under Creative Commons CC BY-SA 3.0 Backup, Booten,,, Table of contents 1 Backup 2 3 4 5 Backup,

More information

Introduction. What is RAID? The Array and RAID Controller Concept. Click here to print this article. Re-Printed From SLCentral

Introduction. What is RAID? The Array and RAID Controller Concept. Click here to print this article. Re-Printed From SLCentral Click here to print this article. Re-Printed From SLCentral RAID: An In-Depth Guide To RAID Technology Author: Tom Solinap Date Posted: January 24th, 2001 URL: http://www.slcentral.com/articles/01/1/raid

More information

Distribution One Server Requirements

Distribution One Server Requirements Distribution One Server Requirements Introduction Welcome to the Hardware Configuration Guide. The goal of this guide is to provide a practical approach to sizing your Distribution One application and

More information

ZFS Backup Platform. ZFS Backup Platform. Senior Systems Analyst TalkTalk Group. http://milek.blogspot.com. Robert Milkowski.

ZFS Backup Platform. ZFS Backup Platform. Senior Systems Analyst TalkTalk Group. http://milek.blogspot.com. Robert Milkowski. ZFS Backup Platform Senior Systems Analyst TalkTalk Group http://milek.blogspot.com The Problem Needed to add 100's new clients to backup But already run out of client licenses No spare capacity left (tapes,

More information