Chapter 7. Getting Started with Boot from Volume

Size: px
Start display at page:

Download "Chapter 7. Getting Started with Boot from Volume"

Transcription

1 Chapter 7. Getting Started with Boot from Volume This chapter discusses creating a bootable volume from an existing minidisk, cloning a volume from an existing volume, and booting a virtual server instance from a volume. After creating a bootable volume, the volume is on a persistent disk. When the virtual server using that volume is deleted, by default the volume is not destroyed and can be used in subsequent virtual server instances. Note: Resizing/migration of volume-based instances is not supported. The following Linux distributions are supported for the boot from volume function: v RHEL 6 see Installing Red Hat Linux on page 97. v RHEL 7 see Installing Red Hat Linux on page 97. v SLES 11 see Installing SLES 11 on page 102. v SLES 12 see Installing SLES 12 on page 106. v Ubuntu see Installing Ubuntu on page 112. The steps for other versions/releases of RHEL, SLES, and Ubuntu may be different than what is documented here. Please consult you Linux documentation for instructions related to migrating a Linux system's root disk to a SCSI volume. Creating a Bootable Volume The process in this section creates a basic Linux system, but it will not contain any middleware that was part of the original Linux system. If your original Linux system had middleware installed on it, you can add the middleware to the system after migrating the system to a volume. Pre-Installation Tasks This section discusses the pre-installation tasks you must perform before creating a bootable volume. Note: On a CMA system, issue the command source $HOME/openrc to set OpenStack-related environment variables before you issue any OpenStack commands. 1. For Red Hat and SLES, locate an NFS server that will be accessible to the system you want to migrate from a minidisk to a volume. The NFS server must contain the Linux distribution media for the operating system being migrated. Subsequent steps will refer to the media being on an NFS server. For Ubuntu, subsequent steps show the media being on an FTP server, although downloading files using HTTP and HTTPS is also supported. 2. You must provision a virtual server with OpenStack that contains the Linux image which you intend to migrate to the bootable volume. This defines the system to OpenStack so that subsequent commands can utilize OpenStack functions to add a volume to the system. In this virtual server instance, the root volume resides on an ephemeral disk, ECKD or FBA minidisk. The target Linux system should follow the same requirements and restrictions which are imposed on a Linux system located on ECKD or FBA disks. See Image Requirements on page 69 for more information. Once the virtual server is known to OpenStack, you will need to obtain the OpenStack ID for that virtual server instance. Use the nova list command to get the ID: Copyright IBM Corp. 2014,

2 nova list ID Name Status Task State Power State Networks c-aaf9-42b759de2f3b hych0035 ACTIVE - Running mgt= Estimate the size of the disk you will need for the bootable volume. The size of the disk depends on the version of Linux you will run and on the packages you want to install on your system. A minimum of 3 GB is recommended. If the system you intend to create is similar in size to the one you are already using, determine the size of the disk that contains the root directory. You can use the Linux df -h filenode command to display total capacity as well as the used and available capacity. For example: df -h / Filesystem Size Used Avail Use% Mounted on /dev/dasda1 3.0G 1.6G 1.3G 58% / df -h /root Filesystem Size Used Avail Use% Mounted on /dev/dasda1 3.0G 1.6G 1.3G 58% / 4. For the bootable volume which will be created, on the target OpenStack virtual server, a persistent disk (volume) must be added with enough capacity to hold the Linux system. Locate or allocate a cinder volume with enough capacity to hold the Linux system that you want to use. Once you have located a suitable volume in cinder, you will need to know the volume ID for subsequent commands. You can issue the cinder list command to list the volumes in cinder and their IDs. For example: cinder list ID Status Display Name Size Volume Type Bootable Attached to fddccbf ad9b d3f431 available None 3 None false The Size column indicates the volume is 3 GB, and the ID will be used in the next step. 5. Attach the volume to the virtual server instance with the nova volume-attach command: nova volume-attach instance_id volume_id where: instance_id The instance identifier of the virtual server instance. volume_id The identifier of the volume. For example: nova volume-attach c-aaf9-42b759de2f3b fddccbf ad9b d3f Property Value device /dev/sdb id fddccbf ad9b d3f431 serverid c-aaf9-42b759de2f3b volumeid fddccbf ad9b d3f cinder list ID Status Display Name Size Volume Type Bootable Attached to fddccbf ad9b d3f431 in-use None 3 None false c-aaf9-42b759de2f3b z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

3 Note that the volume is now shown attached to the target system (see the "Attached to" column). 6. SSH into the Linux server and run the following command to obtain the FCP device, WWPN, and LUN. lszfcp -D The output from this command is similar to the following: 0.0.1fb2/0x /0x :0:4:34 The following values are shown in this example: FCP device 1fb2 WWPN LUN For RedHat, copy the kernel.img and initrd.img files into the Linux server location, and place the files in the /boot directory. The image files are located in the /images directory of the distribution media (for example, in /nfs/rhel6.5/dvd1/images/). For SLES, copy the initrd (with no file suffix) and vmrdr.ikr files into the Linux server location, and place the files in the /boot directory. The image files are located in the boot/s390x directory of the distribution media (for example, /nfs/sles11sp3gm/dvd1/boot/s390x/). For Ubuntu, copy the initrd.ubuntu and kernel.ubuntu files into the Linux server location, and place the files in the /boot directory. The image files are located in the /boot directory of the distribution media (for example, in /ftp/ubuntu16/dvd/boot/). 8. Run the zipl --dry-run command to gather information about the system, such as the name of the default Linux system. This command does not modify IPL records. It must be issued before making any modification to the /etc/zipl.conf file. (These modifications are shown in Step 9.) For example: zipl --dry-run Using config file /etc/zipl.conf Starting dry-run, target device contents will NOT be modified Building bootmap in /boot/ Building menu rh-automatic-menu Adding 1: IPL section linux el6.s390x (default) Preparing boot device: dasda (0100). Done. The entry linux el6.s390, which is the default Linux system, is determined by the [defaultboot] section. 9. Add the following configuration items to the /etc/zipl.conf file. For RedHat: [linux] image=/boot/kernel.img ramdisk=/boot/initrd.img parameters="root=/dev/ram0 rd_dasd= vnc ro ramdisk_size=40000" For SLES: [linux] image=/boot/vmrdr.ikr ramdisk=/boot/initrd target = /boot/zipl parameters="root=/dev/ram0 rd_dasd= vnc ro ramdisk_size=40000" For Ubuntu: Chapter 7. Getting Started with Boot from Volume 95

4 [linux] target = /boot image = /boot/kernel.ubuntu ramdisk = /boot/initrd.ubuntu parameters="root=/dev/ram0 rd_dasd= vnc ro ramdisk_size=40000" Add the [defaultboot] section (if it is not already present) and specify default=linux: [defaultboot] default=linux (The above command defines the default Linux system to be "linux". Previously, the default, as well as the original boot system, was "linux el6.s390". Issue the command /sbin/zipl to allow the new configuration to take effect: zipl Using config file /etc/zipl.conf Building bootmap in /boot/ Building menu rh-automatic-menu Adding 1: IPL section linux (default) Adding 2: IPL section linux e16.s390x Preparing boot device: dasda (0100). Done. Record the number in the menu associated with the original Linux system, and record the number of the boot device. They will be used in subsequent steps. In this example, the number of the original Linux is 2, and the number of the boot device is Before you can boot a new instance, you have to set the volume to be bootable using the cinder set-bootable command: cinder set-bootable volume_id true where: volume_id is the identifier of the volume. You can obtain this value by using the cinder list command. 11. Determine the IP configuration for the Linux system you are about to create on a volume. If you will use the same IP address as the system you are currently using, you can obtain its IP configuration information with the ifconfig command. To use a different IP address, contact your system administrator to get the IP address, subnet mask, gateway, DNS server and MAC address that you will be using. 12. Issue the Linux shutdown command to cause the target Linux server to gracefully shutdown: shutdown now Note: If the virtual server is periodically disconnected or powered off when you perform the next set of volume preparation steps, it may be because the compute service is doing periodic status synchronization work. If this is a problem, you can stop the compute service temporarily if necessary. Installing Linux This section provides an overview of installing Red Hat 6 Linux, Red Hat Linux 7, SUSE 11 Linux, SUSE 12 Linux, and Ubuntu Linux. For more detailed information on installing these releases and later Linux releases, refer to the following URLs or other appropriate Linux documentation: For Red Hat: z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

5 For SUSE: For Ubuntu: Installing Red Hat Linux 1> The instructions in this section apply to RHEL 6 and RHEL Log on to the z/vm virtual machine running the virtual server that you want to migrate. 2. Issue the following command: cp ipl 0100 where 0100 is the boot device shown in Step 9 on page Configure the Linux system network in order to make it accessible from a remote VNC client. Contact your network administrator to obtain the appropriate values. The following are properties you should specify: Layer mode must be layer2 (required) MAC must be a unique MAC address associated with this interface IPv4 must be an IPv4 address associated with this interface Netmask must be a netmask address associated with this interface Gateway must be a gateway IP address associated with this interface DNS server must be a DNS server IP address associated with this interface 4. On the z/vm console, issue the following command: cp term more 0 0 Without this command, the process will pause when the z/vm screen shows "More..." indicating that the system is waiting for you to manually clear the screen. In this case the VNC client will lose its connection and will not be able to establish a new connection until the process resumes. 5. Issue the following command on your SSH client to connect to the server as the "install" user to start the installation: ssh install@x.x.x.x where x.x.x.x is the IPv4 address you specified in Step 3. The installation process is similar to a typical Linux installation. In this example an NFS server is used the source of installation. On the "Installation Method" screen, select "NFS directory" as shown in Figure 32 on page 98. Chapter 7. Getting Started with Boot from Volume 97

6 Figure 32. Installation Method Screen 6. On the "NFS Setup" screen, shown in Figure 33, specify the IP address of your NFS server in the "NFS server name" field, and specify the absolute path of the install directory in the "Red Hat Enterprise Linux directory" field. You can ignore the "NFS mount options" because these options are filled in by the command in most cases. Figure 33. NSF Setup Screen After system installer loads the necessary files from the NFS server, you will receive a message similar to the following: 03:33:57 Please manually connect your vnc client to :1 to begin the install. 03:33:57 Starting graphical installation. 7. Connect your VNC client to the server and continue the installation process. 8. The storage device which will contain the system must be specified to the FCP device which is attached to the server in Step 5 on page 94. Select "Specialized Storage Device" as shown in Figure 34 on page 99, and then select the "Next" button. 98 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

7 Figure 34. Specifying the Storage Device a. Add the volume as a system storage device as shown in Figure 35 by selecting the "Add Advanced Target" button and then selecting "Add ZFCP LUN" followed by clicking on the "Add Drive" button." Figure 35. Adding the Volume as a System Storage Device b. Specify the volume information as shown in Figure 36 on page 100 and click on the "Add" button. Chapter 7. Getting Started with Boot from Volume 99

8 Figure 36. Specify the Volume Information c. Verify the volume was added by selecting the "Other SAN Devices" tab and checking that the added device is in the list. Figure 37 on page 101 shows the that volume was successfully added. Then select the "Next" button to move to the next screen. 100 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

9 Figure 37. Results of Adding a Volume Successfully d. On the Type of Installation screen, which is shown in Figure 38 on page 102, check the "Review and modify partitioning layout" checkbox to use the standard partitioning layout. The "Create Storage" screen will appear. Select the "Standard Partition" button. Then select the "Next" button to move to the next screen. Chapter 7. Getting Started with Boot from Volume 101

10 Figure 38. Type of Installation Screen e. Make sure the volume uses standard partitioning layout by verifying that no LVM volume groups are listed for the device. Installing SUSE Linux This section describes installing SLES 11 and SLES 12. Installing SLES 11: 1. Log on to the z/vm virtual machine running the virtual server that you want to migrate. 2. Issue the following command: cp ipl 0100 where 0100 is the boot device shown in Step 9 on page Configure the network to make it accessible from a remote VNC client. Contact your network administrator to obtain the appropriate values. The following are values you must specify: Source medium must be network Network protocol must be NFS OSA device must be Ethernet Physical medium must be Ethernet 102 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

11 Layer mode must be layer2 IPv4 address, IPv4 netmask, IPv4 gateway, and display type must be VNC. After you enter the correct values, the system installer will load the necessary files from your NFS server. You can then connect to the server with your VNC client. 4. Connect to the server with your VNC client to start the installation. The installation process is similar to a typical Linux installation. 5. On the Disk Activation screen, select "Configure ZFCP Disks" as shown in Figure 39. Then press the "Next" button to move to the next screen. Figure 39. Preparing the Volume 6. Specify the volume information as shown in Figure 40 on page 104 and select the "Next" button. Chapter 7. Getting Started with Boot from Volume 103

12 Figure 40. Specifying Volume information 7. On the subsequent screen, select the volume, shown as a SCSI disk, then press the "Next" button to move to the next screen. 8. On the Installation Settings screen, select the "Change" button to access the pulldown menu, and then select "Partitioning" to specify standard partitioning rather than LVM partitioning, as shown in Figure 41 on page 105. You will then see the screen shown in Figure 42 on page z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

13 Figure 41. Installation Settings Screen: Selecting the Change Partitioning Button 9. On the Preparing Hard Disk screen, verify that LVM partitioning is not selected in the "Proposal settings" section, as shown in Figure 42 on page 106. Then select the "Accept" button. Chapter 7. Getting Started with Boot from Volume 105

14 Figure 42. Verifying that LVM Partitioning is Not Selected 10. On the Installation Settings screen, shown in Figure 41 on page 105, select "Install". Installing SLES 12: 1. In Installing SLES 11 on page 102, follow Step 1 on page 102 through Step 7 on page On the Suggested Partitioning screen, shown in Figure 43 on page 107, select the Expert Partitioner button to customize the partition. 106 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

15 Figure 43. Suggested Partitioning Screen 3. You will then see Figure 44 on page 108. The SLES installer by default generates a recommended partitioning plan for you, which you can tailor as needed. Chapter 7. Getting Started with Boot from Volume 107

16 Figure 44. Expert Partitioner Screen with Sample Partitioning Plan 4. To edit a partition, select the partition name, as shown in Figure 45 on page 109. Then select the Edit button. 108 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

17 Figure 45. Editing a Partition 5. You will then see the Edit Partition screen, as shown in Figure 46 on page 110. Select the Fstab Options button. Chapter 7. Getting Started with Boot from Volume 109

18 Figure 46. Edit Partition Screen 6. You will then see the Fstab Options screen, as shown in Figure 47 on page 111. In the "Mount in /etc/fstab by" section, you must select the UUID radio button. Otherwise the system could fail to reboot after the installation. Then select OK. 110 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

19 Figure 47. Fstab Options Screen 7. Continue the installation process by selecting your time zone and setting an initial password. You will then see the Installation Settings screen, as shown in Figure 48 on page 112. Disable the firewall and Chapter 7. Getting Started with Boot from Volume 111

20 enable SSH, so that you can SSH onto the instance after the installation. Then select Install. Figure 48. Installation Settings Screen Installing Ubuntu The instructions in this section apply to Ubuntu In Installing Red Hat Linux on page 97, follow Step 1 on page 97 through Step 4 on page Issue the following command on your SSH client to connect to the server as the "installer" user to start the installation: ssh installer@x.x.x.x where x.x.x.x is the IPv4 address you specified in Step 3 on page 97. You will see Figure 49. Select Start installer (expert mode) from the menu to begin the installation. Figure 49. Start Installation Screen 112 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

21 3. You will then see the Ubuntu installer main menu. Select "Choose language," as shown in Figure 50. Figure 50. Ubuntu Installer Main Menu Choose Language Follow the instructions on next set of screens to: v Select your language v Select your location (region) v Configure your locale. After making your selections you will return to the main menu. 4. From the main menu, select "Choose a mirror of the Ubuntu archive," as shown in Figure 51 on page 114, to choose an installation source. Chapter 7. Getting Started with Boot from Volume 113

22 Figure 51. Ubuntu Installer Main Menu Choose a Mirror 5. You will then see Figure 52. Select the method you want to use to download files. The steps that follow use FTP as the protocol; these steps vary slightly if you choose HTTP or HTTPS. Figure 52. Choose Protocol Screen 6. You will then see Figure 53 on page 115. In the "Ubuntu archive mirror hostname" field, specify the IP address or hostname from which the Ubuntu code will be downloaded. Then select Continue to move to the next screen. 114 z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

23 Figure 53. Choose Mirror Hostname Screen 7. You will then see Figure 54. Specify the directory path of the Ubuntu archive in the Ubuntu archive mirror directory field. Then select Continue to move to the next screen. Figure 54. Choose Mirror Directory Screen 8. You will then see Figure 55. If necessary, fill in the "FTP proxy information field. You can ignore this field if you don t need a proxy. Then select Continue to return to the main menu. Figure 55. Specify FTP Proxy Screen Chapter 7. Getting Started with Boot from Volume 115

24 9. From the main menu, select "Download installer components," as shown in Figure 56. Figure 56. Ubuntu Installer Main Menu Download Installer Components The installer will download the necessary files. This can take several minutes or more, depending on the capabilities of your network. When you see the list of components, select all the components that you want to load. Then select Continue. It can take several more minutes to load the additional components you selected. Then you will return to the main menu. 10. From the main menu, select "Set up users and passwords," as shown in Figure 57 on page z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

25 Figure 57. Ubuntu Installer Main Menu Set Up Users and Passwords Follow the instructions on next set of screens to: v Enable shadow passwords (recommended). v Enable the login as root capability (required in order for the instance to boot up). v Specify an account (consisting of the real name, user name, and password) for the user that will have "sudo as root" privilege. v Specify whether you want your home directory configured for encryption. After making your selections you will return to the main menu. 11. From the main menu, select "Configure the clock," as shown in Figure 58 on page 118 Chapter 7. Getting Started with Boot from Volume 117

26 Figure 58. Ubuntu Installer Main Menu Configure the Clock The installer will configure the clock based on your current location. If this is the time zone you want to use, select Yes. You will then return to the main menu. 12. For Ubuntu boot from volume, the target device must be an FCP. Skip the "Configure direct access storage devices (DASD)" choice in the main menu, and select "Activate FCP devices for installation," as shown in Figure 59 on page z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

27 Figure 59. Ubuntu Installer Main Menu Activate FCP Devices Follow the instructions on next set of screens to: v Select the FCP devices you want to activate from a list of available devices. v Select the LUNs that are available, or select "Add LUN" to add one or more LUNs. v Specify the world wide port name (WWPN) of the target port and the LUN to attach to a SCSI disk. When you are done, select "Finish" to return to the main menu. 13. Skip the "Detect disks" choice in the main menu and select "Partition disks," as shown in Figure 60 on page 120 Chapter 7. Getting Started with Boot from Volume 119

28 Figure 60. Ubuntu Installer Main Menu Partition Disks Follow the instructions on next set of screens to: v Select guided partitioning (recommended) or manual partitioning. In most cases, you should select "Guided - use entire disk." v Select the disk to be partitioned, and confirm your selection. Do not set up a logical volume manager (LVM) during this step. Setting up an LVM can prevent the virtual server instance from booting up. When you are done making selections, you will return to the main menu. 14. From the main menu, select "Install the system," as shown in Figure 61 on page z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

29 Figure 61. Ubuntu Installer Main Menu Install the System Most installations can use the default installation options. Follow the instructions on the next set of screens to: v Select a "normal" installation. v Select a "linux-generic" kernel. v Select "generic: include all available drivers" to use a generic initrd. When you are done making selections, you will return to the main menu. 15. In order for the system to boot up, you must install the ZIPL boot loader. From the main menu, select "Install the ZIPL boot loader on a hard disk," as shown in Figure 62 on page 122 Chapter 7. Getting Started with Boot from Volume 121

30 Figure 62. Ubuntu Installer Main Menu Install the ZIPL Loader After the ZIPL loader installs, you will return to the main menu. 16. From the main menu, select "Finish the installation," as shown in Figure 63 on page z/vm V6.4 Enabling z/vm for OpenStack (Support for OpenStack Newton Release)

31 Figure 63. Ubuntu Installer Main Menu Finish the Installation Post-Installation Tasks This section discusses the tasks you must perform after you install a Red Hat or SLES system. Note: On a CMA system, issue the command source $HOME/openrc to set OpenStack-related environment variables before you issue any OpenStack commands. 1. Depending on the Linux distribution you are using, the installation process could reboot the system automatically for you after the installation completes successfully. In this case you can skip this step and go to Step 2 on page 124. Otherwise, log on to the zvm virtual machine in which the target Linux system is running, and issue the CP SET LOADDEV command to reboot the newly installed system: CP SET LOADDEV PORTNAME wwpn LUN lun where: Chapter 7. Getting Started with Boot from Volume 123

Building Customized Linux Kernels A live demonstration. Mark Post August 17, 2004 Session # 9280

Building Customized Linux Kernels A live demonstration. Mark Post August 17, 2004 Session # 9280 Building Customized Linux Kernels A live demonstration Mark Post August 17, 2004 Session # 9280 Documentation The Linux Documentation Project http://www.tldp.org/ Look for the Kernel HOWTO http://www.tldp.org/howto/kernel-howto/

More information

The Linux IPL Procedure

The Linux IPL Procedure The Linux IPL Procedure SHARE - Tampa February 13, 2007 Session 9274 Edmund MacKenty Rocket Software, Inc. Purpose De-mystify the Linux boot sequence Explain what happens each step of the way Describe

More information

Nested Home Lab Setting up Shared Storage

Nested Home Lab Setting up Shared Storage Nested Home Lab Setting up Shared Storage Andy Fox VCI VCAP-DCA VCP3 VCP4 Over the years teaching vsphere, several peers, colleagues and students have asked me how I setup shared storage in my nested test

More information

Control Center Planning Guide

Control Center Planning Guide Control Center Planning Guide Release 1.4.2 Zenoss, Inc. www.zenoss.com Control Center Planning Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks

More information

Control Center Planning Guide

Control Center Planning Guide Release 1.2.0 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

Production Installation and Configuration. Openfiler NSA

Production Installation and Configuration. Openfiler NSA Production Installation and Configuration Openfiler NSA Table of Content 1. INTRODUCTION... 3 1.1. PURPOSE OF DOCUMENT... 3 1.2. INTENDED AUDIENCE... 3 1.3. SCOPE OF THIS GUIDE... 3 2. OPENFILER INSTALLATION...

More information

Configuring Server Boot

Configuring Server Boot This chapter includes the following sections: Boot Policy, page 1 UEFI Boot Mode, page 2 UEFI Secure Boot, page 3 CIMC Secure Boot, page 3 Creating a Boot Policy, page 5 SAN Boot, page 6 iscsi Boot, page

More information

IBM Cloud Manager with OpenStack: z/vm Integration Considerations

IBM Cloud Manager with OpenStack: z/vm Integration Considerations IBM Cloud Manager with OpenStack: z/vm Integration Considerations May 2016 IBM zgrowth Team Cloud & Smarter Infrastructure Mike Bonett Executive I/T Specialist Special Notices This document reflects the

More information

Several additional changes are provided with this APAR.

Several additional changes are provided with this APAR. /*********************************************************************/ /* COPYRIGHT - */ /* Licensed Materials - Property of IBM */ /* This product contains "Restricted Materials of IBM" */ /* 5741-A7

More information

Linux Installation Planning

Linux Installation Planning Linux Installation Planning Mark Post Novell, Inc. March 4, 2011 Session 8986 Agenda More Questions Than Answers First Things First Pick the Right Architecture Disk Storage Selection Application Selection

More information

Setting Up the IBM Cloud Manager with OpenStack Cloud Manager Appliance (CMA) on z/vm

Setting Up the IBM Cloud Manager with OpenStack Cloud Manager Appliance (CMA) on z/vm Setting Up the IBM Cloud Manager with OpenStack Cloud Manager Appliance (CMA) on z/vm This document can be found on the web at www.ibm.com/support/techdocs Version Date: May 5, 2015 Mike Bonett IBM Americas

More information

SUSE Cloud Admin Appliance Walk Through. You may download the SUSE Cloud Admin Appliance the following ways.

SUSE Cloud Admin Appliance Walk Through. You may download the SUSE Cloud Admin Appliance the following ways. SUSE Cloud Admin Appliance Walk Through First before you proceed with deploying the Admin Appliance you must go through and answer the questionnaire to ensure you have an idea of the scope of the project

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage Linux+ Guide to Linux Certification, Third Edition Chapter 2 Linux Installation and Usage Objectives Install Red Hat Fedora Linux using good practices Outline the structure of the Linux interface Enter

More information

Red Hat Operating System Installation Tips

Red Hat Operating System Installation Tips APPENDIXA Date: 9/24/10 This appendix describes the recommended Red Hat operating system installation procedure in three parts and includes the following sections: Red Hat Installation Procedure, page

More information

DSI Optimized Backup & Deduplication for VTL Installation & User Guide

DSI Optimized Backup & Deduplication for VTL Installation & User Guide DSI Optimized Backup & Deduplication for VTL Installation & User Guide Restore Virtualized Appliance Version 4 Dynamic Solutions International, LLC 373 Inverness Parkway Suite 110 Englewood, CO 80112 Phone:

More information

Dell EMC Avamar Virtual Edition for OpenStack KVM

Dell EMC Avamar Virtual Edition for OpenStack KVM Dell EMC Avamar Virtual Edition for OpenStack KVM Version 7.5 Installation Guide 302-003-940 REV 01 Copyright 2016-2017 Dell Inc. or its subsidiaries. All rights reserved. Published June 2017 Dell believes

More information

Installing VMware vsphere 5.1 Components

Installing VMware vsphere 5.1 Components Installing VMware vsphere 5.1 Components Module 14 You Are Here Course Introduction Introduction to Virtualization Creating Virtual Machines VMware vcenter Server Configuring and Managing Virtual Networks

More information

Parallels Server 5 Bare Metal

Parallels Server 5 Bare Metal Parallels Server 5 Bare Metal Installation Guide Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine Supported VMware Versions, page 1 Support for VMware vmotion, page 1 Support for Open Virtualization Format, page 2 Virtual Machine Requirements, page 3 Virtual Machine Resource and Performance Checks,

More information

SysadminSG RHCSA Study Guide

SysadminSG RHCSA Study Guide SysadminSG RHCSA Study Guide This is the RHCSA Study Guide for the System Administration Study Group. The study guide is intended to be printed by those who wish to study common tasks performed by many

More information

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Oded Nahum Principal Systems Engineer PLUMgrid EMEA November 2014 Page 1 Page 2 Table of Contents Table

More information

Configuring Cisco UCS Server Pools and Policies

Configuring Cisco UCS Server Pools and Policies This chapter contains the following sections: Global Equipment Policies, page 1 UUID Pools, page 4 Server Pools, page 5 Management IP Pool, page 7 Boot Policy, page 8 Local Disk Configuration Policy, page

More information

IBM Single Sign On for Bluemix Version December Identity Bridge Configuration topics

IBM Single Sign On for Bluemix Version December Identity Bridge Configuration topics IBM Single Sign On for Bluemix Version 2.0 28 December 2014 Identity Bridge Configuration topics IBM Single Sign On for Bluemix Version 2.0 28 December 2014 Identity Bridge Configuration topics ii IBM

More information

PlateSpin Transformation Manager Appliance Guide. June 2018

PlateSpin Transformation Manager Appliance Guide. June 2018 PlateSpin Transformation Manager Appliance Guide June 2018 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine Supported VMware Versions, page 1 Support for VMware vmotion, page 1 Support for Open Virtualization Format, page 2 Virtual Machine Requirements, page 3 Virtual Machine Resource and Performance Checks,

More information

iscsi Boot from SAN with Dell PS Series

iscsi Boot from SAN with Dell PS Series iscsi Boot from SAN with Dell PS Series For Dell PowerEdge 13th generation servers Dell Storage Engineering September 2016 A Dell Best Practices Guide Revisions Date November 2012 September 2016 Description

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine ISE Features Not Supported in a Virtual Machine, page 1 Supported VMware Versions, page 1 Support for VMware vmotion, page 2 Support for Open Virtualization Format, page 2 Virtual Machine Requirements,

More information

Zadara Enterprise Storage in

Zadara Enterprise Storage in Zadara Enterprise Storage in Google Cloud Platform (GCP) Deployment Guide March 2017 Revision A 2011 2017 ZADARA Storage, Inc. All rights reserved. Zadara Storage / GCP - Deployment Guide Page 1 Contents

More information

Comodo Dome Data Protection Software Version 3.8

Comodo Dome Data Protection Software Version 3.8 Comodo Dome Data Protection Software Version 3.8 Installation Guide Guide Version 3.8.102417 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1.About Dome Data Protection...

More information

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine Here we create a new virtual machine and install Ubuntu 16.04 LTS Server on it. In this instance, we

More information

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Disclaimer: I haven t gone through RHCSA/RHCE EL 7. I am preparing for upgrade of my RHCE certificate from RHCE EL4 to RHCE EL7. I don

More information

Securing Containers Using a PNSC and a Cisco VSG

Securing Containers Using a PNSC and a Cisco VSG Securing Containers Using a PNSC and a Cisco VSG This chapter contains the following sections: About Prime Network Service Controllers, page 1 Integrating a VSG into an Application Container, page 3 About

More information

How to Use This Lab Manual

How to Use This Lab Manual 3 Contents How to Use This Lab Manual........................................ 5 Lab 1: Setting Up the Student System.................................. 7 Lab 2: Installing Fedora............................................

More information

Contents. Limitations. Prerequisites. Configuration

Contents. Limitations. Prerequisites. Configuration Welcome to your Netmail Secure trial The trial version of Netmail Secure allows you to evaluate Netmail Secure from within your own corporate domain. Included is a sample mail feed that is automatically

More information

Configure the Cisco DNA Center Appliance

Configure the Cisco DNA Center Appliance Review Cisco DNA Center Configuration Wizard Parameters, page 1 Configure Cisco DNA Center Using the Wizard, page 5 Review Cisco DNA Center Configuration Wizard Parameters When Cisco DNA Center configuration

More information

ScopTEL TM IP PBX Software. DNS Server Configuration Wizard

ScopTEL TM IP PBX Software. DNS Server Configuration Wizard ScopTEL TM IP PBX Software DNS Server Configuration Wizard Network Module - ifconfig A newly installed server uses DHCP to get an IP address from a DHCP server on the network so make sure the eth0 interface

More information

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials Red Hat Enterprise Linux 5 Essentials 2 Red Hat Enterprise Linux 5 Essentials First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution

More information

Dell EMC Avamar Virtual Edition for OpenStack KVM

Dell EMC Avamar Virtual Edition for OpenStack KVM Dell EMC Avamar Virtual Edition for OpenStack KVM Version 7.5.1 Installation and Upgrade Guide 302-004-314 REV 01 Copyright 2016-2018 Dell Inc. or its subsidiaries. All rights reserved. Published February

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine ISE Features Not Supported in a Virtual Machine, page 1 Supported VMware Versions, page 1 Support for VMware vmotion, page 2 Support for Open Virtualization Format, page 2 Virtual Machine Requirements,

More information

Virtual Appliance User s Guide

Virtual Appliance User s Guide Cast Iron Integration Appliance Virtual Appliance User s Guide Version 4.5 July 2009 Cast Iron Virtual Appliance User s Guide Version 4.5 July 2009 Copyright 2009 Cast Iron Systems. All rights reserved.

More information

Deploying Cisco UCS Central

Deploying Cisco UCS Central This chapter includes the following sections: Obtaining the Cisco UCS Central Software from Cisco, page 1 Using the Cisco UCS Central OVA File, page 2 Using the Cisco UCS Central ISO File, page 4 Logging

More information

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Revision: 20090313 Item:

More information

IBM Security QRadar SIEM Version 7.2. Installation Guide

IBM Security QRadar SIEM Version 7.2. Installation Guide IBM Security QRadar SIEM Version 7.2 Installation Guide Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page 45. Copyright IBM Corp.

More information

Securing Containers Using a PNSC and a Cisco VSG

Securing Containers Using a PNSC and a Cisco VSG Securing Containers Using a PNSC and a Cisco VSG This chapter contains the following sections: About Prime Network Service Controllers, page 1 Integrating a VSG into an Application Container, page 4 About

More information

ISO Installation Guide. Version 1.2 December 2015

ISO Installation Guide. Version 1.2 December 2015 Version 1.2 December 2015 ISO Installation Guide Copyright 2015 iwebgate. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or

More information

Virtuozzo 6. Installation Guide. July 19, Copyright Parallels IP Holdings GmbH and its affiliates. All rights reserved.

Virtuozzo 6. Installation Guide. July 19, Copyright Parallels IP Holdings GmbH and its affiliates. All rights reserved. Virtuozzo 6 Installation Guide July 19, 2016 Copyright 1999-2016 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland

More information

Clearswift Gateway Installation & Getting Started Guide. Version 4.1 Document Revision 1.4

Clearswift Gateway Installation & Getting Started Guide. Version 4.1 Document Revision 1.4 Clearswift Gateway Installation & Getting Started Guide Version 4.1 Document Revision 1.4 Copyright Revision 1.4, March, 2015 Published by Clearswift Ltd. 1995 2015 Clearswift Ltd. All rights reserved.

More information

Learn new features of Red Hat Enterprise Linux 7.1 on IBM z Systems by Examples Session# 17493

Learn new features of Red Hat Enterprise Linux 7.1 on IBM z Systems by Examples Session# 17493 Shaping the Future of Enterprise Technology Learn new features of Red Hat Enterprise Linux 7.1 on IBM z Systems by Examples Session# 17493 Filipe Miranda Global Lead for Red Hat Products

More information

Installing Cisco StadiumVision Director Software from a DVD

Installing Cisco StadiumVision Director Software from a DVD Installing Cisco StadiumVision Director Software from a DVD First Published: May 29, 2012 Revised: August 2, 2012 This module describes how to install the Cisco StadiumVision Director Release 3.0 software

More information

ElasterStack 3.2 User Administration Guide - Advanced Zone

ElasterStack 3.2 User Administration Guide - Advanced Zone ElasterStack 3.2 User Administration Guide - Advanced Zone With Advance Zone Configuration TCloud Computing Inc. 6/22/2012 Copyright 2012 by TCloud Computing, Inc. All rights reserved. This document is

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine Supported VMware Versions, page 1 Support for VMware vmotion, page 1 Support for Open Virtualization Format, page 2 Virtual Machine Requirements, page 2 Virtual Machine Resource and Performance Checks,

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 Installing Red Hat CloudForms on Red Hat Virtualization How to install and configure Red Hat CloudForms on a Red Hat Virtualization environment Last Updated: 2018-08-07 Red Hat

More information

RAP Installation README

RAP Installation README RAP Installation README (Redhat 9.x as platform) 1. Hardware System requirement CPU P3 100 + RAM 512M + Hard Disk (None SCSI) 20G+ Network Ports: 10/100/1000 1+ (HA and Clustering need 2+) CDROM System

More information

WLM1200-RMTS User s Guide

WLM1200-RMTS User s Guide WLM1200-RMTS User s Guide Copyright 2011, Juniper Networks, Inc. 1 WLM1200-RMTS User Guide Contents WLM1200-RMTS Publication Suite........................................ 2 WLM1200-RMTS Hardware Description....................................

More information

Parallels Server 4.0 for Mac Bare Metal Edition

Parallels Server 4.0 for Mac Bare Metal Edition Parallels Server 4.0 for Mac Bare Metal Edition Installation Guide Copyright 1999-2010 Parallels Holdings, Ltd. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels International GmbH Vordergasse

More information

Configuring Cisco UCS Server Pools and Policies

Configuring Cisco UCS Server Pools and Policies This chapter contains the following sections: Global Equipment Policies, page 1 UUID Pools, page 3 Server Pools, page 5 Management IP Pool, page 7 Boot Policy, page 8 Local Disk Configuration Policy, page

More information

Network Drawing. Computer Specs, I ve used. Installing a Network-Based Intrusion Detection

Network Drawing. Computer Specs, I ve used. Installing a Network-Based Intrusion Detection HS1 HS2 OK1 OK2 PS 1 2 3 4 5 6 7 8 9 101112 COL- ACT- STA.- CONSOLE SD Installing a Network-Based Intrusion Detection created by: Rainer Bemsel Version 1.0 Dated: Apr/10/2003 The purpose of this document

More information

Installing on a Virtual Machine

Installing on a Virtual Machine Release 8.5 Revised: 6/20/13 See the Quick Start for Installing and Configuring Cisco Unified MeetingPlace Release 8.5 module for information about the order in which to install and configure the Cisco

More information

Cisco UCS Performance Manager Installation Guide

Cisco UCS Performance Manager Installation Guide Cisco UCS Performance Manager Installation Guide First Published: February 2017 Release 2.0.3 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Red Hat Update for IBM z Systems GSE UK 2016

Red Hat Update for IBM z Systems GSE UK 2016 Red Hat Update for IBM z Systems GSE UK 2016 Session topics Red Hat in a Nutshell Press Release Open Source Development Model Red Hat and IBM Relationship New Red Hat Offering for LinuxONE JBoss on z Systems

More information

OpenStack End User Guide. SUSE OpenStack Cloud 8

OpenStack End User Guide. SUSE OpenStack Cloud 8 OpenStack End User Guide SUSE OpenStack Cloud 8 OpenStack End User Guide SUSE OpenStack Cloud 8 ABSTRACT OpenStack is an open-source cloud computing platform for public and private clouds. A series of

More information

Controller Installation

Controller Installation The following describes the controller installation process. Installing the Controller, page 1 Controller Deployment, page 2 Controller Virtual Hard Disk Storage, page 4 Custom Controller Web UI Certificates,

More information

Dell EMC Avamar Virtual Edition for OpenStack KVM

Dell EMC Avamar Virtual Edition for OpenStack KVM Dell EMC Avamar Virtual Edition for OpenStack KVM Version 18.1 and Upgrade Guide 302-004-695 REV 01 Copyright 2016-2018 Dell Inc. or its subsidiaries. All rights reserved. Published July 2018 Dell believes

More information

Installation of Fedora 12 with CD

Installation of Fedora 12 with CD Prepared by investech.wordpress.com Installation of Fedora 12 with Net Install CD Version 1.0 investech.wordpress.com 07-12-09 This document is produced under Creative Common License (Attribution No Derivatives).

More information

Installing or Upgrading ANM Virtual Appliance

Installing or Upgrading ANM Virtual Appliance CHAPTER 2 This chapter describes how to deploy Cisco ANM Virtual Appliance 4.3 (new installation) and how to upgrade from ANM software version 4.1 or 4.2 to software version 4.3. This chapter includes

More information

Deployment Guide: Routing Mode with No DMZ

Deployment Guide: Routing Mode with No DMZ Deployment Guide: Routing Mode with No DMZ March 15, 2007 Deployment and Task Overview Description Follow the tasks in this guide to deploy the appliance as a router-firewall device on your network with

More information

Installing the Cisco Nexus 1000V Software Using ISO or OVA Files

Installing the Cisco Nexus 1000V Software Using ISO or OVA Files Installing the Cisco Nexus 1000V Software Using ISO or OVA Files This chapter contains the following sections: Installing the VSM Software, page 1 Installing the VSM Software Installing the Software from

More information

Installation of the OS

Installation of the OS Lab 1 Installation of the OS 1.1 Objectives The goal of this first session is to install a Debian/Linux operating system from scratch on a Intel x86- based computer. The installation will be made on a

More information

Cluster Management Workflows for OnCommand System Manager

Cluster Management Workflows for OnCommand System Manager ONTAP 9 Cluster Management Workflows for OnCommand System Manager June 2017 215-11440-C0 doccomments@netapp.com Updated for ONTAP 9.2 Table of Contents 3 Contents OnCommand System Manager workflows...

More information

Deploy the ExtraHop Discover Appliance 1100

Deploy the ExtraHop Discover Appliance 1100 Deploy the ExtraHop Discover Appliance 1100 Published: 2018-07-17 The following procedures explain how to deploy an ExtraHop Discover appliance 1100. System requirements Your environment must meet the

More information

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 5, 2008 Table

More information

Exam Name: Red Hat Certified Engineer on Redhat

Exam Name: Red Hat Certified Engineer on Redhat Vendor: Red Hat Exam Code: RH302 Exam Name: Red Hat Certified Engineer on Redhat Version: DEMO QUESTION 1 One Logical Volume is created named as myvol under vo volume group and is mounted. The Initial

More information

Using iscsi with BackupAssist. User Guide

Using iscsi with BackupAssist. User Guide User Guide Contents 1. Introduction... 2 Documentation... 2 Terminology... 2 Advantages of iscsi... 2 Supported environments... 2 2. Overview... 3 About iscsi... 3 iscsi best practices with BackupAssist...

More information

SuperLumin Nemesis. Getting Started Guide. February 2011

SuperLumin Nemesis. Getting Started Guide. February 2011 SuperLumin Nemesis Getting Started Guide February 2011 SuperLumin Nemesis Legal Notices Information contained in this document is believed to be accurate and reliable. However, SuperLumin assumes no responsibility

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the product described herein without notice. Before installing and using the product, please review the readme files,

More information

Q&A about RHEL on z Systems BCP

Q&A about RHEL on z Systems BCP Filipe Miranda Global Lead for Red Hat Products on IBM z Systems and Power Systems Red Hat Inc. Q&A about RHEL on z Systems BCP 9.0 Topics for this session Red Hat in a nutshell Red

More information

Overview of the Cisco NCS Command-Line Interface

Overview of the Cisco NCS Command-Line Interface CHAPTER 1 Overview of the Cisco NCS -Line Interface This chapter provides an overview of how to access the Cisco Prime Network Control System (NCS) command-line interface (CLI), the different command modes,

More information

Clearswift SECURE Gateway Installation & Getting Started Guide. Version 4.3 Document Revision 1.0

Clearswift SECURE  Gateway Installation & Getting Started Guide. Version 4.3 Document Revision 1.0 Clearswift SECURE Email Gateway Installation & Getting Started Guide Version 4.3 Document Revision 1.0 Copyright Revision 1.1, March, 2016 Published by Clearswift Ltd. 1995 2016 Clearswift Ltd. All rights

More information

How to Deploy Axon on VMware vcenter

How to Deploy Axon on VMware vcenter How to Deploy Axon on VMware vcenter Copyright Informatica LLC 2017. Informatica, the Informatica logo, Intelligent Data Lake, Big Data Mangement, and Live Data Map are trademarks or registered trademarks

More information

StorageGRID Webscale 11.0 Expansion Guide

StorageGRID Webscale 11.0 Expansion Guide StorageGRID Webscale 11.0 Expansion Guide January 2018 215-12399_B0 doccomments@netapp.com Table of Contents 3 Contents Expansion overview... 4 Planning and preparation... 5 Reviewing the options and

More information

VMware vsphere Storage Appliance Installation and Configuration

VMware vsphere Storage Appliance Installation and Configuration VMware vsphere Storage Appliance Installation and Configuration vsphere Storage Appliance 1.0 vsphere 5.0 This document supports the version of each product listed and supports all subsequent versions

More information

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table

More information

Hints and Tips for Using IBM Tivoli Provisioning Manager with Linux on System z

Hints and Tips for Using IBM Tivoli Provisioning Manager with Linux on System z Hints and Tips for Using IBM Tivoli Provisioning Manager with Linux on System z This document can be found on the web at www.ibm.com/support/techdocs Search for author s name under the category of White

More information

Parallels Virtuozzo Containers for Linux

Parallels Virtuozzo Containers for Linux Parallels Parallels Virtuozzo Containers for Linux Installation Guide Version 4.0 Copyright 1999-2008 Parallels Software International Inc. ISBN: N/A Parallels Holdings Ltd. 13755 Sunrise Valley Drive

More information

SUPERTRAK EX8300, EX8350 RAID 6 UPGRADE & PRIMER

SUPERTRAK EX8300, EX8350 RAID 6 UPGRADE & PRIMER SUPERTRAK EX8300, EX8350 RAID 6 UPGRADE & PRIMER Version 1.1 2005 Promise Technology, Inc. All rights reserved. SuperTrak EX8300, EX8350 RAID 6 Upgrade & Primer Copyright 2005 Promise Technology, Inc.

More information

OpenStack Tutorial. Shihabur R. Chowdhury CS Winter 2017 University of Waterloo

OpenStack Tutorial. Shihabur R. Chowdhury CS Winter 2017 University of Waterloo OpenStack Tutorial Shihabur R. Chowdhury CS 856 - Winter 2017 University of Waterloo Environment Setup Download the VirtualBox image from here Open VirtualBox and go to File > Import Appliance Choose the

More information

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam.

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam. REDHAT RH202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam TYPE: DEMO http://www.examskey.com/rh202.html Examskey REDHAT RH202 exam demo product is here for you to test the quality

More information

SANOG VI IP Services Workshop: FreeBSD Install

SANOG VI IP Services Workshop: FreeBSD Install SANOG VI IP Services Workshop: FreeBSD Install FreeBSD is designed to be a server operating system. This becomes apparent during the installation process. The FreeBSD installer is a console-based (not

More information

Getting Started Guide. Installation and Setup Instructions. For version Copyright 2009 Code 42 Software, Inc. All rights reserved

Getting Started Guide. Installation and Setup Instructions. For version Copyright 2009 Code 42 Software, Inc. All rights reserved Installation and Setup Instructions For version 06.11.2009 Copyright 2009 Code 42 Software, Inc. All rights reserved About This Guide This guide shows you how to install, activate and back up with CrashPlan

More information

SOA Software API Gateway Appliance 6.3 Administration Guide

SOA Software API Gateway Appliance 6.3 Administration Guide SOA Software API Gateway Appliance 6.3 Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names, logos,

More information

Server Installation Manual Applies to software release v5.3

Server Installation Manual Applies to software release v5.3 Server Installation Manual Applies to software release v5.3 Form 8147B February 2017 Server Installation Manual Revision 02da336 (2017-02-23) Copyright c 2017 Sencore, Inc. All rights reserved. 3200 Sencore

More information

WASABI SYSTEMS INC. Wasabi Storage Builder for NAS Quick Start Guide

WASABI SYSTEMS INC. Wasabi Storage Builder for NAS Quick Start Guide WASABI SYSTEMS INC. Wasabi Storage Builder for NAS Quick Start Guide Release v1.1 December 2006 How to Contact Wasabi Wasabi Systems Inc. 500 E. Main Street, Suite 1520 Norfolk, VA 23510 USA EMAIL: info@wasabisystems.com

More information

Configuring the JUNOS Software the First Time on a Router with a Single Routing Engine

Configuring the JUNOS Software the First Time on a Router with a Single Routing Engine Configuring the JUNOS Software the First Time on a Router with a Single Routing Engine When you turn on a router the first time, the JUNOS Software automatically boots and starts. You must enter basic

More information

IBM Systems and Technology Group. Abstract

IBM Systems and Technology Group. Abstract Abstract The "Virtualization Cookbook" for System z, usually in the form of a Redbook, has been a popular reference for many years. It has been updated for 2012 and renamed "The Cloud Computing Cookbook".

More information

What s New in Newton. Emily Hugenbruch, Advisory Software

What s New in Newton. Emily Hugenbruch, Advisory Software What s New in Newton Emily Hugenbruch, Advisory Software Engineer, @ekhugen IBM s z/vm Cloud Stack approach 1. z/vm drivers provided to the OpenStack community z/vm drivers are currently open source, part

More information

VERSION 2.1. Installation Guide

VERSION 2.1. Installation Guide VERSION 2.1 Installation Guide VMware, Inc. 3145 Porter Drive Palo Alto, CA 94304 www.vmware.com Please note that you will always find the most up-to-date technical documentation on our Web site at http://www.vmware.com/support/.

More information

"Charting the Course... Enterprise Linux System Administration Course Summary

Charting the Course... Enterprise Linux System Administration Course Summary Course Summary Description This is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation and server.

More information

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine Here we create a new virtual machine and install Ubuntu 12.04 LTS Server on it. In this instance, we

More information

Adding a block devices and extending file systems in Linux environments

Adding a block devices and extending file systems in Linux environments Adding a block devices and extending file systems in Linux environments In this exercise we simulate situation where user files partition /home fills up and needs to be extended. Also we migrate from static

More information