Installing Debian with SATA based RAID
|
|
|
- Bartholomew Rodgers
- 10 years ago
- Views:
Transcription
1 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 on a Intel D865PERL mother board got 'interesting'. The last Debian (beta 4) testing installer does support SATA as does a version of Debian/Libranet, but going on to RAID is a manual task. The basic idea was to Install all on one drive, then partition the second drive with just the same sizes. Install mdadm (the new and improved replacement for raidtools). I'm assuming we are using clean drives. If one re-uses previously used disks the superblocks must be zeroed (--zero-superblock option to mdadm) before adding the partitions to the array. This guide was produced using a Tyan S2875 Mother board. The whole mess is harder than it should be and I hope this page becomes the basis for someone's automating script (hint hint). Overview of steps * Install Debian on first drive (/dev/sda) * Creating a degraded RAID1 array on disk 2 (/dev/sdb) * Update initrd * Copying the Debian installation over from disk 1 (sda to sdb) * Fix fstab on /dev/md2 * Add disk 1 to the degraded array to create final raid array * Update initrd again * Produce /etc/mdadm/mdadm.conf * Setup the monitoring daemon* In this example Disk1 and disk2 are /dev/sda and /dev/sdb respectively. The partitions I used are: /boot 200m /swap 1Gig raid0 / rest of drive It is possible for a system to crash if the swap area drive fails. If this is not a concern you could also set it up as simple swap areas or as raid0 to improve performance. (Raid1 also provides faster reads as a side benefit, but there is the cost slower writes - but swap tends to be read more times than written so you might still come out ahead.)). Install Debian on first drive I used the following partitionsdevicesizeideventual mount point/dev/sda1200m83/boot//dev/sda51g82swap/dev/sda6100g83/ I'm assuming you know how to do the above by running fdisk from the install of your choice. After installing: #apt-get install wajig (you don't want to be without wajig - it makes apt and dpkg user friendly) page 1 of 7
2 #wajig install mdadm #wajig install rsync #wajig install e3 Update kernel to kernel-image k7-smp Partition Drive2 with fdisk DeviceSizeIdEventual mount point/dev/sdb1200mfd/boot//dev/sdb51gfdswap/dev/sdb6100gfd/ Create the raid devices # mdadm --create /dev/md0 --level 1 --raid-devices=2 missing /dev/sdb1 The above line is the long version of the next line just for reference.. #mdadm -Cv /dev/md0 -l1 -n2 missing /dev/sdb1 #mdadm -Cv /dev/md1 -l1 -n2 missing /dev/sdb5 #mdadm -Cv /dev/md2 -l1 -n2 missing /dev/sdb6 This creates 3 degraded RAID1 devices (for /boot, swap, and /) consisting of a dummy drive "missing" (why was this so hard to figure out!) Now, a cat of /proc/mdstat will show your degraded raid devices are up and running #cat /proc/mdstat Personalities : [raid1] md1 : active raid1 sdb5[1] blocks [2/1] [_U] md0 : active raid1 sdb1[1] blocks [2/1] [_U] md2 : active raid1 sdb6[1] blocks [2/1] [_U] unused devices: Note how one drive in all three cases is missing ("_") as opposed to up and running' ("U"). Creating the file systems and mount them #mkfs.jfs /dev/md0 #mkfs.jfs /dev/md2 #mkdir /mntroot #mkdir/mntboot #mount /dev/md2 /mntroot #mount /dev/md0 /mntboot Fix up initrd If you are using a SATA drive you pay attention! edit /etc/mkinitrd/mkinitrd.conf and change: MODULES=most to page 2 of 7
3 ###MODULES=most MODULES=dep and ROOT=probe to ###ROOT=probe ROOT="/dev/md2 jfs" This tells init to use what it takes to boot off of a raid device not the /dev/sda device currently used. Now run #mkinitrd -o /boot/initrd.img k7-smp-md k7-smp Edit /boot/grub/menu.lst Copy the old listing below and paste it below: title Debian GNU/Linux, kernel k7-smp root (hd0,0) kernel /vmlinuz root=/dev/sda6 ro initrd /initrd.img savedefault boot Now edit the new stanzas noting the changes in bold: title Debian GNU/Linux, kernel k7-smp -md Disk1 root (hd0,0) kernel /vmlinuz root=/dev/ md2 ro initrd / initrd.img k7-smp-md savedefault boot Now make a copy of the New stanza you just made and make the changes in bold: title Debian GNU/Linux, kernel k7-smp-md Disk2 root (hd 1,0) kernel /vmlinuz root=/dev/md2 ro initrd /initrd.img k7-smp-md savedefault boot Producing /etc/mdadm/mdadm.conf edit /etc/mdadm/mdadm.conf The top line in this example should be DEVICE /dev/sda* /dev/sdb* page 3 of 7
4 Then run: mdadm --detail --scan >> /etc/mdadm/mdadm.conf This should produce a proper file Copy over everything to the degraded raid #rsync -auhxv --exclude=/proc/* --exclude=/sys/* --exclude=/boot/* --exclude=/mntboot --exclude=/mntroot/ /* /mntroot/ #mkdir /mntroot/proc /mntroot/boot /mntroot/sys #chmod 555 /mntroot/proc #rsync -auhx /boot/ /mntboot/ Make Changes in /mntroot/etc/fstab Changes in bold # /etc/fstab: static file system information. # # proc /proc proc defaults 0 0 /dev/ md1 none swap sw 0 0 /dev/ md0 /boot jfs defaults 0 2 /dev/ md2 / jfs defaults,errors=remount-ro 0 1 /dev/hda /media/cdrom iso9660 ro,user,noauto 0 0 /dev/fd0 /media/floppy auto rw,user,noauto 0 0 /dev/hda /cdrom iso9660 ro,user,noauto 0 0 Reboot If it won't work you should be able to boot off of the old grub listing At this point the box should be running off the degraded RAID1 devices on the second drive (/dev/sdb) Check that everything works If all is OK you should change the partition types of the first drive (/dev/sda) - but you will lose all data! DeviceSizeIdEventual mount point/dev/sda1200mfd/boot//dev/sda51gfdswap/dev/sda6100gfd/ Attach the original drive's partitions to the existing (degraded) RAID arrays: # mdadm /dev/md0 -a /dev/sda1 # mdadm /dev/md1 -a /dev/sda5 # mdadm /dev/md2 -a /dev/sda6 #cat /proc/mdstat Personalities : [raid1] md0 : active raid1 sda1[0] sdb1[1] blocks [2/2] [UU] page 4 of 7
5 md1 : active raid1 sda5[0] sdb5[1] blocks [2/2] [UU] md2 : active raid1 sda6[2] sdb6[1] blocks [2/1] [_U] [ =====>...] recovery = 17.9% ( / ) finish=56.4min speed=38656k/sec unused devices: After a while all devices are in sync: # cat /proc/mdstat Personalities : [raid1] md0 : active raid1 sda1[0] sdb1[1] blocks [2/2] [UU] md1 : active raid1 sda5[0] sdb5[1] blocks [2/2] [UU] md2 : active raid1 sda6[2] sdb6[1] blocks [2/2] [UU] unused devices: Regenerate initrd Yes, this needs to happen again after the raid is complete! #mkinitrd -o /boot/initrd.img k7-smp-md k7-smp (Is this still a needed step?) Regenerate /etc/mdadm/mdadm.conf Regenerate /etc/mdadm/mdadm.conf edit /etc/mdadm/mdadm.conf Delete all but the top line DEVICE /dev/sda* /dev/sdb* Then run: mdadm --detail --scan >> /etc/mdadm/mdadm.conf Your final file should look like: DEVICE /dev/sda* /dev/sdb* ARRAY /dev/md0 level=raid1 num-devices=2 UUID=4d58ade4:dd80faa9:19f447f8:23d355e3 devices=/dev/sda1,/dev/sdb1 ARRAY /dev/md1 level=raid1 num-devices=2 UUID=3f1bdce2:c55460b0:9262fd47:3c94b6ab devices=/dev/sda5,/dev/sdb5 ARRAY /dev/md2 level=raid1 num-devices=2 UUID=7dfd7fcb:d65245d6:f9da98db:f670d7b6 devices=/dev/sdb6,/dev/sda6 page 5 of 7
6 Configure grub to boot from both drives Install the MBR on the second disk #grub --device-map=/boot/grub/device.map >> root (hd0,0) >> setup (hd0) >> root (hd1,0) >> setup (hd1) >> quit Have Grub point to your MD root device. Note that things after the '#" symbol make a difference here (note to grub developers: this confuses people why not use a different delimiter?) Edit /boot/grub/menue.lst ## default kernel options for automagic boot options ## If you want special options for specifiv kernels use kopt_x_y_z ## where x.y.z is kernel version. Minor versions can be omitted. ## e.g. kopt=root=/dev/hda1 ro # kopt=root=/dev/sd6 ro TO ## default kernel options for automagic boot options ## If you want special options for specifiv kernels use kopt_x_y_z ## where x.y.z is kernel version. Minor versions can be omitted. ## e.g. kopt=root=/dev/hda1 ro # kopt=root=/dev/md2 ro Setup the monitoring daemon Just run: dpkg-reconfigure mdadm Test Test and Test Test boot from both drives Kill a drive and see if you get a about the event. Write up a step by step procedure to restore from a drive outage. (send a copy this way for this page!) You should be all finished! Please send notes of any typos/corrections to the address below. Special thanks to Onni Koskinen of Finland, whose gentle yet expert s removed several glaring errors on this page and resulted in a vastly improved document. Q/A Re: section on configuring GRUB: will GRUB automatically boot from the good drive in the event of a disk failure? Yes, IF you install Grub on both drives and your BIOS will roll over to the first bootable drive. page 6 of 7
7 How do you see what is in a initrd file? mount -o loop /tmp/myinitrd /mnt/myinitrd From [email protected] Support this site page 7 of 7
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
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
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
Creating a Cray System Management Workstation (SMW) Bootable Backup Drive
Creating a Cray System Management Workstation (SMW) Bootable Backup Drive This technical note provides the procedures to create a System Management Workstation (SMW) bootable backup drive. The purpose
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
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
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
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
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
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,
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
LVM and Raid. Scott Gilliland
LVM and Raid Scott Gilliland Why aren't flat partitions enough? Redundancy Speed Live changes Multipath I/O Shared partitions Raid Levels Raid-0: Block-level Striping Raid-1: Mirroring Raid-2: Byte striping
Installation GENTOO + RAID sur VMWARE
Installation GENTOO + RAID sur VMWARE Chargement modules modprobe raid0 modprobe raid1 modprobe dm-mod Partitionnement /dev/sdx1 ext2 32M /dev/sdx2 swap =RAM /dev/sdx3 ext3 reste du disque Pour supprimer
How To Write A Backup On A Linux Computer (For A Non-Freebie)
Linux LV, WU Wien April 23, 2015 «Copyleft: This Document may be distributed under GNU GFDL or under Creative Commons CC BY-SA 3.0 Table of contents 1 2 3 4 5 : The Problem The Problem tar - the classic
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
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
RocketRAID 174x SATA Controller Ubuntu Linux Installation Guide
RocketRAID 174x SATA Controller Ubuntu Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table of Contents 1 Overview...1
LVM2 data recovery. Milan Brož [email protected]. LinuxAlt 2009, Brno
LVM2 data recovery Milan Brož [email protected] LinuxAlt 2009, Brno Linux IO storage stack [ VFS ] filesystem [ volumes ] MD / LVM / LUKS / MPATH... [ partitions ] legacy partition table recovery from the
EXPLORING LINUX KERNEL: THE EASY WAY!
EXPLORING LINUX KERNEL: THE EASY WAY! By: Ahmed Bilal Numan 1 PROBLEM Explore linux kernel TCP/IP stack Solution Try to understand relative kernel code Available text Run kernel in virtualized environment
Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption
Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption This is a step-by-step guide showing how to create an encrypted bootable Backtrack 4 USB thumb drive. I put quotes around full in the title
Adaptec ASR-7805/ASR-7805Q/ASR-71605/ASR-71605Q/ASR-71605E/ASR-71685/ASR-72405 SAS/SATA RAID Controllers AFM-700 Flash Backup Unit
README.TXT Adaptec ASR-7805/ASR-7805Q/ASR-71605/ASR-71605Q/ASR-71605E/ASR-71685/ASR-72405 SAS/SATA RAID Controllers AFM-700 Flash Backup Unit NOTE: All Adaptec by PMC products are UL listed and for use
Root-on-LVM-on-RAID HOWTO
Massimiliano Ferrero [email protected] This document describes a procedure to install a Linux system with software RAID and Logical Volume Manager (LVM) support and with a root file system stored into
RocketRAID 2640/2642 SAS Controller Ubuntu Linux Installation Guide
RocketRAID 2640/2642 SAS Controller Ubuntu Linux Installation Guide Version 1.2 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on June 14, 2012 Table of Contents 1 Overview...
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
Navigating the Rescue Mode for Linux
Navigating the Rescue Mode for Linux SUPPORT GUIDE DEDICATED SERVERS ABOUT THIS GUIDE This document will take you through the process of booting your Linux server into rescue mode to identify and fix the
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
TECHNICAL HOWTO. Imaging Linux systems with hardware changes. author: [email protected]
TECHNICAL HOWTO Imaging Linux systems with hardware changes using Mondo Rescue Last modified: author: [email protected] ABSTRACT This document describes the process to create and deploy system
WES 9.2 DRIVE CONFIGURATION WORKSHEET
WES 9.2 DRIVE CONFIGURATION WORKSHEET This packet will provide you with a paper medium external to your WES box to write down the device names, partitions, and mount points within your machine. You may
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
Replacing a Laptop Hard Disk On Linux. Khalid Baheyeldin http://2bits.com. KWLUG, September 2015
Replacing a Laptop Hard Disk On Linux Khalid Baheyeldin http://2bits.com KWLUG, September 2015 About Khalid 30 years in software development and software consulting First computer: Sinclair ZX Spectrum
Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk.
Linux Template Creation Guide How to build your own Linux VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Installing Xen Hypervisor... 2 2. Installing DomU (Paravirtualized)... 5 3. Installing
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
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
BackTrack Hard Drive Installation
BackTrack Hard Drive Installation BackTrack Development Team jabra [at] remote-exploit [dot] org Installing Backtrack to a USB Stick or Hard Drive 1 Table of Contents BackTrack Hard Drive Installation...3
II. Installing Debian Linux:
Debian Linux Installation Lab Spring 2013 In this lab you will be installing Debian Linux in a KVM (Kernel Virtual Machine). You will be guided through a series of steps to setup the network (IP addresses,
-------------------------------------------------------------------- README.TXT
README.TXT Adaptec ASR-7805/ASR-7805Q/ASR-71605/ASR-71605Q/ASR-71605E/ASR-71685/ASR-72405 SAS/SATA RAID Controllers Adaptec ASR-6405/ASR-6445/ASR-6805/ASR-6805Q/ASR-6405E/ASR-6805E/ASR-6805E R5 SAS/SATA
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
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,...)...
www.cristie.com CBMR for Linux v6.2.2 User Guide
www.cristie.com CBMR for Linux v6.2.2 User Guide Contents CBMR for Linux User Guide - Version: 6.2.2 Section No. Section Title Page 1.0 Using this Guide 3 1.1 Version 3 1.2 Limitations 3 2.0 About CBMR
SiS964 RAID. User s Manual. Edition. Trademarks V1.0 P/N: 91-187-U49-M2-0E
SiS964 RAID User s Manual Edition V1.0 P/N: 91-187-U49-M2-0E Trademarks All brand or product names mentioned are trademarks or registered trademarks of their respective holders. CONTENTS Introduction...
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.
USB Bare Metal Restore: Getting Started
USB Bare Metal Restore: Getting Started Prerequisites Requirements for the target hardware: Must be able to boot from USB Must be on the same network as the Datto device Must be 64 bit hardware Any OSs
Advanced SUSE Linux Enterprise Server Administration (Course 3038) Chapter 5 Manage Backup and Recovery
Advanced SUSE Linux Enterprise Server Administration (Course 3038) Chapter 5 Manage Backup and Recovery Objectives Develop a Backup Strategy Create Backup Files with tar Work with Magnetic Tapes Copy Data
Planning for an Amanda Disaster Recovery System
Planning for an Amanda Disaster Recovery System Bernd Harmsen [email protected] www.datasysteme.de 22nd April 2003 Contents 1 Introduction 1 1.1 Why we need a specialized Amanda Disaster Recovery System?..............
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
Customizing Boot Media for Linux* Direct Boot
White Paper Bruce Liao Platform Application Engineer Intel Corporation Customizing Boot Media for Linux* Direct Boot October 2013 329747-001 Executive Summary This white paper introduces the traditional
Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting
Course ID RHL200 Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course Description Students will experience added understanding of configuration issues of disks,
How To Set Up A Raid On A Hard Disk Drive On A Sasa S964 (Sasa) (Sasa) (Ios) (Tos) And Sas964 S9 64 (Sata) (
SiS964/SiS180 SATA w/ RAID User s Manual Quick User s Guide Version 0.3 Edition December 2003 Copyright 2003 Silicon Integrated Systems Corp. Trademarks SiS is a registered trademark of Silicon Integrated
SiS964/SiS180 SATA w/ RAID User s Manual. Quick User s Guide. Version 0.3
SiS964/SiS180 SATA w/ RAID User s Manual Quick User s Guide Version 0.3 Edition December 2003 Copyright 2003 Silicon Integrated Systems Corp. Trademarks SiS is a registered trademark of Silicon Integrated
Oracle VM Server Recovery Guide. Version 8.2
Oracle VM Server Recovery Guide Version 8.2 Oracle VM Server for x86 Recovery Guide The purpose of this document is to provide the steps necessary to perform system recovery of an Oracle VM Server for
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
SecureDoc Linux 4.91-3, February 2010 Copyright 1997-2010 by WinMagic Inc.
SecureDoc Linux 4.91-3, February 2010 Copyright 1997-2010 by WinMagic Inc. All rights reserved. Printed in Canada Many products, software and technologies are subject to export control for both Canada
Abstract. Microsoft Corporation Published: August 2009
Linux Integration Components Version 2 for Hyper-V (Windows Server 2008, Windows Server 2008 R2, Microsoft Hyper-V Server 2008, and Microsoft Hyper-V Server 2008 R2) Readme Microsoft Corporation Published:
Adaptec SAS RAID Configuration and the Windows OS Installation Instructions
Adaptec SAS RAID Confi guration and the Windows OS Installation Instructions Adaptec SAS RAID Configuration and the Windows OS Installation Instructions After all the hardware has been installed, you must
Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines. An Oracle Technical White Paper December 2008
Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines An Oracle Technical White Paper December 2008 Converting Linux and Windows Physical and Virtual Machines to Oracle
Installing Windows 98 in Windows Virtual PC 7 (Windows Virtual PC)
Installing Windows 98 in Windows Virtual PC 7 (Windows Virtual PC) Before beginning, you will need to have a Windows 98 installation CD and a Windows 98 license key and a bootable CD. A bootable floppy
Getting your system to boot with initrd and initramfs
Getting your system to boot with initrd and initramfs Ryan Curtin LUG@GT Ryan Curtin Getting your system to boot with initrd and initramfs - p. 1/12 Goals By the end of this presentation, hopefully, you
TBMR. Cristie Bare Machine Recovery. User Guide. For Linux. June 2014. Version 7.1.1. Cristie Data Products GmbH Nordring 53-55
TBMR Cristie Bare Machine Recovery User Guide For Linux June 2014 Version 7.1.1 Cristie Softw are Ltd. New Mill Chestnut Lane Stroud GL5 3EH United Kingdom Tel:+44(0)1453 847000 Fax:+44(0)1453 847001 [email protected]
System administration basics
Embedded Linux Training System administration basics Michael Opdenacker Thomas Petazzoni Free Electrons Copyright 2009, Free Electrons. Creative Commons BY SA 3.0 license Latest update: Dec 20, 2010, Document
A Practitioner's Guide to Linux as a Computer Forensic Platform
A Practitioner's Guide to Linux as a Computer Forensic Platform [email protected] VER 3.78 December 2008 LEGALITIES...4 ACKNOWLEDGMENTS...4 FOREWORD...5 A WORD ABOUT THE GNU IN GNU/LINUX...6 WHY LEARN
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
NI Real-Time Hypervisor for Windows
QUICK START GUIDE NI Real-Time Hypervisor Version 2.1 The NI Real-Time Hypervisor provides a platform you can use to develop and run LabVIEW and LabVIEW Real-Time applications simultaneously on a single
NVIDIA RAID Installation Guide
NVIDIA RAID Installation Guide 1. NVIDIA BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID. 2 1.2 RAID Configurations Precautions.. 3 1.3 Create Disk Array. 4 2. NVIDIA Windows RAID Installation
Acronis Backup & Recovery 11.5 Server for Linux. User Guide
Acronis Backup & Recovery 11.5 Server for Linux User Guide Copyright Statement Copyright Acronis International GmbH, 2002-2012. All rights reserved. Acronis and Acronis Secure Zone are registered trademarks
Installing a Second Operating System
Installing a Second Operating System Click a link below to view one of the following sections: Overview Key Terms and Information Operating Systems and File Systems Managing Multiple Operating Systems
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
Red Hat Linux 7.2 Installation Guide
Red Hat Linux 7.2 Installation Guide Ryan Spangler [email protected] http://ceut.uww.edu April 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002
Do it Yourself System Administration
Do it Yourself System Administration Due to a heavy call volume, we are unable to answer your call at this time. Please remain on the line as calls will be answered in the order they were received. We
Cristie Bare Machine Recovery. User Guide. For Linux. April 2015. Version 7.2.2. Cristie Data Products GmbH Nordring 53-55
Cristie Bare Machine Recovery User Guide For Linux April 2015 Version 7.2.2 Cristie Software Ltd. New Mill Chestnut Lane Stroud GL5 3EH United Kingdom Tel:+44(0)1453 847000 Fax:+44(0)1453 847001 [email protected]
Load Balancing - Single Multipath Route HOWTO
Load Balancing - Single Multipath Route HOWTO Shakthi Kannan, shaks_wants_no_spam_at_shakthimaan_dot_com January 5, 2007 Revision: 1.2 Abstract This documentation provides the steps to setup load-balancing
Acronis Backup & Recovery 11.5 Server for Linux. Update 2. User Guide
Acronis Backup & Recovery 11.5 Server for Linux Update 2 User Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are registered
SiS 180 S-ATA User s Manual. Quick User s Guide. Version 0.1
SiS 180 S-ATA User s Manual Quick User s Guide Version 0.1 Edition April 2003 Copyright Trademarks SiS is a registered trademark of Silicon Integrated Systems Corp. All brand or product names mentioned
Setting up SATA RAID on the HP xw4600, xw6600, and xw8600 Workstations
Setting up SATA RAID on the HP xw4600, xw6600, and xw8600 Workstations Introduction This document details the steps needed to setup RAID 0, RAID 1, RAID 5, and RAID 10 disk configurations on an HP xw4600,
TestDisk Step By Step CGSecurity
This Recovery example guides you through TestDisk step by step to recover a missing partition and repair a corrupted one. Translation of this TestDisk manual to other languages are welcome. Example Problem
HP Embedded SATA RAID Controller
HP Embedded SATA RAID Controller User Guide Part number: 391679-002 Second Edition: August 2005 Legal notices Copyright 2005 Hewlett-Packard Development Company, L.P. The information contained herein is
NBMR. Bare Machine Recovery for EMC NetWorker. User Guide. For Linux. June 2014. Version 7.1.2. Cristie Data Products GmbH Nordring 53-55
NBMR Bare Machine Recovery for EMC NetWorker User Guide For Linux June 2014 Version 7.1.2 Cristie Softw are Ltd. New Mill Chestnut Lane Stroud GL5 3EH United Kingdom Tel:+44(0)1453 847000 Fax:+44(0)1453
SiS S-ATA User s Manual. Quick User s Guide. Version 0.1
SiS S-ATA User s Manual Quick User s Guide Version 0.1 Edition April 2003 Copyright Trademarks SiS is a registered trademark of Silicon Integrated Systems Corp. All brand or product names mentioned are
LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011
LOCKSS on LINUX Installation Manual and the OpenBSD Transition 02/17/2011 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 7 BIOS Settings... 10 Installation... 11 Firewall
Apache Hadoop Storage Provisioning Using VMware vsphere Big Data Extensions TECHNICAL WHITE PAPER
Apache Hadoop Storage Provisioning Using VMware vsphere Big Data Extensions TECHNICAL WHITE PAPER Table of Contents Apache Hadoop Deployment on VMware vsphere Using vsphere Big Data Extensions.... 3 Local
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
RocketRAID 2340 SATAII Host Adapter
RocketRAID 2340 SATAII Host Adapter User s Guide Revision: 1.0 Date: May 2006 HighPoint Technologies, Inc. Copyright Copyright 2006 HighPoint Technologies, Inc. This document contains materials protected
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
How to Install Windows on Xen TM 3.0
How to Install Windows on Xen TM 3.0 A XenSource Technical Note for the Windows 2003 Server Introduction This note describes how to install Windows 2003 Server on Xen. It provides an overview of the Linux
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
Table of Contents. Software-RAID-HOWTO
Table of Contents The Software-RAID HOWTO...1 Jakob Østergaard [email protected] and Emilio Bueso [email protected] 1. Introduction...1 2. Why RAID?...1 3. Devices...1 4. Hardware issues...1 5. RAID
TimeIPS Server. IPS256T Virtual Machine. Installation Guide
TimeIPS Server IPS256T Virtual Machine Installation Guide TimeIPS License Notification The terms and conditions applicable to the license of the TimeIPS software, sale of TimeIPS hardware and the provision
Documentation OpenScape Business V1 Linux Server
OpenScape Business V1, Linux Server, Installation Instructions P31003P3010J103017631 04/2013 Siemens Enterprise Communications GmbH & Co. KG. 2013 Documentation OpenScape Business V1 Linux Server Installation
TELE 301 Lecture 7: Linux/Unix file
Overview Last Lecture Scripting This Lecture Linux/Unix file system Next Lecture System installation Sources Installation and Getting Started Guide Linux System Administrators Guide Chapter 6 in Principles
HP LeftHand SAN Solutions
HP LeftHand SAN Solutions Support Document Support Procedures Seting Up iscsi volumes on CENTOS 5, RedHat 5, Fedora 7 and, Debian Ubutu Linux Legal Notices Warranty The only warranties for HP products
Relax and Recover (rear) Workshop
Relax and Recover Relax and Recover (rear) Workshop Gratien D'haese IT3 Consultants Getting started with rear Download it from The official tar-balls https://github.com/rear/rear/downloads/ The rear-snapshot
Intelligent disaster recovery. Dell DL backup to Disk Appliance powered by Symantec
Intelligent disaster recovery Dell DL backup to Disk Appliance powered by Symantec The PowerVault DL Backup to Disk Appliance Powered by Symantec Backup Exec offers the industry s only fully integrated
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
Computer forensic science
Computer forensic science This drive has been victimized! Mallory 1 CS78 students must help! CS78 students What happened?! Every student gets a copy 2 Forensic science it s detective work Computer forensic
Serial ATA RAID PCI Card
Serial ATA RAID PCI Card User Manual 1 Features Silicon Image SiI3512 SATA controller chip Compliant with PCI Specification, Rev. 2.3 Compliant with Serial ATA 1.0 specification Provides two independent
