Navigation
Records in this category
- Fedora 11 upgradation
- up2date tutorial
- RHEL5 Kickstart installation using HTTP
- LastLog Editor - Unix LogFiles
- How to enable the fingerprint reader in Linux
- How to use gnome-volume-manager in Gentoo linux
- How to break raid 1 Mirror in Linux ?
- How to set up local exchange server to receive email from my domain or website ?
- How to change file permissions in cpanel to 4755
- How to edit the DNS entries in Cpanel (WHM)
- How to configure Linux and Samba with roaming profile suport for windows clients
- How to restrict "rm -rf *" command in Linux/Unix ?
- How do I change IP Address of my linux machine
- How to check what version of Linux installed in my machine
- How do you open a TCP Port in Debian Linux?
- How to force Ubuntu to re-detect and re-configure Graphics chipset?
- How to mount NTFS file system in Redhat linux 9.0
- How to utomatically mount cd/dvd and usb rhel5?
- How to copy LARGE files using linux cp command ?
- How to find If my linux OS is 64 bit or 32 bit system
- How to mount network drives using Pam_mount.conf.xml?
- How do I compile Squid?
- How to build Squid on various OS
- How do I start Squid?
- How do I start Squid automatically when the system boots?
- How do I tell if Squid is running?
- What are the squid command line options
- Can Squid benefit from SMP systems?
- Is it okay to use separate drives for Squid?
- How do I configure Squid without re-compiling it?
- What does the squid.conf file do?
- How do I join a cache hierarchy in Squid ?
- How do I register my cache with NLANR's registration service?
- Why my cache registration is not appearing in the Tracker database.
- How do I configure Squid to work behind a firewall?
- How do I configure Squid forward all requests to another proxy?
- What ''cache_dir'' size should I use?
- I'm adding a new cache_dir. Will I lose my cache?
- Squid and http-gw from the TIS toolkit.
- What is "HTTP_X_FORWARDED_FOR"? Why does squid provide it to WWW servers, and how can I stop it?
- Can Squid anonymize HTTP requests?
- Can I make Squid go direct for some sites?
- Can I make Squid proxy only, without caching anything?
- Can I prevent users from downloading large files using squid?
- How do I add default gateway in RedHat 7.2
- I can't upgrade any packages, run up2date or rpm. What is wrong?
- What is the safest way how to repair rpm database
- Okay, I am convinced that RPM-based package management is worth exploring, but my (Unix|Linux|BSD|whatever) distribution does not ship a version already pre-built which I can just install.I have looked everywhere, and it is just not available.What should I do?
- How to Disable Ctrl + ALT + Del restart
- How to recover root password in Linux
- What are the User and Group management commands in (RHEL/CentOS/Fedora)
- How to configure a samba file server in Linux
Tags
Sticky FAQs
Linux
RHEL5 Kickstart installation using HTTP
First of all, write a kickstart file. This can be generated using the “Kickstart Configurator” application (the package is system-config-kickstart*.rpm on disc5), or by hand.
Example:
install
graphical
url --url http://10.211.55.4/rhel5-install/
bootloader --location mbr --driveorder hda --append "rhgb quiet"
lang en_US.UTF-8
keyboard us
clearpart --all
autopart
rootpw --iscrypted 7o0ppLxgDVmGc
selinux --enforcing
firewall --enabled --ssh --http --smtp
key --skip
timezone --utc US/Eastern
reboot
%packages --ignoremissing
@ X Window System
Fire up a virtual machine and boot from disc1, at the command prompt type:
linux ks=http://ip-address/path-to-kickstart-file
then hit return. Obviously, this assumes that you have the above file available on an HTTP server somewhere, doesn’t matter what it’s called, I called mine kickstart.ks.
Note the third line in the Kickstart file. How the hell do you set that up? Read on.
What you have to do is mount via loopback each ISO image under the rhel5-install directory, which should be available over HTTP.
For each disc, do this:
mount -o loop /path-to-isos/rhel5-disc1.iso /path-to-http-server/public/rhel5-install/disc1
For some annoying reason, OS X doesn’t give you the option of a loopback device, so I did this on a seperate Linux VM using a very basic HTTP server called abyssws. Mounting via loopback, by the way, just helps save space as you’re mounting each disc “in place”, rather than copying over files and losing more valuable time. My ISO images were actually shared from OS X to Linux, where they were then mounted using the method above.
Tags: http, kickstart, linux, RHEL
Related entries:
- Fedora 11 upgradation
- up2date tutorial
- LastLog Editor - Unix LogFiles
- Statistical-Based Intrusion Detection
- Passive Network Traffic Analysis: Understanding a Network Through Passive Monitoring
Last update: 2009-09-03 19:37
AuthorLuke Francis
Revision: 1.3
You cannot comment on this entry