Setting up a Linux PXE server and integrating clients
|
|
|
- Sheena Perkins
- 9 years ago
- Views:
Transcription
1 Setting up a Linux PXE server and integrating clients HOWTO Abstract... 2 Text conventions... 2 Required hardware and software... 2 For the PXE server... 2 For the clients... 2 Overview... 3 pxelinux functionality... 3 Kickstart files... 4 Setting up the PXE server... 4 Integrating the clients... 7 Troubleshooting Bootcfg usage information Potential kickstart installation issues Additional configuration for ProLiant BL10e servers Appendix a: glossary Appendix b: sample scripts and files For the PXE server NFS configuration file syslinux.cfg files import-to-tftpboot.sh file For the clients dhcpd.conf script syslinux.cfg script Kickstart file For more information Call to action... 21
2 Abstract This HOWTO describes how to set up a Red Hat Linux 8.0 Pre-boot execution Environment (PXE) server and how to integrate a Red Hat Linux 8.0 client with the PXE server. Additionally, this HOWTO explains how to use Linux images on a PXE server and how to configure a client for PXE. Text conventions This HOWTO uses the following conventions to distinguish elements of text: Menu options, Command names, Dialog box names, and Screen names User input (commands to be typed) Scripts and files These elements appear in initial capital letters and may appear in boldface for emphasis. User input appears in a different typeface and is highlighted in gray. The content of the scripts and files appears in a different typeface and is highlighted in gray with a border around it. Required hardware and software Boldface text should be located on one line instead of on multiple lines as shown in the samples; formatting in this document prohibits correct usage. Comments included in the scripts are listed in blue font for explanation purposes and marked with comment markers (#) so that the code can be copied and pasted. This section describes hardware and software requirements mandated for PXE functionality. For the PXE server Setting up a Linux PXE server requires an HP ProLiant server and two key software components that provide basic PXE functionality: (1) the DHCP server and (2) the TFTP server. Although the DHCP server and the TFTP server components can reside on separate servers, this paper describes a method that places these components on the same server. For a PXE server to be useful, additional server software is required such as NFS, FTP, HTTP, and Samba. Pxelinux allows further configuration based on a directory and configuration files versus modifying the dhcpd.conf file directly when using the DHCP and TFTP server components alone. The additional file sharing services can reside on the same PXE server or can exist as a separate server on the network. The described method in this paper places NFS and FTP on the same PXE server. The PXE portion will be handled by the syslinux package. The Syslinux 1.75 package included in Red Hat Linux 8.0 is broken; therefore, version 2.00 or later should be used. For the clients The clients must have a PXE-enabled network interface controller (NIC). To integrate the clients with the PXE server, this paper describes a process using a kickstart file. 2
3 Overview This section presents an overview for using the pxelinux process and kickstart files. pxelinux functionality The pxelinux functionality occurs in this order: The client machine boots to PXE which requests a DHCP address. The DHCP server responds with an IP address for the client machine along with the address of a TFTP server and a filename to load (pxelinux.0) from that server. The client then downloads pxelinux.0 from the specified TFTP server and executes it. pxelinux.0 then searches the pxelinux.cfg directory on the server for a configuration file that matches the IP address of the machine. If no matches are found, it will attempt to load a file called default. The configuration file loaded by pxelinux.0 will have instructions on what to do next. Some of the choices include boot to local hard drive, boot to an image file (floppy image), or load vmlinuz and initrd.img. The client searches for a configuration file with the IP address converted to HEX (for example, becomes AC3001FD). In this example, the client looks for the following configuration file names and uses the first one it finds. AC3001FD AC3001F AC3001 AC300 AC30 AC3 AC A default This process allows IP groups to be used. The examples in this paper use AC3001FD, the most specific choice. 3
4 Kickstart files An automated installation of Red Hat Linux is performed through a process called kickstart. A kickstart file is a collection of instructions and keywords that the Red Hat Linux installer, called anaconda, uses to perform an unattended install. Often a kickstart file is created by using the program called redhat-config-kickstart or ksconfig which is used by older versions of Red Hat Linux. Anaconda also places a kickstart file in the /root directory upon installation completion. Note For more information about anaconda, visit A kickstart file, commonly labeled ks.cfg, may be placed in several locations so that anaconda can find it. These locations include being placed on an NFS server, FTP server, HTTP server, floppy, CD- ROM, or hard drive. The method described in this HOWTO places the ks.cfg file on an NFS server. The method described in this HOWTO assumes that the syslinux/pxelinux package will be used on Red Hat Linux 8.0 to allow the clients to boot to PXE. Setting up the PXE server Follow these steps to set up the PXE server: 1. Install Red Hat Linux 8.0 on a suitable HP ProLiant server. Note Refer to the ProLiant server certification matrix, hplinuxcert.html, to determine a suitable server for Red Hat Linux Install the following packages: Table 1. Recommended packages Package name dhcp-3.0pl1-9.i386.rpm tftp-server i386.rpm tftp i386.rpm Requirements Required Required Optional 3. Set up the date and time on the PXE server. 4. Set up the PXE server hostname. Use this method for a static IP address when modifying /etc/hosts: localhost.localdomain localhost pxe1.pxe.net pxe1 Use this method for a dynamic IP address when modifying /etc/hosts: pxe1.pxe.net localhost.localdomain localhost pxe1 After updating /etc/hosts, run the hostname command to change the hostname: hostname pxe1.pxe.net 4
5 Edit the /etc/sysconfig/network as follows: Static: NETWORKING=yes HOSTNAME="pxe1.pxe.net" Dynamic: NETWORKING=yes HOSTNAME="pxe1.pxe.net" DHCP_HOSTNAME="pxe1.pxe.net" 5. Set up the DHCP service. A sample /etc/dhcpd.conf configuration file is located at /usr/share/doc/dhcp- 3.0pl1/dhcpd.conf.sample. Copy this sample to /etc/dhcpd.conf. If more than one network card resides in the DHCP server, HP recommends specifying which interfaces the DHCP server will use. Edit /etc/sysconfig/dhcpd by adding the appropriate interface to the DHCPDARGS= line. The entry in /etc/sysconfig/dhcpd should appear as follows: DHCPDARGS=eth0 Run the following command to ensure that the DHCP service will be started at each boot: chkconfig --level 345 dhcpd on 6. Configure xinetd and TFTP services. At this point, the TFTP server should be installed. Enable the TFTP server by using the chkconfig command line utility as follows: chkconfig tftp on Ensure that xinetd is enabled, as TFTP is started and stopped by xinetd, using the following command: chkconfig --level 345 xinetd on Notify xinetd that the TFTP service has been enabled. Use the following command: service xinetd restart 7. Add the next-server and filename options into the /etc/dhcpd.conf files. To accomplish this task, add the following to the global section: if substring (option vendor-class-identifier, 0, 9) = "PXEClient" { filename "pxelinux.0"; next-server ; } 8. Optional step: Assign fixed addresses to each of the clients. The benefit is having the ability to access the clients with the same IP address. The alternative s to use name resolution such as DNS: host e75d { } hardware ethernet 00:08:02:46:e7:5d; fixed-address ; 5
6 In this example, the server was named according to its MAC address. Its MAC address is listed along with the fixed IP address we want associated with it. 9. After modifying /etc/dhcpd.conf, notify the dhcpd server of the changes by using the following method or a similar one: service dhcpd restart Warning Do not run a new DHCP server on a network with an existing one unless you have configured the network for multiple DHCP servers. Running two or more DHCP servers on the same network without taking special precautions causes conflicts. 10. Download and install Syslinux 2.00 or later as follows: Note HP recommends using Syslinux 2.00 or later due to major bug fixes in this version. Red Hat Linux 8.0 includes Syslinux Download and unpack the latest syslinux package from Install the syslinux package using this command: rpm -huv syslinux i386.rpm Install pxelinux.0 and memdisk into the /tftpboot directory: mkdir -p /tftpboot/pxelinux.cfg cp -a /usr/lib/syslinux/pxelinux.0 /tftpboot/ cp -a /usr/lib/syslinux/memdisk /tftpboot/ 11. Enable NFS on the server as follows: Edit /etc/exports by adding the following line: /var/ftp/pub *(ro,insecure,sync,all_squash) Enable the NFS server on boot by using the following commands: chkconfig --level 345 portmap on chkconfig --level 345 nfslock on chkconfig --level 345 nfs on Start or restart the NFS service by using the following commands: service portmap restart service nfslock restart service nfs restart 6
7 Integrating the clients The following examples explain how to get a Red Hat Linux 8.0 client setup and integrated into the PXE server. When using other Linux distributions, slight changes to the commands and scripts are required. 1. Populate the NFS server with Linux installation files using either of the following methods: Method 1: storing the Linux installation media as ISO images To use RHupdate with this method, place the updates.img file next to the ISO images. To perform an ISO image dump, use the following commands: Note It is not necessary to mount each CD after insertion. The dd command is not affected by the act of mounting the CD. mkdir -p /var/ftp/pub/rhl80 cd /var/ftp/pub/rhl80 insert CD #1 dd if=/dev/cdrom of=psyche-i386-disc1-boxset.iso insert CD #2 dd if=/dev/cdrom of=psyche-i386-disc2-boxset.iso insert CD #3 dd if=/dev/cdrom of=psyche-i386-disc3-boxset.iso Method 2: unpacking the Linux installation media to a directory To use RHupdate with this method, place the updates.img file image in the RedHat/base/ directory. Alternatively, you may place the contents of the updates.img file image into the RedHat/RHupdates/ directory of the unpacked source media. Unpacking the source media will also allow for updated RPMs. Since Red Hat Linux 7.2 and Red Hat Linux Advanced Server 2.1 cannot use ISO images to perform installs, the contents of the CDs must be unpacked to a directory on the server to enable the automated installs described in this document. To unpack the base media to a directory, choose one of the following options: Option 1: dumping from ISO images mkdir -p /var/ftp/pub/rhl72/i386 cd /var/ftp/pub/rhl72 for X in enigma-i386-disc1.iso enigma-i386-disc2.iso; do done mkdir $X.dir; mount $X $X.dir -o loop; (cd $X.dir && tar -cf -.) (cd i386 && tar -xvf -); umount $X.dir; rmdir $X.dir; 7
8 Option 2: dumping directly from CD-ROM mkdir -p /var/ftp/pub/rhl72/i386 Use the following command for each binary CD: (cd /mnt/cdrom && tar -cf -.) (cd /var/ftp/pub/rhl72/i386 && tar -xvf -); eject 2. Place the kickstart file on the NFS server along with Red Hat Linux 8.0 ISO images 1, 2, and 3 to ensure that the kickstart installation can operate correctly. mkdir /var/ftp/pub/kickstart cp ks.cfg /var/ftp/pub/kickstart/rhl80-ks.cfg Note A kickstart file is generated after installation or the redhat-configkickstart program may be run. Older versions of Red Hat Linux use ksconfig. The kickstart file provided in Appendix b has been tested and works with Red Hat Linux 7.2, Red Hat Linux 7.3, Red Hat Linux 8.0, and Red Hat Enterprise Linux 2.1. If a required keyword for the specified Linux distribution is missing, the installation will stop and wait for user input at the console. 3. Populate the PXE server with items to boot from. In this client example, we will perform a Red Hat Linux 8.0 installation. Most files will be placed into the /tftpboot directory and syslinux.cfg will be placed in /tftpboot/pxelinux.cfg. With the Red Hat 8.0 Linux CD-ROM and bootnet.img floppy inserted, perform the following commands: cp -a /mnt/cdrom/images/bootnet.img /tftpboot/rhl80-bootnet.img cd /mnt/floppy cp -a syslinux.cfg /tftpboot/pxelinux.cfg/rhl80-syslinux.cfg All other files are stored in the /tftpboot directory: cp -a initrd.img /tftpboot/rhl80-initrd.img cp -a vmlinuz /tftpboot/rhl80-vmlinuz for X in *.msg; do cp -a $X /tftpboot/rhl80-$x; done The initrd.img and vmlinuz can also be copied from the /images/pxeboot directory of Red Hat Linux 8.0 CD #1 rather than from the bootnet floppy. The vmlinuz from /images/pxeboot is an exact copy of the one on the bootnet floppy. The initrd.img file contains more drivers than the bootnet.img file. Ensure that the permissions on /tftpboot allow anonymous access by using this command: chmod -R o=rx /tftpboot 4. Edit the /tftpboot/pxelinux.cfg/rhl80-syslinux.cfg configuration file so that the filenames match those in the /tftpboot directory. The following commands used in vi are helpful to make these global changes in the rhl80-syslinux.cfg file: :%s/ \(.*msg\)/ rhl80-\1/g :%s/kernel \(.*vmlinuz\)/kernel rhl80-\1/ :%s/\(initrd=\)\(.*initrd.img\)/\1rhl80-\2/ 8
9 Once the previous steps are complete, the following directory structure will exist: /tftpboot/ /tftpboot/pxelinux.0 /tftpboot/rhl80-vmlinuz /tftpboot/rhl80-initrd.img /tftpboot/pxelinux.cfg/ /tftpboot/pxelinux.cfg/rhl80-syslinux.cfg Note Run the "import-to-tftpboot.sh" script located in Appendix b to automatically accomplish the tasks described this step. 5. A configuration file must be created to control what happens when the PXE client boots to PXE. As an example, we will create the rhl80-kickstart-install-syslinux.cfg file by copying it from rhl80- syslinux.cfg using the following command: cp -a rhl80-syslinux.cfg rhl80-kickstart-install-syslinux.cfg A sample of the file contents is located in Sample 2 of Appendix b. 6. Create a soft link from the syslinux.cfg file to the IP address of the client server, which is converted to HEX. In this example, the client server, , converted to HEX is AC3001FD. Use these commands to create the soft link: cd /tftpboot/pxelinux.cfg ln -s rhl80-kickstart-install-syslinux.cfg AC3001FD Another acceptable soft link to create is one named "default." The use of the default entry affects any clients that may PXE boot and do not have a specific HEX IP address entry in /tftpboot/pxelinux.cfg. In the following example, we demonstrate linking the sample "localbootsyslinux.cfg" to a soft link called "default": cd /tftpboot/pxelinux.cfg ln -s localboot-syslinux.cfg default A sample syslinux.cfg is included in Appendix b. 7. Boot the client to PXE to begin kickstart installation. PXE is often the fourth choice in the boot order list. If no bootable media is found in the floppy, CD-ROM drive, or hard drive, it will default to PXE. If the hard drive has been partitioned, it may no longer default to PXE even though the hard drive is not bootable. In some large cluster farms, boot to PXE is moved to the top of the boot order. Then the PXE server, through the use of soft links in the /tftpboot/pxelinux.cfg directory, controls whether the client loads a new operating system or if the client boots to its hard drive. 9
10 Alternative methods include: Press F12 during POST to boot to PXE. If the HP Server Management Drivers and Agents (hpasm) are loaded on the server being reprovisioned, set the server to a one-time PXE boot by typing: /sbin/bootcfg -P This setting allows for changes in the boot process without updating the BIOS or the need to press F12. Note For bootcfg usage information, refer to the "Troubleshooting" section. Troubleshooting This section contains usage information, potential issues, and additional configuration steps to aid in troubleshooting. Bootcfg usage information Usage commands for bootcfg include: [root root]# bootcfg -? USAGE: bootcfg [-F -C -H -T] [-S -Q -R -P] [-r -d -n -b] -D Set Defaults everywhere -F Floppy first -C CD ROM first -H Harddrive first -T Tape first -S one time boot to system configuration utility -Q one time boot to quick configuration utility -R one time boot to RBSU -P one time boot to PXE -r one time remote -d one time remote dial out -n one time remote network -b bypass F1/F2 Potential kickstart installation issues Kickstart installations might fail due to the client system being unable to mount the NFS directory that contains the ks.cfg file. The client will report "cannot find ks.cfg" on the console to the user. This error can be viewed on the NFS server by looking at /var/log/messages or virtual terminal #3 on the client. 10
11 Receiving an unauthenticated mount in which the server cannot do a reverse lookup on client IP to compare it to the "permissions" string in /etc/exports is also possible. To correct this issue, either add the client IPs to the /etc/hosts of the NFS server or define them in DNS for proper reverse lookups. Add appropriate lines to the dhcpd.conf file to notify the client about the location where DNS and gateway services reside. option domain-name "testnetwork.com"; option domain-name-servers , ; option routers ; A faster verification alternative is to use the IP subnet information in /etc/exports instead of "*" so that the server will not try the reverse lookup. Additional configuration for ProLiant BL10e servers The following changes are recommended to optimize the serial port on ProLiant BL10e servers: 1. Display the Linux boot sequence on the serial port and on screen #1. Add "console=ttys0, console=tty1" to the boot loader. 2. Force a safe probe on startup of the serial port. Change "SAFE=no" to "SAFE=yes" in /etc/sysconfig/kudzu. 3. Display the login prompt on the serial port. Add "s0:12345:respawn:/sbin/agetty ttys0 vt100" to /etc/inittab. 4. Allow root to login on the serial port. Add "ttys0" to /etc/securetty. To automate the above process, place the following script in the %post section of the kickstart file: ## ## Configure LILO/GRUB to show Linux Boot Sequence on both the Serial ## Console (ttys0) and Screen #1 (tty1) ## if [ -f /etc/lilo.conf ]; then DEFAULT=`cat /etc/lilo.conf grep default` mv /etc/lilo.conf /etc/lilo.conf.sav cat /etc/lilo.conf.sav awk "{gsub(\"$default\",\"$default\nappend=\\\"console=ttys0, console=tty1\\\"\"); print}" >/etc/lilo.conf fi /sbin/lilo if [ -f /boot/grub/grub.conf ]; then mv /boot/grub/grub.conf /boot/grub/grub.conf.sav cat /boot/grub/grub.conf.sav awk '{if ($1 ~ /kernel/){print $0 " console=ttys0, console=tty1"} else {print}}' > /boot/grub/grub.conf fi ## ## Do KUDZU serial fix by making serial port "safe" (SAFE=yes) ## mv /etc/sysconfig/kudzu /etc/sysconfig/kudzu.sav cat /etc/sysconfig/kudzu.sav sed -e 's/^[ss][aa][ff][ee]=.*/safe=yes/' > /etc/sysconfig/kudzu ## 11
12 ## Show login prompt on serial port ## mv /etc/inittab /etc/inittab.sav cat /etc/inittab.sav awk '{gsub("6:2345:respawn:/sbin/mingetty tty6","6:2345:respawn:/sbin/mingetty tty6\ns0:12345:respawn:/sbin/agetty ttys0 vt100"); print}' >> /etc/inittab ## ## Allow root to login on the serial port ## cat /etc/securetty grep "^ttys0" >/dev/null echo ttys0 >> /etc/securetty 12
13 Appendix a: glossary In this glossary, terms are listed alphabetically with detailed descriptions for each entry. Table 3. Glossary terms 1 Term Dynamic Host Configuration Protocol (DHCP) Dynamic IP Address Fixed IP Address IP Address Conflict Media Access Control (MAC) Address Static IP Address Definition DHCP is a protocol used for assigning dynamic IP addresses to a device on a network. DHCP simplifies network administration because the software keeps a log of IP addresses it hands out dynamically. By this action, it allows an administrator to add computers to a network without the hassle of manually assigning a unique IP address each time. A dynamic IP address is an address dynamically assigned by the DHCP server. As the name implies, dynamic addressing most often uses a different IP address each time the computer or network device requests an IP address from the DHCP server. The computer or network device will use this assigned IP address until it is turned off. A fixed IP address takes the best attributes of both the dynamic and static IP address schemes. In this case, the DHCP service supplies the server with an address that never changes. This assignment eliminates the need to manually configure a static IP address on the server and allows that same network device to be moved easily into an environment that participates in DHCP addresses. This flexibility allows a network device with a fixed IP address to participate on a network using a dynamic IP address without additional configuration on the client side. It is important for each computer or network device participating on a single network to have distinct IP addresses. When two computers or network devices have the same IP address then a conflict is created and one or both systems will have network problems. Automatically configuring IP addresses through a single DHCP server aids in preventing IP address conflicts. The MAC address is your network card's unique hardware number. This MAC address usually is not used directly. It is often paired with an IP address which is then used to communicate with that computer or network device. A static IP address is a permanent IP address (an address that does not change). This address is manually configured, for example, it is not distributed by a DHCP server. The network administrator usually controls which static IP addresses are in use and who is able to use them. 1 Networking Glossary of Terms. U.S. Robotics. 25 July < 13
14 Appendix b: sample scripts and files For the PXE server This section includes sample configuration files as a reference for the PXE server examples provided throughout the HOWTO. NFS configuration file A typical NFS configuration file, /etc/exports, is similar to the following. /var/ftp/pub *(ro,insecure,sync,all_squash) To start the NFS server at the next boot, type the following lines at the command prompt: chkconfig --level 345 nfs on chkconfig --level 345 nfslock on chkconfig --level 345 portmap on To start the services now instead of rebooting, type the following lines at the command prompt: service nfs start service nfslock start service portmap start syslinux.cfg files Four sample syslinux.cfg files are provided in this section. Sample 1 This script, filename "rhl80-interactive-install-syslinux.cfg," performs an interactive installation, requiring user interaction. # Install Red Hat 8.0 default linux prompt 1 timeout 600 display rhl80-boot.msg F1 rhl80-boot.msg F2 rhl80-options.msg F3 rhl80-general.msg F4 rhl80-param.msg F5 rhl80-rescue.msg F7 rhl80-snake.msg label linux... kernel rhl80-vmlinuz append initrd=rhl80-initrd.img lang= devfs=nomount ramdisk_size=
15 Sample 2 This script, filename "rhl80-kickstart-install-syslinux.cfg," performs an automated installation using a kickstart file. # Install Red Hat 8.0 via kickstart file default ks prompt 1 timeout 20 display rhl80-boot.msg... label ks kernel rhl80-vmlinuz append ks=nfs: :/var/ftp/pub/kickstart/rhl80-ks.cfg initrd=rhl80- initrd.img lang= devfs=nomount ramdisk_size=9216 ksdevice=eth0... Sample 3 This script, filename "rhl80-bootnet.img-syslinux.cfg," explains how to use a boot image to the server. # Boot to a disk image (bootnet.img) default rhl80-bootnet.img prompt 1 timeout label rhl80-bootnet.img... kernel memdisk append initrd=rhl80-bootnet.img Sample 4 This script, filename "localboot-syslinux.cfg," tells the server to boot locally. # Perform a local boot default localboot prompt 1 timeout label localboot... localboot 0 15
16 import-to-tftpboot.sh file The "import-to-tftpboot.sh" script imports a bootnet.img floppy into the /tftpboot directory and automatically renames the files based on the given name. #!/bin/sh TFTPBOOTDIR=/tftpboot PXELINUXDIR=$TFTPBOOTDIR/pxelinux.cfg TMPDIR=/tmp if [ -z "$2" ]; then echo This code will unpack a floppy image from location SOURCE into /tftpboot and will rename using the specified name; echo Usage: $0 SOURCE NAME; exit; fi SOURCE=$1 NAME=$2 # Create pxelinux.cfg directory if it does not exist. if [! -d $PXELINUXDIR ]; then mkdir -p $PXELINUXDIR; fi copyfiles() { # This section copies and renames all files except syslinux.cfg. FILES=`ls grep -v syslinux.cfg` for X in $FILES; do cp -a $X $TFTPBOOTDIR/$NAME-$X; done # This section copies/renames syslinux.cfg and modifies it to point # correctly to the other copied/renamed files. for X in `ls grep syslinux.cfg`; do sh <<-EOF > $PXELINUXDIR/$NAME-$X `echo -ne "cat $X sed" for Y in $FILES; do echo -ne " -e \"s,${y}$\ ${Y}[^=],$NAME-&,g\"" done` EOF done } # This section attempts to locate the specified files for copying purposes. if [ -d $SOURCE ]; then if [ `ls $SOURCE wc -l` -eq 0 ]; then # If SOURCE dir is empty, then attempt to mount that dir. mount grep $SOURCE { mount $SOURCE >/dev/null 2>&1 && { cd $SOURCE copyfiles cd / umount $SOURCE 16
17 } { echo Unable to mount that directory, no files found } } else fi else # SOURCE dir is not empty, try to copy those files. cd $SOURCE copyfiles # This is not a directory. FILETYPE=`file $SOURCE` case "$FILETYPE" in # "x86 boot sector, system SYSLINUX, FAT (12 bit)" *boot\ sector,\ system\ SYSLINUX,\ FAT\ *) *) mkdir $TMPDIR/tmp.dir.$$; mount $SOURCE $TMPDIR/tmp.dir.$$ -o loop; cd $TMPDIR/tmp.dir.$$; copyfiles; cd /; umount $TMPDIR/tmp.dir.$$; rmdir $TMPDIR/tmp.dir.$$; ;; echo Sorry, image type not found; ;; esac fi For the clients Sample scripts and files to be used as guidelines for creating your own are provided in this appendix. These scripts and files are a necessary part of the PXE installation process. dhcpd.conf script A typical "dhcpd.conf" script for Red Hat Linux 8.0 is similar to the following: ddns-update-style interim; ignore client-updates; # This is an upstream network required entry for multiple networks. subnet netmask { } # Pxe Network subnet netmask { # --- default gateway option routers ; 17
18 option subnet-mask ; option nis-domain "domain.org"; option domain-name "domain.org"; option domain-name-servers , ; # PXE-specific configuration directives global section if substring (option vendor-class-identifier, 0, 9) = "PXEClient" { filename "pxelinux.0"; next-server ; } option time-offset ; # Central Standard Time option ntp-servers ; # option netbios-name-servers ; # --- Selects point-to-point node (default is hybrid). # --- Don't change this unless you understand Netbios very well # option netbios-node-type 2; range dynamic-bootp ; default-lease-time 21600; max-lease-time 43200; host e75d { hardware ethernet 00:08:02:46:e7:5d; fixed-address ; # PXE-specific configuration directives client specific section next-server ; filename "pxelinux.0"; } host 00508bea8000 { hardware ethernet 00:50:8b:ea:80:00; fixed-address ; # etherboot-specific configuration directives next-server ; filename "etherboot.img"; } } 18
19 syslinux.cfg script A typical "syslinux.cfg" file for Red Hat Linux 8.0 is similar to the following. This script controls which kernel, initrd, and kickstart files are used to boot the PXE clients. default ks prompt 1 timeout 20 display rhl80-bootnet.img-boot.msg F1 rhl80-bootnet.img-boot.msg F2 rhl80-bootnet.img-options.msg F3 rhl80-bootnet.img-general.msg F4 rhl80-bootnet.img-param.msg F5 rhl80-bootnet.img-rescue.msg F7 rhl80-bootnet.img-snake.msg label ks kernel rhl80-bootnet.img-vmlinuz append ks=nfs: :/var/ftp/pub/kickstart/rhl80-ks.cfg initrd=rhl80-bootnet.img-initrd.img lang= devfs=nomount ramdisk_size=9216 ksdevice=eth0 # Perform a boot to local media; for example, exit pxe. label localboot localboot 0 # Boot to an image file such as a boot floppy. label rhl80-bootnet.img Kickstart file kernel memdisk append initrd=rhl80-bootnet.img A typical "kickstart" file generated by Kickstart Configurator is similar to the following. This script controls how a Red Hat Linux installation is performed. # Merged from Red Hat Linux versions: 7.2, EL 2.1, 7.3, 8.0. # Change the line nfs --server dir /var/ftp/pub/rh73 # to reflect the correct installation directory # for the OS version being installed. # Also, you may need to update the %packages section. # System language lang en_us # The following are the language modules to install. langsupport --default=en_us langsupport en_us # System keyboard keyboard us # System mouse mouse --emulthree genericps/2 # System timezone 19
20 timezone --utc America/Chicago # Root password rootpw password # Reboot after installation. reboot # Use text mode install. text # Install Red Hat Linux instead of performing an upgrade. install # Use NFS installation media. nfs --server dir /var/ftp/pub/rh73 # System bootloader configuration bootloader --location=mbr # Clear the Master Boot Record. zerombr yes # Clear all partitions from the disk. clearpart --all --initlabel # Disk partitioning information part /boot --fstype ext3 --size 75 --asprimary part swap --recommended part / --fstype ext3 --size grow # Use DHCP networking. This is only effective if ks.cfg is local. # network --bootproto=dhcp --device=eth0 # System authorization information auth --useshadow --enablemd5 # Firewall configuration firewall --disabled # Do not configure the X Window System. skipx # Package install information. This is for a minimal install. %packages --resolvedeps wget openssh openssh-clients openssh-server nfs-utils portmap #@Everything %post Note To perform a full package install, uncomment line in the kickstart file. 20
21 For more information For additional information, refer to the resources detailed below. Table 4. Web resources Resource description Linux for ProLiant website contains software, hardware certification matrices, and documentation for ProLiant servers running Linux. Red Hat Documentation & Online Resources the same guides that come with Red Hat's boxed products. The Official Red Hat Linux Customization Guide contains information on how to customize your Red Hat Linux system to fit your needs. Red Hat Tips, FAQS and HOWTOs contain documents to help you install, set up, and troubleshoot your Linux system. Web address Call to action To help us better understand and meet your needs for ISS technology information, please evaluate this paper by completing the short survey at Note: This URL will be active through 30 November Please send questions and further comments about this paper to: 2003 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. TC030904HT, 09/2003
Table 1-1. PXE Server Side Requirements
pplications Note Setting Up Linux PXE on Server and Client Systems 1 Prerequisites The example in this document was performed on a PXE server running RHEL5.2 64-bit with DHCP, TFTP, and NFS servers running
Installing RHEL 6.x from beginning to end using PXE and Kickstart
Red Hat Enterprise Linux 6.x - small tutorial - part 3 author: Alexandre Borges revision: A website: http://alexandreborges.org Installing RHEL 6.x from beginning to end using PXE and Kickstart Introduction
TECHNICAL HOWTO. Imaging Linux systems with hardware changes. author: [email protected]
TECHNICAL HOWTO Imaging Linux systems with hardware changes using Mondo Rescue Last modified: author: [email protected] ABSTRACT This document describes the process to create and deploy system
Parallels Cloud Server 6.0
Parallels Cloud Server 6.0 Installation Using PXE August 27, 2014 Copyright 1999-2014 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200
SUSE Linux Enterprise Server 11 SP2 for UEFI Clients
Best Practices White Paper Enterprise Linux SUSE Linux Enterprise Server 11 SP2 for UEFI Clients Table of Contents page SUSE Linux Enterprise Server 11 SP2 and PXE Boot for UEFI Clients... 2 UEFI IPv4
DKTCOMEGA AONode Management Module User Documentation
AONode Management Module User Documentation Table of content Introduction...3 The boot process of the AONode...4 DHCP Settings...5 TFTP Settings...8 Custom configuration...9 Device script commands...10
VERITAS NetBackup Bare Metal Restore 6.0
VERITAS NetBackup Bare Metal Restore 6.0 System Administrator s Guide for UNIX, Windows, and Linux N15279C September 2005 Disclaimer The information contained in this publication is subject to change without
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
Building a diskless Linux Cluster for high performance computations from a standard Linux distribution
Building a diskless Linux Cluster for high performance computations from a standard Linux distribution Stefan Böhringer Institut für Humangenetik Universitätsklinikum Essen April, 7 th, 2003 Abstract This
Redhat 6.2 Installation Howto -Basic Proxy and Transparent
Redhat 6.2 Installation Howto -Basic Proxy and Transparent This is a guide document although very detailed in some sections. It assumes you have a have an idea about installing RH and working with Linux.
HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide
HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management
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
MODULE 1. INSTALLING SUSE LINUX ENTERPRISE SERVER 1. BASIC NOTIONS ON INSTALLATION PROCEDURES
MODULE 1. INSTALLING SUSE LINUX ENTERPRISE SERVER 1. BASIC NOTIONS ON INSTALLATION PROCEDURES General matters System Start-Up for Installation Insert the first SUSE Linux Enterprise CD or the DVD into
Setting up your K12LTSP or LTSP loadbalancing
Setting up your K12LTSP or LTSP loadbalancing and dhcp failover. What you'll need: Two servers running K12LTSP or LTSP in single NIC mode A good solid high speed connection (gigabit recommended) An external
OS Installation Guide Red Hat Linux 9.0
OS Installation Guide Red Hat Linux 9.0 C o n t e n t s Contents 3 About This Guide 5 1 Planning Your Installation 7 Requirements 7 2 Installing Red Hat 9.0 Error! Bookmark not defined. What s Next? 19
Configuring DHCP Tags for HP Device Manager
Configuring DHCP Tags for HP Device Manager Demonstrates how to configure DHCP tags Technical white paper 2 Copyright 2013 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered
Procedure to Create and Duplicate Master LiveUSB Stick
Procedure to Create and Duplicate Master LiveUSB Stick A. Creating a Master LiveUSB stick using 64 GB USB Flash Drive 1. Formatting USB stick having Linux partition (skip this step if you are using a new
Red Hat Linux 7.2 Installation Guide
Red Hat Linux 7.2 Installation Guide Ryan Spangler [email protected] http://ceut.uww.edu April 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002
HP Device Manager 4.6
Technical white paper HP Device Manager 4.6 Installation and Update Guide Table of contents Overview... 3 HPDM Server preparation... 3 FTP server configuration... 3 Windows Firewall settings... 3 Firewall
TCP/IP Configuration and DHCP Configuration For Red Hat Linux 9 (RHL9) Presentation Report
TCP/IP Configuration and DHCP Configuration For Red Hat Linux 9 (RHL9) Presentation Report Course: CS 5780 - System Administration Instructed By: Dr. Sanjiv Bhatia Included: Executive Summary The OSI Protocol
Deskpool Quick Start. Version: V2.1.x. Based on Hyper-V Server 2012 R2. Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com)
Deskpool Quick Start Based on Hyper-V Server 2012 R2 Version: V2.1.x Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com) Last updated on March 18, 2015 Copyright Shenzhen Jieyun Technology Co., Ltd.
Implementing Red Hat Enterprise Linux 6 on HP ProLiant servers
Technical white paper Implementing Red Hat Enterprise Linux 6 on HP ProLiant servers Table of contents Abstract... 2 Introduction to Red Hat Enterprise Linux 6... 2 New features... 2 Recommended ProLiant
Installing the Operating System or Hypervisor
Installing the Operating System or Hypervisor If you purchased E-Series Server Option 1 (E-Series Server without preinstalled operating system or hypervisor), you must install an operating system or hypervisor.
HP ilo mobile app for Android
HP ilo mobile app for Android User Guide Abstract The HP ilo mobile app provides access to the remote console and scripting features of HP ProLiant servers. HP Part Number: 690350-003 Published: March
HP One-Button Disaster Recovery (OBDR) Solution for ProLiant Servers
Reference guide HP One-Button Disaster Recovery (OBDR) Solution for ProLiant Servers Reference guide Contents One button disaster recovery (OBDR) 2 Requirements 2 HP tape drive and server support 2 Creating
Home Linux Networking Lab (202) This Howto shows how to recreate the CIS Lab environment at home.
Liinux Howttos Home Liinux Nettworrkiing Lab ((202)) CIIS 192 Sprriing 2010 Home Linux Networking Lab (202) This Howto shows how to recreate the CIS Lab environment at home. Supplies: A fast PC 2 GB memory
Microsoft Windows Compute Cluster Server 2003 Getting Started Guide
Microsoft Windows Compute Cluster Server 2003 Getting Started Guide Part Number 434709-003 March 2007 (Third Edition) Copyright 2006, 2007 Hewlett-Packard Development Company, L.P. The information contained
FOG Guide. IPBRICK International. July 17, 2013
FOG Guide IPBRICK International July 17, 2013 1 Copyright c IPBRICK International All rights reserved. The information in this manual is subject to change without prior notice. The presented explanations,
Instructions for installing Microsoft Windows Small Business Server 2003 R2 on HP ProLiant servers
Instructions for installing Microsoft Windows Small Business Server 2003 R2 on HP ProLiant servers integration note Abstract... 2 Installation requirements checklists... 3 HP ProLiant server checklist...
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
Yosemite Server Backup Installation Guide
Yosemite Server Backup Installation Guide Part number: First edition: October, 2010 Legal and notice information Copyright 2004, 2012 Barracuda Networks, Inc. Under copyright laws, the contents of this
Getting started with ARM-Linux
Getting started with ARM-Linux www.embeddedarm.com (480)-837-5200 usa Connecting serial communications and power (JP2 must be installed to enable console) An ANSI terminal or a PC running a terminal emulator
Operating System Installation Guidelines
Operating System Installation Guidelines The following document guides you step-by-step through the process of installing the operating systems so they are properly configured for boot camp. The document
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,
Plexxi Control Installation Guide Release 2.1.0
Plexxi Control Installation Guide Release 2.1.0 702-20002-10 Rev 1.2 February 19, 2015 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX (7539) www.plexxi.com Notices The information
HP VMware ESXi 5.0 and Updates Getting Started Guide
HP VMware ESXi 5.0 and Updates Getting Started Guide Abstract This guide is intended to provide setup information for HP VMware ESXi. HP Part Number: 616896-002 Published: August 2011 Edition: 1 Copyright
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...
Parallels Virtuozzo Containers 4.7 for Linux
Parallels Virtuozzo Containers 4.7 for Linux Deploying Clusters in Parallels-Based Systems Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd.
Enterprise Reporting Server v3.5
Enterprise Reporting Server v3.5 Administrator s Guide January 2001 Edition 2001 WebTrends Corporation Disclaimer WebTrends Corporation makes no representations or warranties with respect to the contents
Installation Guide to the Snare Server Installation Guide to the Snare Server
Installation Guide to the Snare Server InterSect Alliance International Pty Ltd Page 1 of 19 Intersect Alliance International Pty Ltd. All rights reserved worldwide. Intersect Alliance Pty Ltd shall not
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,
Wavelink Avalanche Mobility Center Linux Reference Guide
Wavelink Avalanche Mobility Center Linux Reference Guide Version 5.0 amc-rg-linux-50-20100621 Revised 21/6/2010 ii Copyright 2010 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985
PC Deployment over network using PXE environment. Workshop
PC Deployment over network using PXE environment Workshop September 2005 Table of Contents 1.0 Introduction... 4 1.1. Terminology... 4 1.2 Overview... 4 2.0 Background... 5 2.1 The Issue... 5 2.2 The Solution...
HP Compaq Thin Client Imaging Tool HP Compaq Thin Client t5000 Series
thin clients april 2003 instructions. HP Compaq Thin Client Imaging Tool HP Compaq Thin Client t5000 Series Table Of Contents Table Of Contents... 1 Abstract... 2 Introduction... 2 System Requirements...
Using PXE Technology on Compaq ProLiant Servers
White Paper December 2001 Prepared by: Industry Standard Server Group Compaq Computer Corporation Contents Introduction... 3 Importance of PE... 3 System Configuration Support... 4 Configuring the Target
HOWTO: Set up a Vyatta device with ThreatSTOP in router mode
HOWTO: Set up a Vyatta device with ThreatSTOP in router mode Overview This document explains how to set up a minimal Vyatta device in a routed configuration and then how to apply ThreatSTOP to it. It is
[HOW TO RECOVER AN INFINITI/EVOLUTION MODEM IDX3.0.0.0] 1
[HOW TO RECOVER AN INFINITI/EVOLUTION MODEM IDX3.0.0.0] 1 How to Recover an infiniti/evolution Modem Software Reference idx 3.0.0.0 (12.0.0.0) Updated: November 17 th 2011 Overview Recovery Procedures
MORE Kickstart Tips & Tricks. Chip Shabazian Vice President / Consultant II Bank of America June 23 rd, 2010
MORE Kickstart Tips & Tricks Chip Shabazian Vice President / Consultant II Bank of America June 23 rd, 2010 What is kickstart Kickstart is an automated method to build servers that utilize the anaconda
Novell Identity Manager Resource Kit
AUTHORIZED DOCUMENTATION Installation Guide for SUSE Linux Enterprise Server 10 SP2 Novell Identity Manager Resource Kit 1.2 August 17, 2009 www.novell.com Identity Manager Resource Kit 1.2 Installation
How To Use 1Bay 1Bay From Awn.Net On A Pc Or Mac Or Ipad (For Pc Or Ipa) With A Network Box (For Mac) With An Ipad Or Ipod (For Ipad) With The
1-bay NAS User Guide INDEX Index... 1 Log in... 2 Basic - Quick Setup... 3 Wizard... 3 Add User... 6 Add Group... 7 Add Share... 9 Control Panel... 11 Control Panel - User and groups... 12 Group Management...
HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer
Survey Utility HP Industry Standard Servers June 2004 HP Insight Diagnostics Online Edition Technical White Paper Featuring Survey Utility and IML Viewer Table of Contents Abstract Executive Summary 3
Closing the Loop: Automating Server Setups. Vanessa Vasile, InMotion Hosting
Closing the Loop: Automating Server Setups Vanessa Vasile, InMotion Hosting Teeny bit about me... I'm currently a senior system administrator with InMotion Hosting, and I've been there about four years.
THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering
THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering ENG 224 Information Technology Laboratory 6: Internet Connection Sharing Objectives: Build a private network that
Configuring Virtual Blades
CHAPTER 14 This chapter describes how to configure virtual blades, which are computer emulators that reside in a WAE or WAVE device. A virtual blade allows you to allocate WAE system resources for use
LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011
LOCKSS on LINUX Installation Manual and the OpenBSD Transition 02/17/2011 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 7 BIOS Settings... 10 Installation... 11 Firewall
Deploying Windows Streaming Media Servers NLB Cluster and metasan
Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................
Microsoft BackOffice Small Business Server 4.5 Installation Instructions for Compaq Prosignia and ProLiant Servers
Integration Note October 2000 Prepared by OS Integration Engineering Compaq Computer Corporation Contents Introduction...3 Requirements...3 Minimum Requirements...4 Required Information...5 Additional
Sun Fire X4500 Server Linux and Solaris OS Installation Guide
Sun Fire X4500 Server Linux and Solaris OS Installation Guide Sun Microsystems, Inc. www.sun.com Part No. 819-4362-17 March 2009, Revision A Submit comments about this document at: http://www.sun.com/hwdocs/feedback
HP ProLiant Cluster for MSA1000 for Small Business... 2. Hardware Cabling Scheme... 3. Introduction... 3. Software and Hardware Requirements...
Installation Checklist HP ProLiant Cluster for HP StorageWorks Modular Smart Array1000 for Small Business using Microsoft Windows Server 2003 Enterprise Edition November 2004 Table of Contents HP ProLiant
What is included in the ATRC server support
Linux Server Support Services What is included in the ATRC server support Installation Installation of any ATRC Supported distribution Compatibility with client hardware. Hardware Configuration Recommendations
Create a virtual machine at your assigned virtual server. Use the following specs
CIS Networking Installing Ubuntu Server on Windows hyper-v Much of this information was stolen from http://www.isummation.com/blog/installing-ubuntu-server-1104-64bit-on-hyper-v/ Create a virtual machine
Aspen Cloud Server Management Console
Aspen Cloud Server Management Console Management of Cloud Server Resources Power All Networks Ltd. User Guide June 2011, version 1.1.1 Refer to ICP V1.1 PAGE 1 Table of Content 1. Introduction... 4 2.
Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software
Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software Installation and integration guide Abstract... 2 Introduction... 2 Application overview... 2 Application configuration...
Consistent Device Naming on HP ProLiant Gen8 servers
Technical white paper Consistent Device Naming on HP ProLiant Gen8 servers Red Hat Enterprise Linux 6.1 and later Table of contents Introduction... 2 Red Hat Enterprise Linux 6.1 and biosdevname... 4 SMBIOS
LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013
LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...
HP Online ROM Flash. User Guide
HP Online ROM Flash User Guide Part number: 216315-010 Tenth edition: March 2006 Legal notices Copyright 2000, 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject
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.
Virtual Appliance for VMware Server. Getting Started Guide. Revision 2.0.2. Warning and Disclaimer
Virtual Appliance for VMware Server Getting Started Guide Revision 2.0.2 Warning and Disclaimer This document is designed to provide information about the configuration and installation of the CensorNet
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,
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.
Introduction to Operating Systems
Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these
Veritas Cluster Server
APPENDIXE This module provides basic guidelines for the (VCS) configuration in a Subscriber Manager (SM) cluster installation. It assumes basic knowledge of the VCS environment; it does not replace the
Linux FTP Server Setup
17Harrison_ch15.qxd 2/25/05 10:06 AM Page 237 C H A P T E R 15 Linux FTP Server Setup IN THIS CHAPTER FTP Overview Problems with FTP and Firewalls How to Download and Install VSFTPD How to Get VSFTPD Started
UltraBac Documentation. UBDR Gold. Administrator Guide UBDR Gold v8.0
UltraBac Documentation UBDR Gold Bare Metal Disaster Recovery Administrator Guide UBDR Gold v8.0 UBDR Administrator Guide UBDR Gold v8.0 The software described in this guide is furnished under a license
Dell EqualLogic Red Hat Enterprise Linux 6.2 Boot from SAN
Dell EqualLogic Red Hat Enterprise Linux 6.2 Boot from SAN A Dell EqualLogic best practices technical white paper Storage Infrastructure and Solutions Engineering Dell Product Group November 2012 2012
CommandCenter Secure Gateway
CommandCenter Secure Gateway Quick Setup Guide for CC-SG Virtual Appliance and lmadmin License Server Management This Quick Setup Guide explains how to install and configure the CommandCenter Secure Gateway.
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
HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide
HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide Product overview... 3 Vulnerability scanning components... 3 Vulnerability fix and patch components... 3 Checklist... 4 Pre-installation
HP Thin Client Imaging Tool
HP Thin Client Imaging Tool Table of Contents: Abstract... 1 Introduction... 1 System Requirements... 1 Software... 1 Hardware... 1 Getting Started... 2 Formatting a USB Flash Device... 3 Unpacking the
2. Boot using the Debian Net Install cd and when prompted to continue type "linux26", this will load the 2.6 kernel
These are the steps to build a hylafax server. 1. Build up your server hardware, preferably with RAID 5 (3 drives) plus 1 hotspare. Use a 3ware raid card, 8000 series is a good choice. Use an external
Implementing Failover Capabilities in Red Hat Network Satellite
Implementing Failover Capabilities in Red Hat Network Satellite By Vladimir Zlatkin Abstract This document will help you create two identical Red Hat Network (RHN) Satellites functioning in failover mode.
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
Linux Recovery Utility for HP Integrity Servers
Linux Recovery Utility for HP Integrity Servers User's Guide *5991 5300* HP Part Number: 5991 5300 Published: April 2006 Edition: 1 Copyright 2006 Hewlett-Packard Development Company, L.P. Confidential
Pwn Plug Community Edition 1.1 Installation Guide
Copyright 2012 Rapid Focus Security, LLC, DBA Pwnie Express. Revision 5.21.2012 Pwn Plug Community Edition 1.1 Installation Guide Contents: Legal stuff Release 1.1 Features Download the installation package
VMware Auto Deploy Administrator s Guide
VMware Auto Deploy Administrator s Guide VMware Auto Deploy Administrator s Guide You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The
Dell UPS Local Node Manager USER'S GUIDE EXTENSION FOR MICROSOFT VIRTUAL ARCHITECTURES Dellups.com
CHAPTER: Introduction Microsoft virtual architecture: Hyper-V 6.0 Manager Hyper-V Server (R1 & R2) Hyper-V Manager Hyper-V Server R1, Dell UPS Local Node Manager R2 Main Operating System: 2008Enterprise
HOMEROOM SERVER INSTALLATION & NETWORK CONFIGURATION GUIDE
HOMEROOM SERVER INSTALLATION & NETWORK CONFIGURATION GUIDE Level 1, 61 Davey St Hobart, TAS 7000 T (03) 6165 1555 www.getbusi.com Table of Contents ABOUT THIS MANUAL! 1 SYSTEM REQUIREMENTS! 2 Hardware
DeployStudio Server Quick Install
DeployStudio Server Quick Install v1.7.0 The DeployStudio Team [email protected] Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched
OnCommand Performance Manager 1.1
OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501
Backup and Recovery Procedures
CHAPTER 10 This chapter provides Content Distribution Manager database backup and ACNS software recovery procedures. This chapter contains the following sections: Performing Backup and Restore Operations
HP CloudSystem Enterprise
HP CloudSystem Enterprise F5 BIG-IP and Apache Load Balancing Reference Implementation Technical white paper Table of contents Introduction... 2 Background assumptions... 2 Overview... 2 Process steps...
How to Configure an Initial Installation of the VMware ESXi Hypervisor
How to Configure an Initial Installation of the VMware ESXi Hypervisor I am not responsible for your actions or their outcomes, in any way, while reading and/or implementing this tutorial. I will not provide
HP A-IMC Firewall Manager
HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this
Universal Management Service 2015
Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,
for the VaultDR Online Plugin for Linux-based Operating Systems
Redefining Data Protection Title Page User s Guide for the VaultDR Online Plugin for Linux-based Operating Systems NVE 7009-36B 01/19-07 Copyrights NetVault:Backup - User s Guide for the VaultDR Online
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
Hands-on Lab Exercise Guide
CloudPlatform 4.5 Training Hands-on Lab Exercise Guide Mike Palmer June 2014 1 Table of Contents Table of Contents... 2 Overview... 4 Scenario... 9 Lab Preparation...10 Attach XenCenter to Your XenServers...10
