Linux Automation. Thomas Cameron. Red Hat. Colorado Software Summit: October 19 24, Copyright 2008, Copyright holder.

Size: px
Start display at page:

Download "Linux Automation. Thomas Cameron. Red Hat. Colorado Software Summit: October 19 24, Copyright 2008, Copyright holder."

Transcription

1 Linux Automation Thomas Cameron Red Hat Slide 1

2 Welcome! Thanks for taking the time to attend this presentation! I want this to be very interactive, questions are encouraged! This deck is available with a bunch of extra hidden slides on automation with RHN Satellite/Spacewalk at Slide 2

3 Agenda Automating your Linux installation with kickstart system-config-kickstart RHN Satellite/Spacewalk (hidden) anaconda-ks.cfg Slide 3

4 Agenda Using kickstart for bare metal Using boot.iso Using vmlinuz and initrd.img Using DHCP and PXE Required packages Setting up DHCP (/etc/dhcpd.conf file) Setting up PXE Ensuring appropriate services are running Slide 4

5 Agenda Kickstarting virtual machines From the command line Graphically using virt-manager Slide 5

6 Agenda Provisioning Amazon Elastic Compute Cloud systems Time permitting, a demonstration Slide 6

7 Automating with Kickstart The kickstart file (typically ks.cfg) contains the answers to the questions asked by the installer Minimizes human error/inconsistency Reduces time to production Slide 7

8 Automating with Kickstart Sections of the kickstart file Basic configuration Installation method Boot loader options Partition information Network configuration Authentication Firewall configuration Display configuration Slide 8

9 Automating with Kickstart Basic Sections of the kickstart file Package selection Pre-installation script Post-installation script Slide 9

10 system-config-kickstart Be aware that this utility will use installation information gathered from your system's repositories Only root can query those repositories so this must be run as root (I know, I know...) Slide 10

11 Basic Configuration Language Keyboard Time Zone and UTC (use UTC!) Root password Installation Number Architecture Reboot after install Text or Graphical Interactive Mode (bad idea) Slide 11

12 Basic Configuration Slide 12

13 Installation Method New or Upgrade Install Method CD-ROM NFS FTP (includes login options) HTTP Hard Drive (FAST!) Slide 13

14 Installation Method Slide 14

15 Boot Loader Options Install or not GRUB password MBR or first section of boot partition (good for dual boot with Windows) Extra kernel parameters (e.g. noapic or irqpoll) Slide 15

16 Boot Loader Options Slide 16

17 Partition Information Clear MBR (good idea) Remove all, Linux or no partitions If removing, initialize (clear) disk label Note that this tool does not do LVM yet! Slide 17

18 Partition Information Slide 18

19 Network Configuration Mostly for DHCP or static addresses Slide 19

20 Network Configuration Slide 20

21 Authentication Use shadow passwords (strongly recommended) Use MD5 passwords (strongly recommended) NIS Slide 21

22 Authentication LDAP Kerberos Hesiod SMB (Windows authentication) Name Switch Cache Daemon (nscd) Slide 22

23 Authentication Slide 23

24 Firewall Configuration On or off (strongly recommend on) SELinux (strongly recommend Active, come back for my SELinux for Mere Mortals presentation) Trusted devices (e.g. internal interface on a multi-homed system) Trusted services (pretty basic list) Other ports (port:protocol, comma separated) Slide 24

25 Firewall Configuration Slide 25

26 Display Configuration On or off (I usually do not install X on servers, if you don't then leave this off) Color depth and resolution Default desktop Start X on boot Firstboot on, off or reconfigure Video card (recommend probe) Monitor (recommend probe) Slide 26

27 Display Configuration Slide 27

28 Package Selection Be aware that s-c-k gathers this information using root privileges! This installer is not as smart as the one used during installation you can't right-click on a choice and choose all At minimum, choose Base System/Base Slide 28

29 Package Selection Slide 29

30 Pre-Installation Very infrequently used This script runs before DNS is enabled, so networking is active but you must use ip addresses Runs while installation partitions still mounted on /mnt/sysimage Slide 30

31 Pre-Installation Slide 31

32 Post-Installation Very frequently used After installation, /mnt/sysimage is remounted (chrooted) to / Post scripts can run before or after that chroot Slide 32

33 Post-Installation Slide 33

34 Saving the ks.cfg File/Save File Review and edit as needed Best to copy, not move to web site, nfs export or wherever (to inherit correct SELinux context) Slide 34

35 Saving the ks.cfg Slide 35

36 Sample ks.cfg #platform=x86, AMD64, or Intel EM64T # System authorization information auth --useshadow --enablemd5 # System bootloader configuration bootloader --location=mbr # Partition clearing information clearpart --none # Use text mode install text # Firewall configuration firewall --enabled --http --ssh --port=443:tcp,8080:tcp,tcp:tcp # Run the Setup Agent on first boot firstboot --disable key 49af89414d # System keyboard keyboard us Slide 36

37 Sample ks.cfg # System language lang en_us # Installation logging level logging --level=info # Use network installation url --url= # Network information network --bootproto=dhcp --device=eth0 --onboot=on # Reboot after installation reboot #Root password rootpw --iscrypted $1$AZCiptqF$Dp2Jw0lkz8rgxYJQY7wk81 # SELinux configuration selinux --enforcing Slide 37

38 Sample ks.cfg # System timezone timezone --isutc America/Chicago # Install OS instead of upgrade install # X Window System configuration information xconfig --defaultdesktop=gnome --depth=24 --resolution=1280x1024 -startxonboot # Disk partitioning information part /boot --bytes-per-inode= fstype="ext3" --size=100 part swap --bytes-per-inode= fstype="swap" --size=520 part / --bytes-per-inode= fstype="ext3" --grow --size=1 %post # install Sun Java rpm -Uvh --nodeps Slide 38

39 Sample ks.cfg # Set up PATH and JAVA_HOME environment variables perl -pi.old1 -e 's/export PATH/PATH=\"\/usr\/java\/default\/bin\/:\ $PATH\"\nJAVA_HOME=\"\/usr\/java\/default\"\nexport PATH/' /etc/profile perl -pi.old2 -e 's/export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC/export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC JAVA_HOME/' /etc/profile # Create JBoss user useradd -u 8080 jboss echo redhat passwd --stdin jboss # Install JBoss AS su - jboss -c "wget su - jboss -c "unzip -qq jboss ga-jdk6.zip" Slide 39

40 Sample ks.cfg # Turn off ip version 6 echo install ipv6 /bin/true >> /etc/modprobe.conf Slide 40

41 Making media available Via web server Via NFS Via ftp Slide 41

42 Via web server First method: mount the ISO loopback under /var/www/html Don't forget to mount it with the right SELinux context (see my SELinux for Mere Mortals presentation also here at CSS) Saves disk space only the space used by the ISO is used Slide 42

43 Via the web server Slide 43

44 Via the web server Slide 44

45 Via web server Copy (to inherit SELinux context) the ks.cfg into /var/www/html Slide 45

46 Via the web server Slide 46

47 Via the web server Slide 47

48 Via web server Second method: Copy the contents of the ISO to a directory under /var/www/html Use cp -r (not -a or -p) so the files will inherit the context of the /var/www/html directory Slide 48

49 Via the web server Slide 49

50 Via NFS Copy the ISO image to a directory and export it via NFS Copy ks.cfg to exported directory The installing machine will see it and mount it loopback Slide 50

51 Via NFS Slide 51

52 Via ftp Copy contents of ISO to a directory under /var/ftp/pub, as with http Slide 52

53 RHN Satellite/Spacewalk Red Hat Network Satellite Server (RHNS) Lifecycle management tool for RHEL Commercially supported/subscription based Slide 53

54 RHN Satellite/Spacewalk Upstream project is Spacewalk (SW): For any RPM based distro No cost, Open Source Slide 54

55 RHN Satellite/Spacewalk This presentation will only cover general kickstart features of Satellite/Spacewalk Slide 55

56 Kickstart on RHNS/SW Log in and choose Systems/Kickstart/Profiles/create new kickstart profile Slide 56

57 Kickstart on RHNS/SW Slide 57

58 Creating the kickstart Define the kickstart label Choose the base channel (distro) Choose the tree (update level) Choose virtualization type Para-virtualized host - installing on bare metal with virtualization services Para-virtualized guest - installing virtual machine in RHEL virtualization environment None - installing on bare metal with no virtualization services Slide 58

59 Creating the kickstart Slide 59

60 Creating the kickstart Note the installation location This is where the installation media is available Satellite/Spacewalk to not actually share static installation trees, the packages are dynamically made available via dynamically generated trees. This saves tons of space on the server Alternatively you can point to an existing install location Slide 60

61 Creating the kickstart Slide 61

62 Creating the kickstart Enter the root password for the new system Slide 62

63 Creating the kickstart Slide 63

64 Creating the kickstart Now you can customize the installation For instance, log all post-install scripts via Kickstart Details/Details: Slide 64

65 Creating the kickstart Slide 65

66 Creating the kickstart Under Kickstart Details/Operating System, choose appropriate child channels At minimum RHN Tools Channel In this example, clustering and clusterstorage: Slide 66

67 Creating the kickstart Slide 67

68 Creating the kickstart Under Kickstart Details/Advanced Options, set installation method, install or upgrade, network settings, language, installation number, partitioning, time zone, SELinux, password, video settings, X configuration, iscsi, etc. Slide 68

69 Creating the kickstart Slide 69

70 Creating the kickstart Under System Details/Details, set reinstallation networking, SELinux, enable RHN configuration management and enable remote commands and set root password Slide 70

71 Creating the kickstart Slide 71

72 Creating the kickstart Under System Details/Locale, set time zone and set the clock to use UTC if appropriate Slide 72

73 Creating the kickstart Slide 73

74 Creating the kickstart Under System Details/patitioning, set up the disk including LVM and RAID Slide 74

75 Creating the kickstart Slide 75

76 Creating the kickstart Under System Details/file preservation, define any files you want to be preserved when reprovisioning a server /etc/ssh is a good candidate Slide 76

77 Creating the kickstart Slide 77

78 Creating the kickstart Under Software/Package Groups define groups of packages you want installed Obtain them via comps.xml in RHEL 4 and earlier egrep "<name> packagereq" /usr/share/comps/[arch]/comps.xml Obtain them via yum grouplist in RHEL 5 and later Slide 78

79 Creating the kickstart Slide 79

80 Creating the kickstart Slide 80

81 Creating the kickstart Add packages by name Package groups symbol Exclude package by -name Slide 81

82 Creating the kickstart Slide 82

83 Creating the kickstart Activation Keys can be used to register systems to the right channel and enable monitoring and provisioning. Slide 83

84 Creating the kickstart Slide 84

85 Creating the kickstart Slide 85

86 Creating the kickstart The Scripts tab is used for pre-, postand post-nochroot scripts Slide 86

87 Creating the kickstart Slide 87

88 Viewing the kickstart Click on kickstart File to view the finished product There is no ks.cfg - the kickstart file is stored in the database and generated dynamically for presentation through a web interface. Slide 88

89 Viewing the kickstart Slide 89

90 anaconda-ks.cfg A template ks.cfg is created as /root/anaconda-ks.cfg after every installation Can be used as a foundation for future kickstarts Need to review, uncomment sections like partitioning Slide 90

91 anaconda-ks.cfg Slide 91

92 Kickstart on Bare Metal boot.iso vmlinuz and initrd.img Using DHCP and PXE Slide 92

93 boot.iso boot.iso is a boot CD image available on Red Hat and clone distros. Look on the CD or DVD ISO in /images You can either use it standalone and pass arguments to the installer (painful and error prone) or you can spin your own custom ISO and burn it or use it as virtual media (ilo, DRAC or similar) Slide 93

94 Stock boot.iso Burn the boot.iso file to media, pop it in the drive of the system you want to kickstart and pass the something like the following to the install kernel (all one line): linux text ks= ip= netmask= gateway= dns= If you have DHCP you can skip the ip, netmask, gateway and dns entries. Slide 94

95 Customizing boot.iso Mount the boot.iso file loopback and copy the contents to a temporary location. Use cp -r to capture the correct SELinux context. Something like this: Slide 95

96 Customizing the boot.iso Slide 96

97 Customizing boot.iso Edit the /isolinux/isolinux.cfg file Change default linux to default ks Change the append ks stanza to add in the ks=, ip=, netmask=, gateway= and dns= sections This removes human error Slide 97

98 Customizing the boot.iso Slide 98

99 Customizing the boot.iso Slide 99

100 Building your new boot.iso Delete any instances of the translation table from the my_iso directory find my_iso/ -name TRANS.TBL xargs rm Create your boot.iso using mkisofs: Slide 100

101 Customizing the boot.iso Slide 101

102 Building your new boot.iso Now boot with media created from myboot.iso to kickstart. Slide 102

103 initrd.img and vmlinuz You can also copy the initrd.img and vmlinuz from the /images/pxeboot directory on the boot.iso or CD1 or the ISO to /boot on a machine to be reinstalled. Add an install stanza in /boot/grub/grub.conf like this: Slide 103

104 grub.conf Slide 104

105 Kickstart via DHCP & PXE Required packages Setting up DHCP Setting up PXE Required Services Slide 105

106 Required Packages dhcp system-config-netboot bitmap-fonts xinetd tftp-server Slide 106

107 Setting up DHCP Using the sample dhcpd.conf file from /usr/share/doc/dhcp*/, create your DHCP config file in /etc Set at minimum: subnet declaration routers subnet mask domain name DNS servers range dynamic-bootp PXE stanza Slide 107

108 Sample dhcpd.conf ddns-update-style interim; ignore client-updates; subnet netmask { option routers ; option subnet-mask ; option domain-name "camerontech.net"; option domain-name-servers ; option time-offset ; # Central Standard Time option ntp-servers ; option netbios-name-servers ; range dynamic-bootp ; default-lease-time 21600; max-lease-time 43200; Slide 108

109 Sample dhcpd.conf (cont.) host molly { hardware ethernet 00:12:3f:5e:4b:a6; fixed-address ; } # For PXE next-server ; filename "/linux-install/pxelinux.0"; } Slide 109

110 Setting up PXE As root, run system-config-netboot Choose Network Installation dialog OS identifier and Description Protocol Kickstart location Server IP address Path to installation media Slide 110

111 Setting up PXE Slide 111

112 Setting up PXE This will copy the vmlinuz and initrd.img files from the install media to /tftpboot/linux-install/[os identifier] Slide 112

113 PXE Illustration Slide 113

114 Setting up PXE Make sure that the xinetd service is on Make sure that the tftp service is on Make sure that the dhcpd service is on Slide 114

115 Setting up PXE Slide 115

116 PXE Boot Slide 116

117 Kickstarting VMs From the command line From the GUI Slide 117

118 Kickstarting VMs /usr/sbin/virt-install is an interactive tool which will ask several questions Guest name Memory Disk location (file or partition backed) Enable graphics support (say no if installing via ssh) Install location (where is the installation media) Note that the command line provides more options Slide 118

119 virt-install Slide 119

120 virt-install Slide 120

121 virt-install Slide 121

122 Kickstarting VMs /usr/sbin/virt-manager is a graphical tool for setting up guests You can follow the prompts to install using kickstart Slide 122

123 virt-manager Slide 123

124 virt-manager Slide 124

125 virt-manager Slide 125

126 virt-manager Slide 126

127 virt-manager Slide 127

128 virt-manager Slide 128

129 virt-manager Slide 129

130 virt-manager Slide 130

131 virt-manager Slide 131

132 Amazon EC2 Time permitting, a live demo of provisioning an EC2 guest Slide 132

133 Questions? Slide 133

134 Thank You! This presentation is available at I can be contacted at thomas@redhat.com Slide 134

Installation and configuration of Linux Cluster. Addisu Gezahegn University of Trieste ICTP,Trieste

Installation and configuration of Linux Cluster. Addisu Gezahegn University of Trieste ICTP,Trieste Installation and configuration of Linux Cluster Addisu Gezahegn University of Trieste ICTP,Trieste asemie@ictp.it What is Cluster computer? It is a single logical unit consisting of multiple computers

More information

Installation Tools for Clusters. Rajesh K., Computer Division, BARC

Installation Tools for Clusters. Rajesh K., Computer Division, BARC Installation Tools for Clusters Rajesh K., Computer Division, BARC Outline of the presentation Cluster Intro Steps involved in a cluster installation Different approaches to installation Issues in cluster

More information

Virtuozzo Storage 2.3. Installation Using PXE

Virtuozzo Storage 2.3. Installation Using PXE Virtuozzo Storage 2.3 Installation Using PXE February 19, 2018 Virtuozzo International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 https://virtuozzo.com

More information

Remote Initialization and Configuration of Cluster Nodes

Remote Initialization and Configuration of Cluster Nodes Remote Initialization and Configuration of Cluster Nodes February 11 th, 2003 Thomas Jefferson National Accelerator Facility Walt Akers, Jie Chen, Chip Watson, Ying Chen, Kelvin Edwards 1. OVERVIEW AND

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

Acronis Storage 2.4. Installation Using PXE

Acronis Storage 2.4. Installation Using PXE Acronis Storage 2.4 Installation Using PXE July 18, 2018 Copyright Statement Acronis International GmbH, 2002-2016. All rights reserved. Acronis and Acronis Secure Zone are registered trademarks of Acronis

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

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux Part 1 : Getting Familiar with Linux Chapter 1 : Getting started with Red Hat Enterprise Linux Chapter 2 Finding Your Way on the Command Line Hours Part II : Administering Red Hat Enterprise Linux Linux,

More information

CIT 470: Advanced Network and System Administration. Topics. Workstation Management. Workstations

CIT 470: Advanced Network and System Administration. Topics. Workstation Management. Workstations CIT 470: Advanced Network and System Administration Workstations CIT 470: Advanced Network and System Administration Slide #1 Topics 1. Machine Lifecycle 2. Automated Installs 3. Updates 4. Network Configuration

More information

FastTrack to Red Hat Linux System Administrator Course Overview

FastTrack to Red Hat Linux System Administrator Course Overview Course Overview This highly practical instructor led training course is designed to give experienced LINUX/UNIX administrators practical experience in the administration of a LINUX system to a level required

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

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

Spacewalk. Installation Guide for CentOS 6.4

Spacewalk. Installation Guide for CentOS 6.4 Spacewalk Installation Guide for CentOS 6.4 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install

More information

Spacewalk. Installation Guide RHEL 5.9

Spacewalk. Installation Guide RHEL 5.9 Spacewalk Installation Guide RHEL 5.9 Contents Spacewalk Overview... 3 Spacewalk Project Architecture... 3 System Prerequisites... 3 Installation... 4 Spacewalk Components... 4 Prerequisites Install for

More information

Network Configuration for Cisco UCS Director Baremetal Agent

Network Configuration for Cisco UCS Director Baremetal Agent Network Configuration for Cisco UCS Director Baremetal Agent This chapter contains the following sections: About the Network Configuration Options, page 1 Single Network for Management and PXE, page 1

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

Certification. RPM, Boot Loaders, and Kickstart

Certification. RPM, Boot Loaders, and Kickstart Certification RPM, Boot Loaders, and Kickstart UNIT 7 RPM, Boot Loaders, and Kickstart 1 UNIT 7: Objectives Upon completion of this unit the student should be able to: Use RPM to install, remove, update,

More information

1 LINUX KERNEL & DEVICES

1 LINUX KERNEL & DEVICES 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

Virtuozzo 7. PXE Installation Guide

Virtuozzo 7. PXE Installation Guide Virtuozzo 7 PXE Installation Guide December 05, 2017 Virtuozzo International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 https://virtuozzocom Copyright

More information

"Charting the Course... RHCE Rapid Track Course. Course Summary

Charting the Course... RHCE Rapid Track Course. Course Summary Course Summary Description This course is carefully designed to match the topics found in the Red Hat RH299 exam prep course but also features the added benefit of an entire extra day of comprehensive

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus Linux system administrator-i Unit 1: Get Started with the GNOME Graphical Desktop Objective: Get started with GNOME and edit text files with gedit Unit 2: Manage Files Graphically with Nautilus Objective:

More information

Installing Fedora. In this chapter, you learn how to do a basic installation of CHAPTER 3 IN THIS CHAPTER. Research Your Hardware Specifications

Installing Fedora. In this chapter, you learn how to do a basic installation of CHAPTER 3 IN THIS CHAPTER. Research Your Hardware Specifications CHAPTER 3 IN THIS CHAPTER Before You Begin the Installation Choosing How to Install Fedora In this chapter, you learn how to do a basic installation of Fedora. You will see how to boot and then install

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

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

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

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

Deploying VMware ESX Server to IBM System x Using Altiris Deployment Solution 6.8 SP1

Deploying VMware ESX Server to IBM System x Using Altiris Deployment Solution 6.8 SP1 Chapter 1. Deploying VMware ESX Server 3.0.1 to IBM System x Using Altiris Deployment Solution 6.8 SP1 This document describes script-based deployment of ESX Server 3.0.1 on IBM System x servers, using

More information

Red Hat CloudForms 4.0

Red Hat CloudForms 4.0 Red Hat CloudForms 4.0 Provisioning Virtual Machines and Hosts Provisioning, workload management, and orchestration for CloudForms Management Engine Last Updated: 2017-12-08 Red Hat CloudForms 4.0 Provisioning

More information

020 Network Install. Linux on POWER Red Hat Edition

020 Network Install. Linux on POWER Red Hat Edition 020 Network Install Linux on POWER Red Hat Edition 1 RHEL 6.5 Network Install Your first (odd) RHEL installed LPAR will become a network install server Bring over sk_rh65 script Run sk_rh65 s for install

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

Installing Linux on JMU Computer-Science Department Removable Hard Drives for CS-450 and CS-550

Installing Linux on JMU Computer-Science Department Removable Hard Drives for CS-450 and CS-550 Installing Linux on JMU Computer-Science Department Removable Hard Drives for CS-450 and CS-550 Charles Abzug (1) Be advised that the complete installation of Linux takes at least slightly in excess of

More information

Installing the CGDS - Substation Workbench Server Software

Installing the CGDS - Substation Workbench Server Software CHAPTER 2 Installing the CGDS - Substation Workbench Server Software Revised: April 15, 2013, Tips on Performing the CGDS - Substation Workbench Base Software Installation This section will cover how to

More information

Satellite 6 User Guide. ID Client Delivery

Satellite 6 User Guide. ID Client Delivery ID Client Delivery 08.06.2017 pdf generated on July 7, 2017 Table of Contents 1 Concepts 3 1.1 Terminology...................................... 3 1.2 Description of Key Elements.............................

More information

Capstone PXE Server Documentation

Capstone PXE Server Documentation Capstone PXE Server Documentation Thomas Borowiec Taylor Beeson Tyler Cobb Jared Jones Capstone PXE Spring 2011 Page 1 Section I. Build: II. III. Table of Contents Page(s) Requirements. 3 Configuration

More information

Red Hat CloudForms 4.1 Provisioning Virtual Machines and Hosts

Red Hat CloudForms 4.1 Provisioning Virtual Machines and Hosts Red Hat CloudForms 4.1 Provisioning Virtual Machines and Hosts Provisioning, workload management, and orchestration for Red Hat CloudForms Red Hat CloudForms Documentation Team Red Hat CloudForms 4.1

More information

How To Install SecurePlatform with PXE

How To Install SecurePlatform with PXE How To Install SecurePlatform with PXE 10 May 2012 2012 Check Point Software Technologies Ltd. All rights reserved. This product and related documentation are protected by copyright and distributed under

More information

Configuring a Standalone VCL Environment using VMware Server 2.0

Configuring a Standalone VCL Environment using VMware Server 2.0 Configuring a Standalone VCL Environment using VMware Server 2.0 DISCLAIMER! This document provides instuctions for configuring a standalone VCL environment running on a single computer which is able to

More information

Chapter 7. Getting Started with Boot from Volume

Chapter 7. Getting Started with Boot from Volume 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

More information

Red Hat Network Satellite 5.0.0: Virtualization Step by Step

Red Hat Network Satellite 5.0.0: Virtualization Step by Step Red Hat Network Satellite 5.0.0: Virtualization Step by Step By Máirín Duffy, Red Hat Network Engineering Abstract Red Hat Network Satellite 5.0 is the first Satellite release to include virtual platform

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

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting Synopsis: This is the second System Administration class, a follow-on class for new administrators with limited networking

More information

Red Hat CloudForms 4.5

Red Hat CloudForms 4.5 Red Hat CloudForms 4.5 Provisioning Virtual Machines and Hosts Provisioning, workload management, and orchestration for Red Hat CloudForms Last Updated: 2018-02-28 Red Hat CloudForms 4.5 Provisioning

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

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

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

Applications Note iscsi Boot Setup

Applications Note iscsi Boot Setup pplications Note iscsi Boot Setup iscsi Boot Configuration Example Used in this Applications Note iscsi Initiator Windows Server 2003 iscsi Target Linux 1 Release Overview This applications note uses the

More information

Enterprise Linux System Administration

Enterprise Linux System Administration Enterprise Linux System Administration Course GL250, 5 Days, Hands-On, Instructor-Led Introduction The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems.

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

Installation of Cisco HCM-F

Installation of Cisco HCM-F CHAPTER 2 This chapter includes information about installing and configuring Cisco HCM-F. The HCM-F installation is new for Cisco HCS 8.6(2) and introduces new functionality that is used by service fulfillment

More information

ENTERPRISE LINUX SYSTEM ADMINISTRATION

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

More information

1Z Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions

1Z Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions 1Z0-100 Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-100 Exam on Oracle Linux 5 and 6 System Administration2 Oracle 1Z0-100 Certification

More information

RedHat Certified Engineer

RedHat Certified Engineer RedHat Certified Engineer Red Hat Certified Engineer (RHCE) is a performance-based test that measures actual competency on live systems. Called the "crown jewel of Linux certifications," RHCE proves an

More information

Fedora 12 Essentials

Fedora 12 Essentials Fedora 12 Essentials 2 Fedora 12 Essentials First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights

More information

Linux Diskless iscsi Boot HowTo ( V1.0)

Linux Diskless iscsi Boot HowTo ( V1.0) Linux Diskless iscsi Boot HowTo ( V1.0) This document describes using the Cisco Linux 3.4.2 iscsi initiator for diskless booting of Red Hat Linux 9 (RH9). EqualLogic has enhanced the initiator to provide

More information

Red Hat Enterprise Linux on IBM System z. Management and Provisioning Best Practices

Red Hat Enterprise Linux on IBM System z. Management and Provisioning Best Practices Red Hat Enterprise Linux on IBM System z Management and Provisioning Best Practices Thorsten Scherf Principal Consultant Red Hat Global Professional Services Filipe Miranda Global

More information

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat Rh202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) http://killexams.com/exam-detail/rh202 QUESTION: 156 Who ever creates the files/directories on /data group owner should be automatically

More information

Orchestration Workflow Tasks for PXE Boot

Orchestration Workflow Tasks for PXE Boot This chapter contains the following sections: About the, page 1 Prerequisites for Workflows with PXE Boot Tasks, page 1 Setup PXE Boot Task, page 2 Monitor PXE Boot Setup Task, page 5 Remove PXE Boot Setup

More information

Ubuntu Server Partition Setup Samba Disk

Ubuntu Server Partition Setup Samba Disk Ubuntu Server 12.04 Partition Setup Samba Disk hi, am going to deploy Ubuntu server having following server on it: Samba server The thing which I want to for a production environment where the users will

More information

Getting Started with ESXi Installable

Getting Started with ESXi Installable Update 1 ESXi 4.0 Installable vcenter Server 4.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check

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 caos with Cinch on Floppy Disk

Installing caos with Cinch on Floppy Disk Installing caos with Cinch on Floppy Disk Troy Andrew Johnson May 21, 2004 Abstract cinch is the caos Linux (http://www.caosity.org/) installer. Prerequisites What you need: two floppy disks (at least)

More information

D Using HP SIM and vmedia for Provisioning OpenVMS

D Using HP SIM and vmedia for Provisioning OpenVMS D Using HP SIM and vmedia for Provisioning OpenVMS HP Systems Insight Manager (HP SIM) allows you to provision OpenVMS to one or more Integrity servers in the network. This means that, from a single location

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

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

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

Linux-Course Theme:- Thin Clients 23 October 2005 Michel Bisson

Linux-Course Theme:- Thin Clients 23 October 2005 Michel Bisson 96 - Thin Clients Building Thin Clients with PXES(http://pxes.sourceforge.net/) This thin client allows the user to connect with many different types of Application Servers. The features include: Supported

More information

1Z Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions

1Z Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions 1Z0-460 Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-460 Exam on Oracle Linux 6 Implementation Essentials.. 2 Oracle 1Z0-460 Certification

More information

Fedora Core: Made Simple

Fedora Core: Made Simple Table of Contents Installing Fedora...2 Before you begin...2 Compatible Hardware...2 Minimum Requirements...2 Disk Space Requirements...2 Help! Booting from the CD ROM Drive Fails!...2 Installing Fedora

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

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

XenServer. Unattended Installation. Christian Ferber Systems Engineer Datacenter & Cloud. December 25th, 2012

XenServer. Unattended Installation. Christian Ferber Systems Engineer Datacenter & Cloud. December 25th, 2012 XenServer Unattended Installation Christian Ferber Systems Engineer Datacenter & Cloud December 25th, 2012 Disclaimer This slide deck has been created as part of a project implementation It does not guarantee

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

Telestra Diskless Installation Guide. Document: DOC-TEL-DSLS-IG-C-0

Telestra Diskless Installation Guide. Document: DOC-TEL-DSLS-IG-C-0 Advanced Simulation Technology inc. 500A Huntmar Park Drive Herndon, Virginia 20170 USA Tel. (703) 471-2104 Fax. (703) 471-2108 www.asti-usa.com Telestra Diskless Installation Guide Document: DOC-TEL-DSLS-IG-C-0

More information

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

Clearswift SECURE  Gateway Installation & Getting Started Guide. Version Document Revision 1.0 Clearswift SECURE Email Gateway Installation & Getting Started Guide Version 4.6.0 Document Revision 1.0 Copyright Revision 1.0, April, 2017 Published by Clearswift Ltd. 1995 2017 Clearswift Ltd. All rights

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

Redhat Basic. Need. Your. What. Operation G U I D E. Technical Hand Note template version

Redhat Basic. Need. Your. What. Operation G U I D E. Technical Hand Note template version Redhat Basic Operation G U I D E What Need Your www.next-asia.com Readhat Basic Operation Guide, Prepared by Nazmul Khan Page 1 of 43 Redhat Basic Operation Guide RedHat Installation Guide... 2 Installation...

More information

Installing the Operating System or Hypervisor

Installing the Operating System or Hypervisor If you purchased E-Series Server or NCE Option 1 (E-Series Server or NCE without a preinstalled operating system or hypervisor), you must install an operating system or hypervisor. This chapter includes

More information

CCNA Discovery Server Live CD v2.0

CCNA Discovery Server Live CD v2.0 CCNA Discovery Overview CCNA Discovery Server Live CD v2.0 Information and Installation Instructions The Discovery Server Live CD provides all of the network services necessary to support the CCNA Discovery

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

"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

INSTALLING INSTALLING INSTALLING

INSTALLING INSTALLING INSTALLING Architect Version 6.0 Update 2 Release Notes April 2012 0898600-6.0-2 READ READ READ ME ME ME BEFORE BEFORE BEFORE INSTALLING INSTALLING INSTALLING THIS THIS THIS PRODUCT PRODUCT PRODUCT Disclaimer The

More information

Linux Cluster Manager User s Guide

Linux Cluster Manager User s Guide Linux Cluster Manager User s Guide 0898016-210 June 2009 Copyright 2009 by Concurrent Computer Corporation. All rights reserved. This publication or any part thereof is intended for use with Concurrent

More information

D Using HP SIM and vmedia for Provisioning OpenVMS

D Using HP SIM and vmedia for Provisioning OpenVMS D Using HP SIM and vmedia for Provisioning OpenVMS HP Systems Insight Manager (HP SIM) allows you to provision OpenVMS to one or more Integrity servers in the network. This means that, from a single location

More information

Disaster Recovery. Boot using USB Drive. Create a Bootable USB Drive Using Compressed Boot File

Disaster Recovery. Boot using USB Drive. Create a Bootable USB Drive Using Compressed Boot File The topics covered in this chapter are: Boot using USB Drive, on page 1 Boot Using ipxe, on page 3 Boot using USB Drive The bootable USB drive is used to re-image the router for the purpose of system upgrade

More information

Different ways to use Kon-Boot

Different ways to use Kon-Boot Robert Alaniz 28 July 2014 Different ways to use Kon-Boot This project consists of different ways of using Kon-Boot to bypass authentication on a windows machine. Kon-Boot is a toll that can bypass the

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

Grub Manual Install Ubuntu Without >>>CLICK HERE<<<

Grub Manual Install Ubuntu Without >>>CLICK HERE<<< Grub Manual Install Ubuntu 10.04 Without 1st option : get a disk including Boot-Repair, 2nd option : install Boot-Repair in Ubuntu or when you can't boot Windows after installing Ubuntu, or when GRUB is

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

Installing Red Hat Enterprise Linux Advanced Server 3 on IBM ~ BladeCenter JS20

Installing Red Hat Enterprise Linux Advanced Server 3 on IBM ~ BladeCenter JS20 Advanced Server 3 on IBM BladeCenter JS20 October 19, 2004 Written By: Erik Salander IBM Corporation salander@us.ibm.com Contributor: Kevin McCombs IBM Corporation mccombsk@us.ibm.com Page 2 of 35 I. Introduction...

More information

Installing or Recovering Cisco APIC Images

Installing or Recovering Cisco APIC Images Installation s, on page 1 Usage Guidelines, on page 2 Conditions for Recovering or Installing Cisco APIC Software Image, on page 5 Installing Cisco APIC Software Using a PXE Server, on page 5 Installing

More information

George Beech Stack Exchange,

George Beech Stack Exchange, George Beech Stack Exchange, Inc. @GABeech Image Based Deployment Ghost RDS CloneZilla Manual Do I need to go into this? Really? Kickstart/Seeding/etc Image Based Deployment Updates SSID Drivers HALs Windows

More information

SA3 E7 Advanced Linux System Administration III Internet Network Services and Security

SA3 E7 Advanced Linux System Administration III Internet Network Services and Security SA3 E7 Advanced Linux System Administration III Internet Network Services and Security Synopsis: This is a fast paced, level 3, advanced class for experienced administrators of Linux based hosts on a network

More information

System Requirements ENTERPRISE

System Requirements ENTERPRISE System Requirements ENTERPRISE Hardware Prerequisites You must have a single bootstrap node, Mesos master nodes, and Mesos agent nodes. Bootstrap node 1 node with 2 cores, 16 GB RAM, 60 GB HDD. This is

More information

Architect Userís Guide

Architect Userís Guide Architect Userís Guide 0898601-7.5 September 2018 Copyright 2018 by Concurrent Real-Time, Inc. All rights reserved. This publication or any part thereof is intended for use with Concurrent Real-Time products

More information

Integrating ovirt, Foreman And Katello To Empower Your Data-Center Utilization

Integrating ovirt, Foreman And Katello To Empower Your Data-Center Utilization Integrating ovirt, Foreman And Katello To Empower Your Data-Center Utilization Yaniv Bronhaim Senior Software Engineer, Maintainer @ RHEV Red Hat IL, Raanana August 2015, CloudOpen Europe Agenda Introducing

More information

Perform Disaster Recovery

Perform Disaster Recovery The topics covered in this chapter are: Boot using USB Drive, page 1 Boot Using ipxe, page 3 Boot using USB Drive The bootable USB drive is used to re-image the router for the purpose of system upgrade

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

Contents at a Glance COPYRIGHTED MATERIAL. Introduction...1 Part I: Becoming Familiar with Enterprise Linux...7

Contents at a Glance COPYRIGHTED MATERIAL. Introduction...1 Part I: Becoming Familiar with Enterprise Linux...7 Contents at a Glance Introduction...1 Part I: Becoming Familiar with Enterprise Linux...7 Chapter 1: Getting Acquainted with Enterprise Linux...9 Chapter 2: Exploring the Desktop...17 Chapter 3: Putting

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