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

Size: px
Start display at page:

Download "Linux Template Creation Guide. How to build your own Linux VM templates for deployment in Cloudturk."

Transcription

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

2 TABLE OF CONTENTS 1. Installing Xen Hypervisor Installing DomU (Paravirtualized) Installing DomU (Paravirtualized) via VNC Console Cloudturk Template Naming Convention Generate Template SQL Installing DomU (HVM)

3 1. Installing Xen Hypervisor 1. Install OS for Xen Hypervisor: Cloudturk supports the following operating systems for Xen Hypervisor: CentOS release 5.x (x86_64) Red Hat Enterprise Linux Server release 5 (x86_64) 2. Partition the Xen hypervisor box: The disk can be partitioned any way you like, with one exception: you must create a separate partition with LVM. This will be used to deploy block devices as hard disks for virtual machines. 3. Install essential utilities on the Xen Hypervisor box: We recommend the following software is preinstalled on the Xen Hypervisor box: vim command- line editor. This guide uses vim in examples where files need to be edited. GNU tar utility and GNU zip archive tool. They are used to pack the template. X window system. We will use it to run some GUI applications. Apache web server. It will be used to run local distributive mirrors, and access KickStart files during installation. virt- manager. Not mandatory, but sometimes it makes creating VMs easier. vncviewer. Used for connecting to VMs via VNC. LVM utilities. All of them will be required while creating VMs and Linux templates for Cloudturk. 4. Add YUM repository: An extra YUM repository is used to get the Xen Hypervisor installed manually. Please download extra repository configuration file and place it into standard YUM repositories configuration files location (/etc/yum.repos.d/): 2

4 # wget -O /etc/yum.repos.d/ GITCO-XEN3.4.3_x86_64.repo 5. Install Xen Hypervisor: a) Clean YUM meta- data: # yum -y -q clean all b) Remove old Xen if installed: # yum remove xen c) Install the latest Xen from GITCO: # yum install xen d) Remove i386 libvirt: # yum remove libvirt.i386 xen-libs.i386 e) Configure xend service to start on system boot: # chkconfig --add xend # chkconfig xend on f) Install Xen Hypervisor (Dom0) kernel: # yum install kernel-xen g) Verify the kernel- xen package is installed, and determine the version: # rpm q kernel-xen h) Configure GRUB boot loader to use Xen kernel as default (check GRUB s configuration file): # vim /boot/grub/grub.conf 3

5 It should look like the following image: The default option value must be the number of the title, which includes Xen kernel. There are two title sections on the image above: title CentOS ( el5xen) title CentOS ( el5) Titles are numbered starting from 0. So the first has number 0, and the second, number 1. The default option value should be the number of the title with Xen kernel. In the example here it is number 0 (the first title). i) Reboot the box: # shutdown r now j) Check if Xen Hypervisor is running when the box boots: # xm info If Xen is running, this should display a range of information about the system. 4

6 2. Installing DomU (Paravirtualized) This method describes how to install Xen DomU using kernel and ramdisk images provided by a distribution/os vendor. After the installation, Xen DomU s / file- system will be converted into Cloudturk template. The example here uses the latest CentOS 5.x x86_64 OS installation for conversion. 1. Get the netboot kernel and initrd.img compiled for Xen DomU from nearest CentOS mirror: #cd /etc/xen # wget ftp://ftp.tlkl.net/pub/mirrors/centos.org/5.5/os/x86_64/images/xen/vmlinuz -O vmlinuz-centos-5.5-x86_64-install # wget ftp://ftp.tlkl.net/pub/mirrors/centos.org/5.5/os/x86_64/images/xen/initrd.i mg -O initrd-centos-5.5-x86_64-install 2. Create LVM in the separate partition you have prepared: # pvcreate /dev/<disk><partition_number> # vgcreate -s 16M vg0 /dev/<disk><partition_number> 3. Create two LVM logical volumes for primary disk (size 5Gb) and the SWAP (size 1Gb): In the example here, the Volume Group is vg0 and Volumes are lvol32 and lvol48. # lvcreate -L 5G -n lvol32 vg0 # lvcreate -L 1G -n lvol48 vg0 4. Create Xen DomU configuration file to process with network CentOS 5.5 x86_64 VM installation: # cd /etc/xen # vim centos-5.5-x86_64 The simple configuration file should look like: 5

7 kernel = "/etc/xen/vmlinuz-centos-5.5-x86_64-install" ramdisk = "/etc/xen/initrd-centos-5.5-x86_64-install" extra = "text # ks= name = "centos-5.5-x86_64" memory = "512" vcpus=1 disk =['phy:/dev/vg0/lvol32,xvda,w','phy:/dev/mapper/vg0- lvol48,xvdb,w' ] vif = [ 'bridge=xenbr0', ] on_reboot = 'destroy' on_crash = 'destroy The kernel and the ramdisk options determine what DomU is booting from. extra - defines additional kernel parameters. For example, you can set installation mode to be text only (text option), or define KickStart file location (commented in the example). name - DomU name. memory - RAM allocated by DomU. vcpus - number of CPUs for DomU. disk - determines what is used as disk. In our case, phy means we use real block device (Logical volume), which Xen translates into block devices as xvd* for DomU. vif - network device used as a bridge for DomU networking. on_reboot, on_crash - determines action applied to DomU in case it is rebooted or crashes. 5. Create the DomU with command: # xm create centos-5.5-x86_64 c If successful, you will be redirected to DomU s main console where the installation process has just started: 6

8 6. Proceed with a standard CentOS installation from network, in text mode: Choose the Use text mode for the installation method when prompted. 7. Proceed with create custom layout while partitioning disks: The partition table you create should look like this: 7

9 There should be only one primary partition on each disk. The first primary partition will be used as primary disk for the VM where the / file- system resides. The second partition is the VM s SWAP space. This partitioning makes template creation easier. 8. Boot Loader Configuration use default GRUB settings: At the Boot Loader Configuration stage you should use default settings for GRUB boot loader installation and configuration. Cloudturk uses GRUB (version 0.97) to boot both Xen and KVM based virtual machines. 9. Networking Configuration: This stage does nothing for Cloudturk, because it totally recreates all network- related configuration files while a VM is deployed. However, you should still configure networking properly at this stage, in case you need net access for the machine for some additional, post- installation task. 10. Root Password: Enter your choice of password for root user. The password will be changed by Cloudturk 8

10 while the VM is being provisioned, anyway, so a strong password isn t too significant at this stage. 11. Packages Selection: Select the software required, depending what your template will be used for. 12. Finish the installation: A reboot will be requested when the installation has finished. The VM will be destroyed (because on_reboot = destroy is set in the VM s Xen configuration file) just after you confirm the reboot. 13. Prepare the system to boot from the VM s disk: Next we need to prepare the system we ve just installed to be booted by Xen Hypervisor from the VM s disk (not from kernel or ramdisk images). To do this we need to mount the VM s primary disk on the hypervisor. Take a look at the VM s primary disk partition table. Remember, that the disk is created on the one of logical volumes. In our example it is the logical volume named lvol32: # fdisk -ul /dev/vg0/lvol32 The partition table should look like: Disk /dev/vg0/lvol32: 5368 MB, bytes 255 heads, 63 sectors/track, 652 cylinders, total sectors Units = sectors of 1 * 512 = 512 bytes Device Boot Start End Blocks Id /dev/vg0/lvol32p1 * Syste Linux m The next step is creating a device map from the partition table: # kpartx -a /dev/vg0/lvol32 That will create the corresponding block device for our primary disk partition. You can 9

11 check the device with: # stat /dev/mapper/lvol32p1 File: `/dev/mapper/lvol32p1' Size: 0 Blocks: 0 IO Block: 4096 block special file Device: 10h/16d Inode: Links: 1 Device type: fd,27 Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) Access: :43: Modify: :43: Change: :43: Now we can mount our partition: # mkdir /mnt/tmp # mount /dev/mapper/lvol32p1 /mnt/tmp As the result we get the VM s / file- system mounted on /mnt/tmp # cd /mnt/tmp 15. Change GRUB boot loader configuration file: # vim boot/grub/grub.conf PLEASE NOTE that you are not going to change hosts GRUB config! a) Correct the root device so it is not LABEL or UUID, but the full path to the block device: /dev/sda1 : root=/dev/sda1 b) Correct console set to tty0: console=tty0 As the result, the VM s GRUB configuration file should look like this: 10

12 16. Correct fstab: The next thing to correct is fstab. It should set corresponded devices for / and SWAP. Cloudturk configures /dev/sda1 to be / file- system, and /dev/sda2 for SWAP. As the result, /etc/fstab should look like: # cat etc/fstab /dev/sda1 / ext3 defaults 1 1 tmpfs /dev/shm tmpfs defaults 0 0 devpts /dev/pts devpts gid=5,mode= sysfs /sys sysfs defaults 0 0 proc /proc proc defaults 0 0 /dev/sda2 swap swap defaults Disable Selinux: Open etc/selinux/config and set SELINUX=disabled there: # cat etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. 11

13 # permissive - SELinux prints warnings instead of enforcing. # disabled - SELinux is fully disabled. SELINUX=disabled # SELINUXTYPE= type of policy in use. Possible values are: # targeted - Only targeted network daemons are protected. # strict - Full SELinux protection. SELINUXTYPE=targeted 18. Create a temporary Cloudturk Xen- ready template: We are finished with internal VM configuration for now. Next we create a temporary Cloudturk Xen ready template. An Cloudturk template is the VM s / file- system packed with GNU tar (+ GNU zip). Run: # cd /mnt/tmp/ # tar zcp --numeric-owner --file=/tmp/centos-5.5- x86_64.tar.gz./ Please ignore messages like: tar:./dev/log: socket ignored 19. Clean up the partition table on the logical volume used for primary disk: a) Umount the partition and remove its map: # cd # umount /dev/vg0/lvol32p1 # kpartx -d /dev/vg0/lvol32 Recommended approach - you can just delete LVM logical volume and then create it again: # lvremove /dev/vg0/lvol32 # lvcreate -L 5G -n lvol32 vg0 Or, you can remove the existing partition with fdisk: # fdisk /dev/vg0/lvol32 12

14 Then press d on fdisk s interface to delete partition. And after that, press w to write new partition table and exit. b) Run the same process again on the logical volume where SWAP resides. c) Initialize SWAP on the corresponding LVM logical volume: # mkswap /dev/vg0/lvol Create an ext3 file system on the block device: We need to create an ext3 file- system on the block device, but not on any of its partitions: # mkfs.ext3 /dev/vg0/lvol Deploy our temporary template to the ext3 file system: # mount /dev/vg0/lvol32 /mnt/tmp # cd /mnt/tmp # tar pzxf /tmp/centos-5.5-x86_64.tar.gz 22. Go back to /etc/xen directory and umount the device: # cd /etc/xen # umount /dev/vg0/lvol Change VM configuration file: # vim centos-5.5-x86_64 We need to change the way the VM boots and rename some devices in the configuration file. After the changes the configuration file should look like: bootloader="/usr/bin/pyg 13

15 rub" name = "centos-5.5- x86_64" memory = "512" vcpus=1 disk =[ 'phy:/dev/vg0/lvol32,sda1,w', 'phy:/dev/vg0/lvol48,sda2,w' ] vif = [ 'bridge=xenbr0', ] on_reboot = 'destroy' on_crash = 'destroy' Note: now the VM is booted by Xen s boot loader PyGrub. The device for the VM s primary disk is translated as sda1 and the device for SWAP is translated as sda2. These changes are the same as those we made inside the VM for grub.conf and fstab. 24. Boot/create the VM: # xm create centos-5.5-x86_64 c You will see PyGrub boot loader prompt to boot the VM according to the settings we made inside the VM s grub.conf. After that the VM will start and all kernel and init services startup messages appear. Finally we get the login prompt. In case of CentOS/RHEL 5.x installation you will probably be prompted with some initial configuration using Setup Agent. You will be able to disable firewall there if required. Please do not re- enable Selinux. 14

16 The next few steps are to configure the box to be ready to boot under both Xen and KVM. Log into the VM using root user and the password you specified during the installation. 25. While logged in, copy grub.conf and fstab: (as they are ready to work with Xen now): # cp -av /boot/grub/grub.conf /boot/grub/grub.conf.xen # cp -av /etc/fstab /etc/fstab.xen 26. Install the plain Linux kernel: The kernel will be used to boot the VM under KVM. Xen DomU compatible kernel ( kernel- xen package) was installed during the installation: # yum install kernel 27. Copy grub.conf and fstab, so we can make them ready for KVM: 15

17 # cp -av /boot/grub/grub.conf /boot/grub/grub.conf.kvm # cp -av /etc/fstab /etc/fstab.kvm 28. Correct grub.conf.kvm to boot the VM under KVM: KVM uses plain, not Xen DomU kernel, so remove all Xen instances from the grub.conf.kvm file. Also set root kernel option value to /dev/hda1, remove the console kernel option, and check the default value is 0. # vi /boot/grub/grub.conf.kvm As the result grub.conf.kvm should look like: 29. Correct fstab.kvm to match KVM devices and mount them correctly: The /dev/hda1 (primary device first partition) is used for / file- system, and /dev/hdb is used as SWAP. # vi /etc/fstab.kvm 16

18 The fstab.kvm after the changes should look like: /dev/hda1 / ext3 defaults 1 1 tmpfs /dev/shm tmpfs defaults 0 0 devpts /dev/pts devpts gid=5,mode= sysfs /sys sysfs 0 defaults 0 0 proc /proc proc defaults 0 0 /dev/hdb swap swap defaults Complete some other basic preparations for the template: You need to disable the kudzu service. It does nothing for VMs under Xen or KVM because the hardware translated for virtual machines is the same each time. # chkconfig --del kudzu Clean yum metadata: # yum clean all 31. Restore the GRUB boot loader configuration file, since it changed while plain kernel was installed: # cp -av /boot/grub/grub.conf.xen /boot/grub/grub.conf 32. Turn off the VM: # shutdown h now You will be automatically returned to the hypervisor s console when the VM is shutdown. Now we are ready to create the final Cloudturk template based on the VM we have just set up and configured. 33. Mount the VM s / file- system which is situated on the LVM logical volume lvol32: # mount /dev/vg0/lvol32 /mnt/tmp 17

19 34. Pack the /mnt/tmp directory content: # tar zcp --numeric-owner -- file=/data/templates/linux/centos-5.5-x tar.gz./ 3. Installing DomU (Paravirtualized) via VNC Console 1. Being with 1-3 from chapter 2 2. Create Xen DomU configuration file to process with network CentOS 5.5 x86_64 VM installation: # cd /etc/xen # vim centos-5.5-x86_64 The configuration file with VNC console enabled should look like the example below: kernel = "/etc/xen/vmlinuz-centos-5.5-x86_64- install" ramdisk = "/etc/xen/initrd-centos-5.5- x86_64-install" extra = "text # ks= name = "centos-5.5-x86_64" memory = "512" vcpus=1 disk = [ 'phy:/dev/vg0/lvol32,xvda,w', 'phy:/dev/mapper/vg0- lvol48,xvdb,w' ] vif = [ 'bridge=xenbr0', ] vfb = [ "type=vnc, vncpasswd=, vnclisten= " ] on_reboot = 'destroy' on_crash = 'destroy' 18

20 The relevant VNC settings are those highlighted: vfb VirtualFrameBuffer connection configuration o type=vnc o vncpassword= o vnclisten= type of the connection, VNC console the VNC console password (empty in the example) IP for hosts to accept connection from See step 4 of chapter 2 for a description of all other parameters. 3. Create the DomU with command: # xm create centos-5.5-x86_64 4. Determine the port where VNC console is available: # xm list --long centos-5.5-x86_64 grep location grep : You will get the output like this: (location :5903) In this case the output tells us that the DomU is available via VNC on the hypervisor s port # Connect to the VNC console: You can use any VNC client to connect to the console from your desktop. Use the hypervisor s main IP address, the port you got on the previous step, and an empty password (it is not in the DomU config). You can also start the vncviewer application directly on the hypervisor. However, in this case, you have to connect to the hypervisor via ssh from any other Linux box with X output redirection: # ssh X root@<hypervisor_ip # vncviewer :5903 > /dev/null 2>&1 & If connection is successful you will be prompted to start OS installation. The VNC 19

21 console will look like this: 6. Now proceed with steps 6-34 from chapter Cloudturk Template Naming Convention Cloudturk templates should follow this naming convention: <DISTRONAME>-<DISTROVERSION>[- <LOCALE>_<APPNAME>_<APPVERSION>]-<ARCH>- <TEMPLATEVERSION>[-<VIRTUALIZATION>].tar.gz Mandatory naming elements are: 20

22 <DISTRONAME> - distribution short name, like rhel, centos, ubuntu, debian, gentoo <DISTROVERSION> - distribution version, like 5.5, 10.04, 5.0 <ARCH> - hardware platforms. Allowable terms are: o x64 for x86_64/amd64 o x86 for i386 <TEMPLATEVERSION> - version of the current template o An x.x numbering format is sufficient - so valid versions would include 1.0, 1.1, 2.5 o Please keep versions unique for a single template Please note that the - symbol is used as a separator for mandatory naming elements (<DISTRONAME>, <DISTROVERSION> etc). Do not use it inside elements. Optional naming elements are: <LOCALE> - the template locale. Example: JP <APPNAME> - the name of the application installed inside the VM. For example, Plesk <APPVERSION> - the version of the application installed inside the VM. For example, o You can put any information you need here, but do not split with -. Use _ for splitting here. <VIRTUALIZATION> - the virtualization platform the template is compatible with. Available values are: xen or kvm. Skip this parameter if the template is compatible with both Xen and KVM (like one we prepared in the example earlier in this document). Some correct template name examples: centos x tar.gz centos JP_Apache- x tar.gz ubuntu x xen.kvm.kvm_virtio.tar.gz centos Trixbox_ x tar.gz 21

23 5. Generate Template SQL We have created a script to generate the SQL needed to add templates to the Cloudturk Control Panel. 1. Download the script: # wget 2. Run the script: For example, to get the SQL for the template in our example, for Cloudturk CP version 2.1.1: # sh ~/generate-cloudturk-templates-sql.sh -v m SQL -d /data/templates/linux/ -t centos-5.5-x tar.gz And the result will be: INSERT INTO `templates` (label, created_at, version, file_name, operating_system, operating_system_distro, allowed_swap, state, checksum, allow_resize_without_reboot, min_disk_size, template_size, operating_system_arch, operating_system_edition, operating_system_tail, allowed_hot_migrate, virtualization) VALUES ('CentOS 5.5 x64', NOW(), '1.0', 'centos-5.5-x tar.gz', 'linux', 'rhel', 1, 'active', 'fe520abaff0b0fbe85b3a359c50e7027', 1, 5, '312468', 'x64', NULL, NULL, 1, 'xen,kvm'); 22

24 6. Installing DomU (HVM) Download distribution installation ISO image to proceed with a DomU installation in HVM mode. 23

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

How to Install Windows on Xen TM 3.0

How to Install Windows on Xen TM 3.0 How to Install Windows on Xen TM 3.0 A XenSource Technical Note for the Windows 2003 Server Introduction This note describes how to install Windows 2003 Server on Xen. It provides an overview of the Linux

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

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

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

More information

Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting

Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course ID RHL200 Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course Description Students will experience added understanding of configuration issues of disks,

More information

Oracle VM Server Recovery Guide. Version 8.2

Oracle VM Server Recovery Guide. Version 8.2 Oracle VM Server Recovery Guide Version 8.2 Oracle VM Server for x86 Recovery Guide The purpose of this document is to provide the steps necessary to perform system recovery of an Oracle VM Server for

More information

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive

Creating a Cray System Management Workstation (SMW) Bootable Backup Drive Creating a Cray System Management Workstation (SMW) Bootable Backup Drive This technical note provides the procedures to create a System Management Workstation (SMW) bootable backup drive. The purpose

More information

Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption

Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption Backtrack 4 Bootable USB Thumb Drive with Full Disk Encryption This is a step-by-step guide showing how to create an encrypted bootable Backtrack 4 USB thumb drive. I put quotes around full in the title

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

Red Hat Certifications: Red Hat Certified System Administrator (RHCSA)

Red Hat Certifications: Red Hat Certified System Administrator (RHCSA) Red Hat Certifications: Red Hat Certified System Administrator (RHCSA) Overview Red Hat is pleased to announce a new addition to its line of performance-based certifications Red Hat Certified System Administrator

More information

How to Restore a Linux Server Using Bare Metal Restore

How to Restore a Linux Server Using Bare Metal Restore How to Restore a Linux Server Using Bare Metal Restore This article refers to firmware version 5.4 and higher, and the Barracuda Linux Backup Agent 5.4 and higher. Use the steps in this article to restore

More information

Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines. An Oracle Technical White Paper December 2008

Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines. An Oracle Technical White Paper December 2008 Converting Linux and Windows Physical and Virtual Machines to Oracle VM Virtual Machines An Oracle Technical White Paper December 2008 Converting Linux and Windows Physical and Virtual Machines to Oracle

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

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

Linux System Administration on Red Hat

Linux System Administration on Red Hat Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,

More information

PARALLELS SERVER 4 BARE METAL README

PARALLELS SERVER 4 BARE METAL README PARALLELS SERVER 4 BARE METAL README This document provides the first-priority information on Parallels Server 4 Bare Metal and supplements the included documentation. TABLE OF CONTENTS 1 About Parallels

More information

Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015)

Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015) Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015) Access CloudStack web interface via: Internal access links: http://cloudstack.doc.ic.ac.uk

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

Linux - CentOS 6 Install Guide

Linux - CentOS 6 Install Guide Linux - CentOS 6 Install Guide Information: This simple guide is intended to assist System Administrators in the Installation of CentOS for Studywiz hosting. The CentOS web site can be found here http://www.centos.org/

More information

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

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

More information

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

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

More information

Eucalyptus Hybrid Cloud Guide

Eucalyptus Hybrid Cloud Guide Eucalyptus Hybrid Cloud Guide 2013-12-11 Eucalyptus Systems Eucalyptus Contents 2 Contents Hybrid Cloud Overview...3 Recommended Tools...4 Hybrid Cloud Concepts...5 Availability Zone...5 Cloudbursting...5

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

Xen-Based Virtualization Technology Preview for Red Hat Enterprise Linux 5.0 on HP Integrity servers

Xen-Based Virtualization Technology Preview for Red Hat Enterprise Linux 5.0 on HP Integrity servers Xen-Based Virtualization Technology Preview for Red Hat Enterprise Linux 5.0 on HP Integrity servers Introduction... 2 Intended audience... 2 Required reading... 2 Reporting issues... 2 Providing feedback...

More information

Red Hat System Administration 1(RH124) is Designed for IT Professionals who are new to Linux.

Red Hat System Administration 1(RH124) is Designed for IT Professionals who are new to Linux. Red Hat Enterprise Linux 7- RH124 Red Hat System Administration I Red Hat System Administration 1(RH124) is Designed for IT Professionals who are new to Linux. This course will actively engage students

More information

Virtualization enables enterprises to consolidate

Virtualization enables enterprises to consolidate Xen Virtualization in Red Hat By Jose de la Rosa Puneet Dhawan The open source Xen virtualization hypervisor included in the Red Hat Enterprise Linux 5 OS provides key components to help build dynamic,

More information

RHCSA 7RHCE Red Haf Linux Certification Practice

RHCSA 7RHCE Red Haf Linux Certification Practice RHCSA 7RHCE Red Haf Linux Certification Practice Exams with Virtual Machines (Exams EX200 & EX300) "IcGraw-Hill is an independent entity from Red Hat, Inc., and is not affiliated with Red Hat, Inc. in

More information

Virtual Systems with qemu

Virtual Systems with qemu Virtual Systems with qemu Version 0.1-2011-02-08 Christian Külker Inhaltsverzeichnis 1 Image Creation 2 1.1 Preparations.................................. 2 1.2 Creating a Disk Image.............................

More information

Preparing for the Installation

Preparing for the Installation CHAPTER 3 This section describes how to set up the environment for installation. To ensure a successful installation, use the checklist provided in Installation Scenarios and Checklists, page 1-3 for the

More information

USB 2.0 Flash Drive User Manual

USB 2.0 Flash Drive User Manual USB 2.0 Flash Drive User Manual 1 INDEX Table of Contents Page 1. IMPORTANT NOTICES...3 2. PRODUCT INTRODUCTION...4 3. PRODUCT FEATURES...5 4. DRIVER INSTALLATION GUIDE...6 4.1 WINDOWS 98 / 98 SE... 6

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

GroundWork Monitor Open Source 5.1.0 Installation Guide

GroundWork Monitor Open Source 5.1.0 Installation Guide GroundWork Monitor Open Source 5.1 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version

More information

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family

Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family Support Notes for SUSE LINUX Enterprise Server 9 Service Pack 3 for the Intel Itanium 2 Processor Family *5991-5301* Part number: 5991-5301 Edition: 3, E0406 Copyright 2006 Hewlett-Packard Development

More information

On Disk Encryption with Red Hat Enterprise Linux

On Disk Encryption with Red Hat Enterprise Linux On Disk Encryption with Red Hat Enterprise Linux Author: Contact: Copyright: URL: Bowe Strickland, Curriculum Manager bowe@redhat.com Copyright 2011, Red Hat, Inc. All rights reserved. http://people.redhat.com/~bowe/summit/2011/tot/on_disk_encryption

More information

Using Red Hat Enterprise Linux with Georgia Tech's RHN Satellite Server Installing Red Hat Enterprise Linux

Using Red Hat Enterprise Linux with Georgia Tech's RHN Satellite Server Installing Red Hat Enterprise Linux Using Red Hat Enterprise Linux with Georgia Tech's RHN Satellite Server Installing Red Hat Enterprise Linux NOTE: If you need more information regarding the installation process for other distributions

More information

Linux Disaster Recovery best practices with rear

Linux Disaster Recovery best practices with rear Relax and Recover Linux Disaster Recovery best practices with rear Gratien D'haese IT3 Consultants Who am I Independent Unix System Engineer since 1996 Unix user since 1986 Linux user since 1991 Open Source

More information

System administration basics

System administration basics Embedded Linux Training System administration basics Michael Opdenacker Thomas Petazzoni Free Electrons Copyright 2009, Free Electrons. Creative Commons BY SA 3.0 license Latest update: Dec 20, 2010, Document

More information

Moving to Plesk Automation 11.5

Moving to Plesk Automation 11.5 Moving to Plesk Automation 11.5 Last updated: 2 June 2015 Contents About This Document 4 Introduction 5 Preparing for the Move 7 1. Install the PA Moving Tool... 8 2. Install Mail Sync Software (Windows

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

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6 Mathieu SCHIRES Version: 0.96.1 Published January 19, 2015 http://www.inuvika.com Contents 1 Prerequisites: RHEL 6 3 1.1 System Requirements...................................

More information

Professional Xen Visualization

Professional Xen Visualization Professional Xen Visualization William von Hagen WILEY Wiley Publishing, Inc. Acknowledgments Introduction ix xix Chapter 1: Overview of Virtualization : 1 What Is Virtualization? 2 Application Virtualization

More information

ENTERPRISE LINUX SYSTEM ADMINISTRATION

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

More information

Quick Start Guide for VMware and Windows 7

Quick Start Guide for VMware and Windows 7 PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the

More information

PARALLELS SERVER BARE METAL 5.0 README

PARALLELS SERVER BARE METAL 5.0 README PARALLELS SERVER BARE METAL 5.0 README 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information on the Parallels Server Bare Metal

More information

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

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

More information

October 2011. Gluster Virtual Storage Appliance - 3.2 User Guide

October 2011. Gluster Virtual Storage Appliance - 3.2 User Guide October 2011 Gluster Virtual Storage Appliance - 3.2 User Guide Table of Contents 1. About the Guide... 4 1.1. Disclaimer... 4 1.2. Audience for this Guide... 4 1.3. User Prerequisites... 4 1.4. Documentation

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

RH033 Red Hat Linux Essentials or equivalent experience with Red Hat Linux..

RH033 Red Hat Linux Essentials or equivalent experience with Red Hat Linux.. RH131 Red Hat Linux System Administration Course Summary For users of Linux (or UNIX) who want to start building skills in systems administration on Red Hat Linux, to a level where they can attach and

More information

Navigating the Rescue Mode for Linux

Navigating the Rescue Mode for Linux Navigating the Rescue Mode for Linux SUPPORT GUIDE DEDICATED SERVERS ABOUT THIS GUIDE This document will take you through the process of booting your Linux server into rescue mode to identify and fix the

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Support Procedures Seting Up iscsi volumes on CENTOS 5, RedHat 5, Fedora 7 and, Debian Ubutu Linux Legal Notices Warranty The only warranties for HP products

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

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

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

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

DTC & DTC-Xen Running a VPS business with Xen Thomas Goirand, GPLHost CEO. Xen Summit Asia at Intel 2009

DTC & DTC-Xen Running a VPS business with Xen Thomas Goirand, GPLHost CEO. Xen Summit Asia at Intel 2009 , GPLHost CEO Xen Summit Asia at Intel 2009 Overview 1/ Global VPS hosting market & GPLHost 2/ Why an open source panel makes sense 3/ technical briefing 4/ Challenges to overcome Xen Summit Asia 2009

More information

Migrating LAMP stack from x86 to Power using the Server Consolidation Tool

Migrating LAMP stack from x86 to Power using the Server Consolidation Tool Migrating LAMP stack from x86 to Power using the Server Consolidation Tool Naveen N. Rao Lucio J.H. Correia IBM Linux Technology Center November 2014 Version 3.0 1 of 24 Table of Contents 1.Introduction...3

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions January 2011 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Required Virtual Interface Maps to... mgmt0. bridge network interface = mgmt0 wan0. bridge network interface = wan0 mgmt1

Required Virtual Interface Maps to... mgmt0. bridge network interface = mgmt0 wan0. bridge network interface = wan0 mgmt1 VXOA VIRTUAL APPLIANCE KVM Hypervisor In-Line Deployment (Bridge Mode) 2012 Silver Peak Systems, Inc. Support Limitations In Bridge mode, the virtual appliance only uses mgmt0, wan0, and lan0. This Quick

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

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

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

Virtualized Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Kai Yu Oracle Solutions Engineering Dell Inc

Virtualized Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Kai Yu Oracle Solutions Engineering Dell Inc Virtualized Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Kai Yu Oracle Solutions Engineering Dell Inc 2 About Author Kai Yu 16 years with Oracle technology Work in Dell Oracle Solutions Engineering

More information

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint

How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

GL-250: Red Hat Linux Systems Administration. Course Outline. Course Length: 5 days

GL-250: Red Hat Linux Systems Administration. Course Outline. Course Length: 5 days GL-250: Red Hat Linux Systems Administration Course Length: 5 days Course Description: The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course

More information

Copyright 1999-2011 by Parallels Holdings, Ltd. All rights reserved.

Copyright 1999-2011 by Parallels Holdings, Ltd. All rights reserved. Parallels Virtuozzo Containers 4.0 for Linux Readme Copyright 1999-2011 by Parallels Holdings, Ltd. All rights reserved. This document provides the first-priority information on Parallels Virtuozzo Containers

More information

RocketRAID 174x SATA Controller Ubuntu Linux Installation Guide

RocketRAID 174x SATA Controller Ubuntu Linux Installation Guide RocketRAID 174x SATA Controller Ubuntu Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table of Contents 1 Overview...1

More information

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer Acronis Backup & Recovery 11.5 Server for Linux Update 2 Installation Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Parallels Cloud Server 6.0 Readme

Parallels Cloud Server 6.0 Readme Parallels Cloud Server 6.0 Readme Copyright 1999-2012 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Contents About This Document... 3 About Parallels Cloud Server 6.0... 3 What's

More information

Oracle OpenStack for Oracle Linux Release 1.0 Installation and User s Guide ORACLE WHITE PAPER DECEMBER 2014

Oracle OpenStack for Oracle Linux Release 1.0 Installation and User s Guide ORACLE WHITE PAPER DECEMBER 2014 Oracle OpenStack for Oracle Linux Release 1.0 Installation and User s Guide ORACLE WHITE PAPER DECEMBER 2014 Introduction 1 Who Should Use this Guide? 1 OpenStack Basics 1 What Is OpenStack? 1 OpenStack

More information

Installing an IBM Workplace/Portal Server on Linux

Installing an IBM Workplace/Portal Server on Linux Installing an IBM Workplace/Portal Server on Linux Auteur Roel Broersma Versie 1.0 Page 1 of 9 Installing an IBM Workplace/Portal Server on Linux... 1 1. Introduction... 3 2. Installing CentOS... 4 3.

More information

2972 Linux Options and Best Practices for Scaleup Virtualization

2972 Linux Options and Best Practices for Scaleup Virtualization HP Technology Forum & Expo 2009 Produced in cooperation with: 2972 Linux Options and Best Practices for Scaleup Virtualization Thomas Sjolshagen Linux Product Planner June 17 th, 2009 2009 Hewlett-Packard

More information

Backup of ESXi Virtual Machines using Affa

Backup of ESXi Virtual Machines using Affa Backup of ESXi Virtual Machines using Affa From SME Server Skill level: Advanced The instructions on this page may require deviations from procedure, a good understanding of linux and SME is recommended.

More information

readme_asm.txt -------------------------------------------------------------------- README.TXT

readme_asm.txt -------------------------------------------------------------------- README.TXT README.TXT Adaptec Storage Manager as of March 27, 2006 Please review this file for important information about issues and erratas that were discovered after completion of the standard product documentation.

More information

Parallels Cloud Server 6.0

Parallels Cloud Server 6.0 Parallels Cloud Server 6.0 Readme September 25, 2013 Copyright 1999-2013 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Contents About This Document... 3 About Parallels Cloud Server

More information

RocketRAID 2640/2642 SAS Controller Ubuntu Linux Installation Guide

RocketRAID 2640/2642 SAS Controller Ubuntu Linux Installation Guide RocketRAID 2640/2642 SAS Controller Ubuntu Linux Installation Guide Version 1.2 Copyright 2012 HighPoint Technologies, Inc. All rights reserved. Last updated on June 14, 2012 Table of Contents 1 Overview...

More information

IT6204 Systems & Network Administration. (Optional)

IT6204 Systems & Network Administration. (Optional) Systems & Network Administration (Optional) INTRODUCTION This is one of the Optional courses designed for Semester 6 of the Bachelor of Information Technology Degree program. This course on Systems & Network

More information

Retrospect 7.7 User s Guide Addendum

Retrospect 7.7 User s Guide Addendum Retrospect 7.7 User s Guide Addendum 2011 Retrospect, Inc. All rights reserved. Retrospect 7.7 Users Guide Addendum, first edition. Use of this product (the Software ) is subject to acceptance of the license

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

Online Backup Client User Manual Linux

Online Backup Client User Manual Linux Online Backup Client User Manual Linux 1. Product Information Product: Online Backup Client for Linux Version: 4.1.7 1.1 System Requirements Operating System Linux (RedHat, SuSE, Debian and Debian based

More information

Installation Guide C-MOR Video Surveillance on XenServer from version 6.2

Installation Guide C-MOR Video Surveillance on XenServer from version 6.2 This Guide will show you the installation of C-MOR Video Surveillance on a Citrix XenServer from Version 6.2. You are able to download the XenServer on http://www.xenserver.org. Also you need the C-MOR

More information

CS197U: A Hands on Introduction to Unix

CS197U: A Hands on Introduction to Unix CS197U: A Hands on Introduction to Unix Lecture 4: My First Linux System J.D. DeVaughn-Brown University of Massachusetts Amherst Department of Computer Science jddevaughn@cs.umass.edu 1 Reminders After

More information

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration ULI101 Week 06b Week Overview Installing Linux Linux on your Desktop Virtualization Basic Linux system administration Installing Linux Standalone installation Linux is the only OS on the computer Any existing

More information

LSN 10 Linux Overview

LSN 10 Linux Overview LSN 10 Linux Overview ECT362 Operating Systems Department of Engineering Technology LSN 10 Linux Overview Linux Contemporary open source implementation of UNIX available for free on the Internet Introduced

More information

Total Backup Recovery Server for Linux. User s Guide

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

More information

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

Upgrading Cisco UCS Central

Upgrading Cisco UCS Central This chapter includes the following sections: to Release 1.3, page 1 to Release 1.3 You can upgrade Cisco UCS Central release 1.1(2a) or 1.2 to 1.3 in either standalone or cluster mode. If you are already

More information

Deployment - post Xserve

Deployment - post Xserve MONTREAL 1/3 JULY 2011 Deployment - post Xserve Pascal Robert Miguel Arroz David LeBer The Menu Deployment options Deployment on CentOS Linux Deployment on Ubuntu Linux Deployment on BSD Hardware/environment

More information

Quick Start Guide for Parallels Virtuozzo

Quick Start Guide for Parallels Virtuozzo PROPALMS VDI Version 2.1 Quick Start Guide for Parallels Virtuozzo Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the current

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

Virtualization Management the ovirt way

Virtualization Management the ovirt way ovirt introduction FOSDEM 2013 Doron Fediuck Red Hat What is ovirt? Large scale, centralized management for server and desktop virtualization Based on leading performance, scalability and security infrastructure

More information

3.0 CDN 3.0 OnApp CDN Activation and Setup Guide Author: Version: Date:

3.0 CDN 3.0 OnApp CDN Activation and Setup Guide Author: Version: Date: 3.0 CDN 3.0 OnApp CDN Activation and Setup Guide Author: Version: Date: admin 2 24-Apr-2015 10:00 Table of Contents 1 The OnApp Dashboard 5 2 How your CDN Account Works 6 3 Hardware & Marketplace Requirements

More information

QuickStart Guide for Managing Computers. Version 9.2

QuickStart Guide for Managing Computers. Version 9.2 QuickStart Guide for Managing Computers Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Using Open Source Virtualization Technology In Computer Education. SUNY IT Master's Project By: Ronny L. Bull

Using Open Source Virtualization Technology In Computer Education. SUNY IT Master's Project By: Ronny L. Bull Using Open Source Virtualization Technology In Computer Education SUNY IT Master's Project By: Ronny L. Bull Master's Project Advisor: Geethapriya Thamilarasu, Ph.D. Date: 9-04-2011 Abstract: This paper

More information

Verax Service Desk Installation Guide for UNIX and Windows

Verax Service Desk Installation Guide for UNIX and Windows Verax Service Desk Installation Guide for UNIX and Windows March 2015 Version 1.8.7 and higher Verax Service Desk Installation Guide 2 Contact Information: E-mail: sales@veraxsystems.com Internet: http://www.veraxsystems.com/

More information

TimeIPS Server. IPS256T Virtual Machine. Installation Guide

TimeIPS Server. IPS256T Virtual Machine. Installation Guide TimeIPS Server IPS256T Virtual Machine Installation Guide TimeIPS License Notification The terms and conditions applicable to the license of the TimeIPS software, sale of TimeIPS hardware and the provision

More information

Parallels Server Bare Metal 5.0

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

More information