Building a diskless Linux Cluster for high performance computations from a standard Linux distribution

Size: px
Start display at page:

Download "Building a diskless Linux Cluster for high performance computations from a standard Linux distribution"

Transcription

1 Building a diskless Linux Cluster for high performance computations from a standard Linux distribution Stefan Böhringer Institut für Humangenetik Universitätsklinikum Essen April, 7 th, 2003 Abstract This paper describes the steps involved in building a Linux cluster usable for high performance computing. A diskless design for Linux clusters is highly beneficial on account of reduced administration costs. Therefore an implementation of a diskless cluster is described here. Since Linux development is still in flux the focus is on an abstract treatment. The actual steps involved at the time of writing are given in highlighted text sections. The setting considered here involves Pre execution Environment (PXE) capable hardware. Keywords: Linux, cluster, diskless boot, PXE, tftp, NFS boot, load balancing, high performance computations 1 Introduction Linux is a highly stable operating system (OS) that is being used for many high availability tasks, like web and database servers. Also Linux clusters have been 1

2 built to serve as high perfomance computations facilities [1]. These clusters are commonly referred as Beowulf clusters [2], whereby this term is not well defined. In general it denotes any type of linux boxes in proximity (when the metric to define proximity is again subject to variation). Using a web search one can find numerous guides to build a Linux cluster but in this instance there did not seem to be a matching document. Therefore this document intends to focus on the specific setting considered here. A different setting might be served better elsewhere. The following aims are pursued: - OS is Linux - Diskless boot - No hardware changes to nodes (no eproms) - Homogeneous Nodes This guide assumes some UNIX proficiency. It is recommended to use a web search if any terms seem to be ambiguous or are unknown to the reader [3]. Any computer topic is treated in depth on the web. In the instance of problems during the build of a Linux cluster it is highly recommended to use Google/Groups [4], since numerous problems have been discussed before and can be retrieved from the cited service. The documents treats the assembly of the cluster in three sections. - Choice of hardware - Configuring the boot process (server configuration) - Configuring the shared file system (node configuration) In the following a practical example based on a RedHat distribution is reported. In the following the cluster built is referred to as the Genecruncher I cluster ([5]). The steps involved to build that particular type of cluster are shown in non proportional font. 2

3 2 Choice of Hardware According to the aims outlined above, there are some constrained with respect to the hardware usable for a linux cluster. You need a mainboard that supports network boot via PXE which is implemented through a Managed Boot Agent (MBA). This should not be a problem for most mainboards these days. At the time of selecting the hardware (Autumn 2002) there was no cheap mainboard available with an onboard network interface card (NIC) which would support PXE. Therefore a PCI NIC with PXE support had to be added. 3Com and Intel cards should be usable. The Genecruncher I uses the following type of hardware (specific expamples are shown in nonproportional font). Genecruncher I hardware configuration Mainboard: Elitegroup K7S5A CPU: AMD Duron 1,2 GHz Memory: 256 MB NIC: 3Com 3C905C-TX-M PCI Graphics: ATI Xpert 2000/32MB Additions in the server node CDRom 80 GB Harddisk Netgear 16 port 100Mbit switch 3 Server configuration The server is to be installed with a Linux operation system (OS). After installation of the OS the following services have to be installed and configured. 3

4 DHCP tftp PXE NFS A standard Redhat 7.3 distribution, which was downloaded from the internet was installed on the Genecruncher I server. During installation it was ensured that DHCP and TFTP software packages were installed. 3.1 Network configuration of the server node 3.2 Dynamic Host configuration Protocol (DHCP) When the boot process of a client node started that node is bereft of any information. The first bit of information a node needs is an IP address and a host name. This configuration deals with assigning constant IP addresses to the nodes, which is a requirement for netbooting the clients. This requires one to determine the Ethernet Hardware addresses of the client node NICs, which will be reported on any attempted netboot from a client. The dhcpd demon is configured via the dhcpd.conf file usually located at /etc/dhcpd.conf. It is documented in the dhcpd.conf manual file. On a RedHat 7.3 box the dhcpd demon is managed via SysV startup scripts. To activate the service at boot time issue the command: /sbin/chkconfig --level 345 dhcpd start Here is an exerpt of the Genecruncher I dhcpd.conf: option domain-name-servers , ; 4

5 option routers ; subnet netmask { # range ; } subnet netmask { } range ; group { filename "pxelinux.0"; use-host-decl-names on; host cn1 { fixed-address ; hardware ethernet 00:04:75:9d:32:43; option root-path "/tftpboot/ "; } #... repreat for all diskless nodes } Punching wholes into the firewall It is perhaps a good choice to turn off firewalling in the first place. Port accesses for all required services have to be permitted. On RedHat 7.3 the firewall rules are stored in the file /etc/sysconfig/ipchains The relevant ports are 67 for dhcp and 60 for tftp. However tftp seems to require additional ports. The following configuration is 5

6 very liberal and lets through the nfs ports also (amongst others) /etc/sysconfig/ipchains :input ACCEPT :forward ACCEPT :output ACCEPT -A input -s 0/0 0: d 0/0 0: p udp -i eth0 -j ACCEPT -A input -s 0/0 0: d 0/0 0: p tcp -i eth0 -j ACCEPT -A input -s 0/0 0: d 0/0 0: p udp -i eth1 -j ACCEPT -A input -s 0/0 0: d 0/0 0: p tcp -i eth1 -j ACCEPT # allow for dhcp requests -A input -s 0/0 67:68 -d 0/0 67:68 -p udp -i eth1 -j ACCEPT # allow for tftp -A input -s /16 60: -d 0/0 0: -p udp -i eth1 -j ACCEPT -A input -s 0/0 -d 0/0 -i lo -j ACCEPT -A input -p tcp -s 0/0 -d 0/0 0:1023 -y -j REJECT -A input -p tcp -s 0/0 -d 0/ y -j REJECT -A input -p udp -s 0/0 -d 0/0 0:1023 -j REJECT -A input -p udp -s 0/0 -d 0/ j REJECT -A input -p tcp -s 0/0 -d 0/0 6000:6009 -y -j REJECT -A input -p tcp -s 0/0 -d 0/ y -j REJECT 3.3 Trivial File Transfer Protocol (TFTP) TFTP allows the diskless nodes to load boot code over a NIC. This is discussed in section 3.4. The boot code will then load a linux kernel which then will use NFS to perform any further file accesses over the network. On RedHat 7.3 the TFTP demon is controlled by the xinetd meta demon. You can enable the service by changing the disabled option in the /etc/xinetd.d/tftp file. The -s option specifies which directory will 6

7 be served. In the following /tftpboot is assumed /etc/xinetd.d/tftp service tftp { socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /tftpboot disable = no per_source = 11 cps = only_from = /0 } 3.4 Pre Execution Environment (PXE) To make use of the PXE booting process you need to download the PXELINUX ([6]) which is part of the SYSLINUX project ([7]). PXE is a standard for network cards to load boot code over the network. This is done via tftp and you therefore have to populate the tftp directory with the apporiate files. pxelinux.0 is the binary from the PXELINUX distribution which allows ix68 machines to boot linux. A directory is to be created in the /tftpboot directory named pxelinux.cfg. Within that directory a file named default is to be created. It holds the name of the kernel and the kernel options. label linux kernel bzimage append root=/dev/nfs ip=dhcp init=/sbin/init 7

8 3.5 Network File System (NFS) The server has to expose parts of its filesystem to be mountable by the client and used by them as their root filesystem. The kernel is instructed to use the /dev/nfs device to mount its file system (sec. 3.4). This device has to be created in the /dev directory and serves as a placeholder. mknod /dev/nfs c The kernel can be told to use that device as root file system by the use of the rdev command. rdev bzimage /dev/nfs To allow for file access via NFS later in the boot process you have to configure the NFS server via the /etc/exports file. You have add a line like /tftpboot /24(rw,no_root_squash) where is the network of the client nodes. In the Genecruncer implementation, both, the rdev and the PXE options were used. To enable nfs on RedHat 7.3 issue the commands: chkconfig --level 345 nfs on chkconfig --level 345 nfslock on Again, the firewall rules must let through nfs netwok accesses. This completes the server configuration. Move on to the clients. 4 Client configuration The client configuration takes place entirely on the server on account of lacking disk space except for the bios configuration of the diskless nodes. 8

9 4.1 Hardware Since the client nodes are diskless there is not much to configure. You have to enable netboot in the bios. There may be several netboot options in the bios when the MBA boot option is the correct one. Second you have to determine the Hardware ethernet address of the network card in the client node. To get it, plug in the network and a monitor and start the boot process. At some point the NIC tries to set an IP address via DHCP and should display its hardware address at this point in time. Since the NIC is waiting you should have enough time to write it down. It turns out to be useful to tag each node with a label and the hardware address, since in this instance you will not have to plug a monitor into the node again. The hardware address has to be supplied to the dhcp daemon running on the server as described above (section 3.2). 4.2 Software Building a client kernel Building a new kernel requires you to install the kernel sources. Once these are install you can enter the top level source directory. Under Rehat 7.3 the sources are supplied on the CD distribution. If you did not install them in the first place you can install the RPM kernel rpm. The source directory is placed at: /usr/src/linux Now issue make menuconfig to build a new kernel being capable of netbooting. This kernel must understand the following things, which have to be compiled into the kernel. Support the NIC installed for netbooting Be able to configure via DHCP 9

10 Be able to NFS mount its file system The NIC you have installed in the clients has to be chosen from the list of supported network cards under Network device support / Ethernet (10 or 100Mbit) menu entries. If you are not sure about your NIC plug it into another linux box, and let it autoconfigure the card. Then you can inspect the file /etc/modules.conf (on Redhat) to learn about the driver used. You have to press Y and an * should appear before the NIC driver, indicating that static support for that particular NIC is included in the kernel. Next, choose the Networking options from the main menu. Here you have to enable IP: kernel level autoconfiguration. This enables the dhcp and bootp options, both of which have to be included statically (in the TCP/IP networking section). By some obscure quantum effect this lets appear another option under File Systems Network File Systems NFS file system support. Both, NFS file system support and Root file system on NFS are to be compiled statically into the kernel. Now you are done. Save the configuration and issue make dep ; make. This will produce a bzimage file. On RedHat 7.3 the resulting bzimage file is located at: /usr/src/linux /arch/i386/boot/bzimage The bzimage file is then to be copied to the tftpboot directory (section 3.2). On problems do a Google Search ( Linux Kernel HOWTO ) Putting together the client filesystem By convention a root tree for each client is placed in the /tftpboot/ip where IP is the IP address of the node as specified in the dhcpd.conf 10

11 file (e.g. /tftpboot/ ). The following script was used to create a template root tree from which actual client root trees are created (createclienttemplate.sh): #!/bin/sh CUSTOM_FILES=/home/pingu/clusterFiles CLIENT_TEMPLATE=/tftpboot/client DIRS_FROM_SERVER="bin lib usr boot etc sbin" echo "Cleaning out destination dir..." rm -rf $CLIENT_TEMPLATE mkdir $CLIENT_TEMPLATE echo "Copying directories: $DIRS_FROM_SERVER..." ( cd / ; cp -r $DIRS_FROM_SERVER $CLIENT_TEMPLATE ) echo Creating devices..../makedev -d $CLIENT_TEMPLATE/dev generic./makedev -d $CLIENT_TEMPLATE/dev console./makedev -d $CLIENT_TEMPLATE/dev loop0 losetup $CLIENT_TEMPLATE/dev/loop0 $CLIENT_TEMPLATE/var/swap echo Copying customized files... cp $CUSTOM_FILES/rc.sysinit $CLIENT_TEMPLATE/etc/rc.d cp $CUSTOM_FILES/fstab $CLIENT_TEMPLATE/etc cp $CUSTOM_FILES/inittab $CLIENT_TEMPLATE/etc This script copies essential directories (DIRS FROM SERVER) as they are on the server machine. Second the devices are created using the MAKEDEV tool. Essential is the console devices used for kernel output. The loop0 devices is used later to establish a swap file. Third few files are replaced to account for netbooting. 11

12 The rc.sysinit replacement is necessary to allow for the setup of a proper swap file on RedHat 7.3. It is not listed here on account of size but is to be downloaded from the supplementary Website (see below). The fstab lists the nfs mounts of client nodes. All these directories are shared between nodes. The IP address is the address of the server and must be replaced with the correct address. Excerpt: :/tftpboot/IP / nfs rw,bg,soft,intr :/tftpboot/client/usr/bin /usr/bin nfs rw,bg,soft,intr :/tftpboot/client/usr/etc /usr/etc nfs rw,bg,soft,intr none /dev/pts devpts gid=5,mode= none /proc proc defaults 0 0 /dev/loop0 swap swap defaults 0 0 The inittab configures the runlevels of the nodes:... # Default runlevel. The runlevels used by RHS are: # 0 - halt (Do NOT set initdefault to this) # 1 - Single user mode # 2 - Multiuser, without NFS (The same as 3, if you do not have networking) # 3 - Full multiuser mode # 4 - unused # 5 - X11 # 6 - reboot (Do NOT set initdefault to this) # id:3:initdefault: # System initialization. si::sysinit:/etc/rc.d/rc.sysinit 12

13 ... For each node to be added for diskless boot a unique file system has to be created. Here is a script to build such a tree from the template file structure. The script has to be supplied with the IP address of the node to be added. #!/bin/bash BASE=/tftpboot CLIENT_TEMPLATE=$BASE/client NODE=$BASE/$1 if [ "$1" = ]; then echo USAGE: $0 node-ip fi echo Creating filesystem for node $1 mkdir $NODE # the following dirs are on their own on each node: # boot etc dev [duplicated] # tmp root home [empty] # var [sceleton] # all others are mounted via nfs # bin lib sbin usr echo Creating empty dirs and sceletons... for d in tmp root home proc usr ; do mkdir $NODE/$d done 13

14 echo Duplicating needed dirs... cd $CLIENT_TEMPLATE for d in dev boot etc sbin bin lib usr/sbin ; do echo Duplicating $d... tar cp- $d tar xc- $NODE done echo Creating var sceleton... mkdir $NODE/var for d in local log spool spool/anacron spool/at opt db lib lib/nfs lib/nfs/statd tmp loc mkdir $NODE/var/$d done touch /var/lib/nfs/rmtab touch /var/lib/nfs/xtab echo Creating usr sceleton other than sbin... for d in bin dict etc games GNUstep include info kerberos lib libexec local man mkdir $NODE/usr/$d done share s echo Creating swap file... dd if=/dev/zero of=$node/var/swap bs=1k count=50k /sbin/mkswap $NODE/var/swap The script does the following. First it creates a new root directory for the node. Second it creates empty, private directories for the node. Third it copies private directories from the template file tree. Fourth it creates empty directories for directories to be mounted via NFS and to be shared amongst the nodes. Fifth a swap file is created for the node (50Mb). The /dev/loop0 device created earlier serves as a loopback devices which allows for mounting the file created as a swap device. 14

15 Files can be downloaded from [5]. TROUBLESHOOTING On Redhat 7.3 the boot process used to start hanging during the experimental phase of the configuration. It turned out that the /dev/console file went corrupt. Recreating /dev/pts and /dev/console remedied this problem. Issue: mkdir $CLIENT_TEMPLATE/dev/pts;./MAKEDEV -d $CLIENT_TEMPLATE/dev console Finishing off Well, there should not be any issues left. However, you should be ready to accept some time investment to have your own cluster up and running. This guide may contain errors and new ReHat versions may vary from 7.3 in many aspects. The client nodes were established by first making a single node bootable. It turned out to be useful to create necessary users, do application and service setup on that machine and later pulling off copies for all nodes. 5 Remaining topics You are likely to install a load balancing software on your cluster. This topic is not covered here. You are referred to two references to look for the options ([8, 9]). You are encouraged to give feedback on this document, may it be error reports or comments. 15

16 References References [1] [2] [3] [4] [5] [6] [7] [8] [9] 16

Installing RHEL 6.x from beginning to end using PXE and Kickstart

Installing RHEL 6.x from beginning to end using PXE and Kickstart Red Hat Enterprise Linux 6.x - small tutorial - part 3 author: Alexandre Borges revision: A website: http://alexandreborges.org Installing RHEL 6.x from beginning to end using PXE and Kickstart Introduction

More information

Procedure to Create and Duplicate Master LiveUSB Stick

Procedure to Create and Duplicate Master LiveUSB Stick Procedure to Create and Duplicate Master LiveUSB Stick A. Creating a Master LiveUSB stick using 64 GB USB Flash Drive 1. Formatting USB stick having Linux partition (skip this step if you are using a new

More information

Table 1-1. PXE Server Side Requirements

Table 1-1. PXE Server Side Requirements pplications Note Setting Up Linux PXE on Server and Client Systems 1 Prerequisites The example in this document was performed on a PXE server running RHEL5.2 64-bit with DHCP, TFTP, and NFS servers running

More information

DKTCOMEGA AONode Management Module User Documentation

DKTCOMEGA AONode Management Module User Documentation AONode Management Module User Documentation Table of content Introduction...3 The boot process of the AONode...4 DHCP Settings...5 TFTP Settings...8 Custom configuration...9 Device script commands...10

More information

SUSE Linux Enterprise Server 11 SP2 for UEFI Clients

SUSE Linux Enterprise Server 11 SP2 for UEFI Clients Best Practices White Paper Enterprise Linux SUSE Linux Enterprise Server 11 SP2 for UEFI Clients Table of Contents page SUSE Linux Enterprise Server 11 SP2 and PXE Boot for UEFI Clients... 2 UEFI IPv4

More information

Getting started with ARM-Linux

Getting started with ARM-Linux Getting started with ARM-Linux www.embeddedarm.com (480)-837-5200 usa Connecting serial communications and power (JP2 must be installed to enable console) An ANSI terminal or a PC running a terminal emulator

More information

MODULE 1. INSTALLING SUSE LINUX ENTERPRISE SERVER 1. BASIC NOTIONS ON INSTALLATION PROCEDURES

MODULE 1. INSTALLING SUSE LINUX ENTERPRISE SERVER 1. BASIC NOTIONS ON INSTALLATION PROCEDURES MODULE 1. INSTALLING SUSE LINUX ENTERPRISE SERVER 1. BASIC NOTIONS ON INSTALLATION PROCEDURES General matters System Start-Up for Installation Insert the first SUSE Linux Enterprise CD or the DVD into

More information

Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide

Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide July 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, Hypervisor Attached Storage, HAS, Hypervisor

More information

HTTP-FUSE PS3 Linux: an internet boot framework with kboot

HTTP-FUSE PS3 Linux: an internet boot framework with kboot HTTP-FUSE PS3 Linux: an internet boot framework with kboot http://openlab.jp/oscirclar/ Kuniyasu Suzaki and Toshiki Yagi National Institute of Advanced Industrial Science and Technology Embedded Linux

More information

Redhat 6.2 Installation Howto -Basic Proxy and Transparent

Redhat 6.2 Installation Howto -Basic Proxy and Transparent Redhat 6.2 Installation Howto -Basic Proxy and Transparent This is a guide document although very detailed in some sections. It assumes you have a have an idea about installing RH and working with Linux.

More information

Load Balancing - Single Multipath Route HOWTO

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

More information

Setting up a Linux PXE server and integrating clients

Setting up a Linux PXE server and integrating clients Setting up a Linux PXE server and integrating clients HOWTO Abstract... 2 Text conventions... 2 Required hardware and software... 2 For the PXE server... 2 For the clients... 2 Overview... 3 pxelinux functionality...

More information

Building a Penetration Testing Virtual Computer Laboratory

Building a Penetration Testing Virtual Computer Laboratory Building a Penetration Testing Virtual Computer Laboratory User Guide 1 A. Table of Contents Collaborative Virtual Computer Laboratory A. Table of Contents... 2 B. Introduction... 3 C. Configure Host Network

More information

EXPLORING LINUX KERNEL: THE EASY WAY!

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

More information

Linux Networking Basics

Linux Networking Basics Linux Networking Basics Naveen.M.K, Protocol Engineering & Technology Unit, Electrical Engineering Department, Indian Institute of Science, Bangalore - 12. Outline Basic linux networking commands Servers

More information

Argon Client Management Services- Frequently Asked Questions (FAQ)

Argon Client Management Services- Frequently Asked Questions (FAQ) Simplifying Client Management FAQ Argon - Frequently Asked Questions (FAQ) What are the server requirements? Operating Systems: Windows 98, Windows NT Version 4.0 (Service Pack 4 or later, IE 4 or later),

More information

Setting up your K12LTSP or LTSP loadbalancing

Setting up your K12LTSP or LTSP loadbalancing Setting up your K12LTSP or LTSP loadbalancing and dhcp failover. What you'll need: Two servers running K12LTSP or LTSP in single NIC mode A good solid high speed connection (gigabit recommended) An external

More information

Parallels Cloud Server 6.0

Parallels Cloud Server 6.0 Parallels Cloud Server 6.0 Installation Using PXE August 27, 2014 Copyright 1999-2014 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200

More information

THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering

THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering ENG 224 Information Technology Laboratory 6: Internet Connection Sharing Objectives: Build a private network that

More information

Lab 1: Introduction to the network lab

Lab 1: Introduction to the network lab CSCI 312 - DATA COMMUNICATIONS AND NETWORKS FALL, 2014 Lab 1: Introduction to the network lab NOTE: Be sure to bring a flash drive to the lab; you will need it to save your data. For this and future labs,

More information

Deskpool Quick Start. Version: V2.1.x. Based on Hyper-V Server 2012 R2. Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com)

Deskpool Quick Start. Version: V2.1.x. Based on Hyper-V Server 2012 R2. Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com) Deskpool Quick Start Based on Hyper-V Server 2012 R2 Version: V2.1.x Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com) Last updated on March 18, 2015 Copyright Shenzhen Jieyun Technology Co., Ltd.

More information

Xen Virtualization Software

Xen Virtualization Software Live Migration with Xen Virtualization Software Virtualization is an emerging trend in enterprise data centers. Using virtualization software, system administrators can run multiple operating systems on

More information

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 Version 1.0 November 2008 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 1801 Varsity Drive Raleigh NC 27606-2072 USA Phone: +1 919 754

More information

VERITAS NetBackup Bare Metal Restore 6.0

VERITAS NetBackup Bare Metal Restore 6.0 VERITAS NetBackup Bare Metal Restore 6.0 System Administrator s Guide for UNIX, Windows, and Linux N15279C September 2005 Disclaimer The information contained in this publication is subject to change without

More information

CA arcserve Unified Data Protection Agent for Linux

CA arcserve Unified Data Protection Agent for Linux CA arcserve Unified Data Protection Agent for Linux User Guide Version 5.0 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

More information

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system

More information

Centralize AIX LPAR and Server Management With NIM

Centralize AIX LPAR and Server Management With NIM Page 1 of 6 close window Print Centralize AIX LPAR and Server Management With NIM June July 2009 by Jaqui Lynch Available Downloads: Code Sample 1 Code Sample 2 NIM Resources In a previous article, Simplifying

More information

Buildroot for Vortex86EX (2016/04/20)

Buildroot for Vortex86EX (2016/04/20) Buildroot for Vortex86EX (2016/04/20) Table of Contents Introduction...1 Prepare...1 Install Virtual Machine (optional)...1 Install Buildroot...3 Config Buildroot for VEX-SOM (optional)...4 Generate Linux

More information

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk.

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk. Windows Template Creation Guide How to build your own Windows VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Preparing the Server... 2 2. Installing Windows... 3 3. Creating a Template...

More information

II. Installing Debian Linux:

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,

More information

PC Deployment over network using PXE environment. Workshop

PC Deployment over network using PXE environment. Workshop PC Deployment over network using PXE environment Workshop September 2005 Table of Contents 1.0 Introduction... 4 1.1. Terminology... 4 1.2 Overview... 4 2.0 Background... 5 2.1 The Issue... 5 2.2 The Solution...

More information

SAP HANA Disaster Recovery with Asynchronous Storage Replication Using Snap Creator and SnapMirror

SAP HANA Disaster Recovery with Asynchronous Storage Replication Using Snap Creator and SnapMirror Technical Report SAP HANA Disaster Recovery with Asynchronous Storage Replication Using Snap Creator and SnapMirror Nils Bauer, NetApp March 2014 TR-4279 The document describes the setup of a disaster

More information

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3 NOC PS manual Copyright Maxnet 2009 2015 All rights reserved Page 1/45 Table of contents Installation...3 System requirements...3 Network setup...5 Installation under Vmware Vsphere...8 Installation under

More information

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013 LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...

More information

The embedded Linux quick start guide lab notes

The embedded Linux quick start guide lab notes The embedded Linux quick start guide lab notes Embedded Linux Conference Europe 2010 Date: Tuesday 26th October Location: DeVere University of Arms Hotel, Cambridge Room: Churchill Suite Presenter: Chris

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

www.cristie.com CBMR for Linux v6.2.2 User Guide

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

More information

Dell Flexible Computing Solutions: Deploying On-Demand Desktop Streaming

Dell Flexible Computing Solutions: Deploying On-Demand Desktop Streaming Dell Flexible Computing Solutions: Deploying On-Demand Desktop Streaming www.dell.com support.dell.com Notes, Notices, and Cautions NOTE: A NOTE indicates important information that helps you make better

More information

Acronis Backup & Recovery 10 Server for Linux. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Installation Guide Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Parallels Virtuozzo Containers 4.7 for Linux

Parallels Virtuozzo Containers 4.7 for Linux Parallels Virtuozzo Containers 4.7 for Linux Deploying Clusters in Parallels-Based Systems Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd.

More information

ServerPronto Cloud User Guide

ServerPronto Cloud User Guide ServerPronto Cloud User Guide Virtual machines Virtual machines are based on templates and are deployed on hypervisors. Hypervisors give them access to CPU, disk and network resources. The ServerPronto

More information

NATIONAL POPULATION REGISTER (NPR)

NATIONAL POPULATION REGISTER (NPR) NATIONAL POPULATION REGISTER (NPR) Project Name: NPR Version No: 1.0.0 Release Date: Group Name: NPR-ECIL Version Date: LINUX SERVER INSTALLATION AND CONFIGURATION FOR JAVA BASED NPR DATAENTRY SOFTWARE

More information

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V Instructions apply to installs on Windows Server 2012 R2 Before you begin When deployed in a Hyper V environment, LANGuardian will capture

More information

DeploymentManager Ver6.4

DeploymentManager Ver6.4 DeploymentManager Ver6.4 Installation Guide -First Edition- Rev.001 Contents Introduction... 4 Target Audience and Purpose... 4 Document Structure... 4 Documentation Guidelines for DeploymentManager Manuals...

More information

50.XXX is based on your station number

50.XXX is based on your station number Lab 6: Dynamic Host Configuration Protocol The purpose of this lab is to configure a DHCP server for multiple subnets. You will configure additional options along with an IP address and netmask, and you

More information

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

CATS-i : LINUX CLUSTER ADMINISTRATION TOOLS ON THE INTERNET

CATS-i : LINUX CLUSTER ADMINISTRATION TOOLS ON THE INTERNET CATS-i : LINUX CLUSTER ADMINISTRATION TOOLS ON THE INTERNET Jiyeon Kim, Yongkwan Park, Sungjoo Kwon, Jaeyoung Choi {heaven, psiver, lithmoon}@ss.ssu.ac.kr, [email protected] School of Computing, Soongsil

More information

Installing VMware Tools on Clearswift v4 Gateways

Installing VMware Tools on Clearswift v4 Gateways Technical Guide Version 2.0 January 2016 Contents 1 Introduction... 3 2 Scope... 3 3 Installation and Setup... 4 3.1 Overview... 4 3.2 Installation... 4 4 Performance Impact... 8 4.1 Overview... 8 4.2

More information

SUSE LINUX Enterprise Server for SGI Altix Systems

SUSE LINUX Enterprise Server for SGI Altix Systems SUSE LINUX Enterprise Server for SGI Altix Systems 007 4651 002 COPYRIGHT 2004, Silicon Graphics, Inc. All rights reserved; provided portions may be copyright in third parties, as indicated elsewhere herein.

More information

Plexxi Control Installation Guide Release 2.1.0

Plexxi Control Installation Guide Release 2.1.0 Plexxi Control Installation Guide Release 2.1.0 702-20002-10 Rev 1.2 February 19, 2015 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX (7539) www.plexxi.com Notices The information

More information

Edwin Guchu. Implementation of cloud infrastructure using open source software

Edwin Guchu. Implementation of cloud infrastructure using open source software Edwin Guchu Implementation of cloud infrastructure using open source software Helsinki Metropolia University of Applied Sciences Bachelor of Engineering Degree Programme in Information Technology Thesis

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

More information

DeployStudio Server Quick Install

DeployStudio Server Quick Install DeployStudio Server Quick Install v1.7.0 The DeployStudio Team [email protected] Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched

More information

Ekran System Help File

Ekran System Help File Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15

More information

How to install PowerChute Network Shutdown on VMware ESXi 3.5, 4.0 and 4.1

How to install PowerChute Network Shutdown on VMware ESXi 3.5, 4.0 and 4.1 How to install PowerChute Network Shutdown on VMware ESXi 3.5, 4.0 and 4.1 Basic knowledge of Linux commands and Linux administration is needed before user should attempt the installation of the software.

More information

Module I-7410 Advanced Linux FS-11 Part1: Virtualization with KVM

Module I-7410 Advanced Linux FS-11 Part1: Virtualization with KVM Bern University of Applied Sciences Engineering and Information Technology Module I-7410 Advanced Linux FS-11 Part1: Virtualization with KVM By Franz Meyer Version 1.0 February 2011 Virtualization Architecture

More information

NCD X terminal mini HOWTO

NCD X terminal mini HOWTO Table of Contents NCD X terminal mini HOWTO...1 Ian Hodge, ian at permedia.ca...1 1. Copyright...1 2. Introduction...1 3. Requirements...1 4. Configuring the UNIX Host...1 5. Configuring the NCD X terminal

More information

VMware Auto Deploy Administrator s Guide

VMware Auto Deploy Administrator s Guide VMware Auto Deploy Administrator s Guide VMware Auto Deploy Administrator s Guide You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The

More information

Version 1.0. File System. Network Settings

Version 1.0. File System. Network Settings Factory Default Settings LAN 1 IP Address: 192.168.2.127 Login: root or guest ( telnet guest only) Password: root or guest ( telnet guest only) Serial Console Port: Baud rate: 115200 Data format: 8 Bits,

More information

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive This guide explains how to create and use a Rescue USB flash drive to reinstall and recover the ExtraHop system. When booting

More information

ThinkServer RD540 and RD640 Operating System Installation Guide

ThinkServer RD540 and RD640 Operating System Installation Guide ThinkServer RD540 and RD640 Operating System Installation Guide Note: Before using this information and the product it supports, be sure to read and understand the Read Me First and Safety, Warranty, and

More information

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011

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

More information

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management

More information

NI Real-Time Hypervisor for Windows

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

More information

An Introduction to the Linux Command Shell For Beginners

An Introduction to the Linux Command Shell For Beginners An Introduction to the Linux Command Shell For Beginners Presented by: Victor Gedris In Co-Operation With: The Ottawa Canada Linux Users Group and ExitCertified Copyright and Redistribution This manual

More information

CA ARCserve D2D for Linux

CA ARCserve D2D for Linux CA ARCserve D2D for Linux User Guide r16.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

NetPoint Configuration Guide. for thin clients

NetPoint Configuration Guide. for thin clients NetPoint Configuration Guide for thin clients Contents Layout of this Manual... 2 1.1 Components... 2 You can find the following items in the color box of the device:... 2 1.2 Recommended Server Configuration...

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Installation and Update Guide Table of contents Overview... 3 HPDM Server preparation... 3 FTP server configuration... 3 Windows Firewall settings... 3 Firewall

More information

Managed Backup Service - Agent for Linux 6.00.2415- Release Notes

Managed Backup Service - Agent for Linux 6.00.2415- Release Notes Managed Backup Service - Agent for Linux 6.00.2415- Release Notes 1 Managed Backup Service Agent for Linux Version 6.00.2415 Release Notes, 9 th June 2008 1 OVERVIEW This document contains release notes

More information

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux

More information

Ultra Thin Client TC-401 TC-402. Users s Guide

Ultra Thin Client TC-401 TC-402. Users s Guide Ultra Thin Client TC-401 TC-402 Users s Guide CONTENT 1. OVERVIEW... 3 1.1 HARDWARE SPECIFICATION... 3 1.2 SOFTWARE OVERVIEW... 4 1.3 HARDWARE OVERVIEW...5 1.4 NETWORK CONNECTION... 7 2. INSTALLING THE

More information

TECHNICAL HOWTO. Imaging Linux systems with hardware changes. author: [email protected]

TECHNICAL HOWTO. Imaging Linux systems with hardware changes. author: francois-xavier.horel@hp.com 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

More information

UNIX - FILE SYSTEM BASICS

UNIX - FILE SYSTEM BASICS http://www.tutorialspoint.com/unix/unix-file-system.htm UNIX - FILE SYSTEM BASICS Copyright tutorialspoint.com A file system is a logical collection of files on a partition or disk. A partition is a container

More information

VMware Server 2.0 Essentials. Virtualization Deployment and Management

VMware Server 2.0 Essentials. Virtualization Deployment and Management VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.

More information

Deploy the ExtraHop Discover Appliance with Hyper-V

Deploy the ExtraHop Discover Appliance with Hyper-V Deploy the ExtraHop Discover Appliance with Hyper-V 2016 ExtraHop Networks, Inc. All rights reserved. This manual, in whole or in part, may not be reproduced, translated, or reduced to any machine-readable

More information

Syncplicity On-Premise Storage Connector

Syncplicity On-Premise Storage Connector Syncplicity On-Premise Storage Connector Implementation Guide Abstract This document explains how to install and configure the Syncplicity On-Premise Storage Connector. In addition, it also describes how

More information

Deploying Windows Streaming Media Servers NLB Cluster and metasan

Deploying Windows Streaming Media Servers NLB Cluster and metasan Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................

More information

WES 9.2 DRIVE CONFIGURATION WORKSHEET

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

More information

VoIPon www.voipon.co.uk [email protected] Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299

VoIPon www.voipon.co.uk sales@voipon.co.uk Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299 VoiceGear Connect Installation Guide Ver.3.0 Page 2 1. OVERVIEW... 3 1.1 MINIMUM SYSTEM REQUIREMENTS... 3 2. INSTALLATION PROCEDURE... 4 2.1 STEP ONE... 4 2.2 STEP TWO... 4 2.3 STEP THREE... 4 2.4 STEP

More information

How to Create, Setup, and Configure an Ubuntu Router with a Transparent Proxy.

How to Create, Setup, and Configure an Ubuntu Router with a Transparent Proxy. In this tutorial I am going to explain how to setup a home router with transparent proxy using Linux Ubuntu and Virtualbox. Before we begin to delve into the heart of installing software and typing in

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

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

Newton Linux User Group Graphing SNMP with Cacti and RRDtool Newton Linux User Group Graphing SNMP with Cacti and RRDtool Summary: Cacti is an interface that can be used to easily manage the graphing of SNMP data. These graphs allow you to visualize performance

More information

USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks

USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks CTC Union Technologies Co., Ltd. Far Eastern Vienna Technology Center (Neihu Technology Park) 8F, No. 60 Zhouzi St. Neihu,

More information

Chapter 8 How to Configure TCP/IP Printing for Unix

Chapter 8 How to Configure TCP/IP Printing for Unix Chapter 8 How to Configure TCP/IP Printing for Unix Brother print servers are supplied with the Transmission Control Protocol/Internet Protocol (TCP/IP) protocol suite. Since virtually all UNIX host computers

More information

Performance of VMware vcenter (VC) Operations in a ROBO Environment TECHNICAL WHITE PAPER

Performance of VMware vcenter (VC) Operations in a ROBO Environment TECHNICAL WHITE PAPER Performance of VMware vcenter (VC) Operations in a ROBO Environment TECHNICAL WHITE PAPER Introduction Many VMware customers have virtualized their ROBO (Remote Office Branch Office) offices in order to

More information

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox

An Oracle White Paper July 2012. Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox An Oracle White Paper July 2012 Oracle VM 3: Building a Demo Environment using Oracle VM VirtualBox Introduction... 1 Overview... 2 The Concept... 2 The Process Flow... 3 What You Need to Get Started...

More information

How to build secure Apache Tomcat deployments with RPM.

How to build secure Apache Tomcat deployments with RPM. How to build secure Apache Tomcat deployments with RPM. My security experiences really tie into everyday work. A colleague called me from my last gig and asked how to build a RedHat Package Manager (RPM)

More information

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L

Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Introduction: This guide is written to help any person with little knowledge in AIX V5.3L to prepare the P Server

More information

Optus@Home Cable Internet Connection & Sharing using Red Hat 7.2 (Version 1.0, 29-11-2001)

Optus@Home Cable Internet Connection & Sharing using Red Hat 7.2 (Version 1.0, 29-11-2001) Optus@Home Cable Internet Connection & Sharing using Red Hat 7.2 (Version 1.0, 29-11-2001) Purpose: To be able to Setup your Optus cable connection and share the connection on your home LAN. This howto

More information

OS Installation Guide Red Hat Linux 9.0

OS Installation Guide Red Hat Linux 9.0 OS Installation Guide Red Hat Linux 9.0 C o n t e n t s Contents 3 About This Guide 5 1 Planning Your Installation 7 Requirements 7 2 Installing Red Hat 9.0 Error! Bookmark not defined. What s Next? 19

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

Novell Identity Manager Resource Kit

Novell Identity Manager Resource Kit AUTHORIZED DOCUMENTATION Installation Guide for SUSE Linux Enterprise Server 10 SP2 Novell Identity Manager Resource Kit 1.2 August 17, 2009 www.novell.com Identity Manager Resource Kit 1.2 Installation

More information

Operating System Installation Guidelines

Operating System Installation Guidelines Operating System Installation Guidelines The following document guides you step-by-step through the process of installing the operating systems so they are properly configured for boot camp. The document

More information

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline CIS 110 - INTRODUCTION TO UNIX

HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline CIS 110 - INTRODUCTION TO UNIX HARFORD COMMUNITY COLLEGE 401 Thomas Run Road Bel Air, MD 21015 Course Outline CIS 110 - INTRODUCTION TO UNIX Course Description: This is an introductory course designed for users of UNIX. It is taught

More information

Red Hat Linux Networking

Red Hat Linux Networking The information presented should act as a guide to Red Hat Linux networking. It is intended to be accompanied with training and self study. To access most of these items you will need to have root access,

More information

Aspen Cloud Server Management Console

Aspen Cloud Server Management Console Aspen Cloud Server Management Console Management of Cloud Server Resources Power All Networks Ltd. User Guide June 2011, version 1.1.1 Refer to ICP V1.1 PAGE 1 Table of Content 1. Introduction... 4 2.

More information

[HOW TO RECOVER AN INFINITI/EVOLUTION MODEM IDX3.0.0.0] 1

[HOW TO RECOVER AN INFINITI/EVOLUTION MODEM IDX3.0.0.0] 1 [HOW TO RECOVER AN INFINITI/EVOLUTION MODEM IDX3.0.0.0] 1 How to Recover an infiniti/evolution Modem Software Reference idx 3.0.0.0 (12.0.0.0) Updated: November 17 th 2011 Overview Recovery Procedures

More information