similar to: kickstart post section

Displaying 20 results from an estimated 30000 matches similar to: "kickstart post section"

2010 Jan 12
2
kickstart %pre help on C5.4
Hey folks! I'm doing some %pre work for the first time in a very long time, and have been at this all day so far and still don't have anything sorted out properly. First I tried just doing some simple bash stuff like this %pre #!/bin/bash # stuff I reduced "stuff" down to basically a simple "select" statement to echo and read input, just for the sake of debugging.
2009 Apr 10
4
installing updates in post kickstart
I can do a yum update in my post kickstart (which is what I am doing now actually). However, I want to save network time at installations. If I copy down the files from centos/5.3/updates/x86_64/RPMS and place them in a directory local on my network, can I just "rpm -U /mnt/directory/updates/x86_64/RPMS*" in my post section? Assuming I have nfs mounted the directory of course...
2008 Feb 08
3
using nfs in kickstart post section
I am trying to mount an nfs drive in the post kickstart section. I am getting an error on "service nfs start" about cannot register service RPC What do I need to start first? jerry
2017 Aug 14
1
Custom kickstart post section on usb thumbdrive
Hi All, I am attempting to create a custom USB drive for kickstart install. I found this: 1. get the ISO file of CentOS 7 2. mount -o loop CentOS-7.0*.iso /mnt/ 3. mkdir -p /CentOS-7-ISO-respin/{CentOS-7-unpacked,CentOS-7-iso} 4. rsync -avz /mnt/ /CentOS-7-ISO-respin/RHEL-7-unpacked 5. put your kickstart file into
2008 Sep 04
5
kickstart debug
I am trying to do some new things with kickstart. I get a message that pops up "Could not allocate requested partitions" press OK to reboot. How do you go about debugging the kickstart file? How can I pop up information (in text mode) on the screen??? so I can see my values for my partitions. THanks, Jerry
2009 Dec 07
3
Kickstart wrong swap size
All machines kickstarted here consistently have a swap partition with the wrong size. According to the RHEL5 manual: | To determine the size of the swap partition automatically, use the | --recommended option: | | swap --recommended | | The recommended maximum swap size for machines with less than 2GB of RAM is | twice the amount of RAM. For machines with 2GB or more, this recommendation |
2008 Feb 08
2
kickstart install NVIDIA binary driver
Hi all, I am wanting to add to my working kickstart post section grabbing the NVIDIA binary and installing it. I can grab the file thats not the problem. I can use the --x-module-path to pass to the binary installer... however, How do I get the correct module path, kernels are added the the yum update, and a new one comes along and wish to account for that. What is the correct way to know which
2009 Jan 21
1
combining kickstart and DVD on a USB thumbdrive
Hi all, I am trying to find information on taking a DVD of centos 5.2 x86_64 and putting it AND my kickstart file on a USB8G thumbdrive. Note - I am not INSTALLING linux on the USB disk just trying to make installation media for it. I am not taking just the bootdisk.img file to make the USB bootable but the entire DVD content on the USB and my kickstart files. I'd like to just be able to
2008 Jun 25
4
How to install *all* packages via kickstart?
Hello, all, Since Fedora Core 4 I've not been able to just install everything. I would love to just be able to install all available packages for my architecture. What's the way to do this? Does someone have a list I can place in the packages section which is known to work and really get everything? thanks, greg
2009 Feb 16
2
kickstart driverdisk
Hi guys, I have my driverdisk created and the files are on a USB pendrive. How do I make the USB pendrive /dev/sdb and not /dev/sda??? I am wanting the installation to take place on sda and the driver disk to be sdb? My driver disk is a network driver disk, r8168. Jerry
2008 Mar 03
1
kickstart server variable name
Hi all, When your using kickstart and have a command like linux ks=http://MYIP/file.cfg Is there a variable in the post section that has the MYIP value? I want to nfs mount from the same server in the post section. THanks, Jerry
2011 Aug 31
2
Error installing latest CentOS kernel from %post section of kickstart
I'm running the command "yum -y update" from a script called from the the post section of my kickstart config file, and I get the following error: Installing : kernel-2.6.32-71.29.1.el6.i686 185/378 grubby fatal error: unable to find a suitable template After the install, if I log in to the system and remove that RPM and then re-install it with
2008 Feb 04
1
kickstart post install show in a window
Is there a way to get all the commands in the post install section from kickstart to show in a window on the X window screenas they are being executed? Jerry
2011 Jul 12
3
kickstart on 6
I am getting an error that "--depth does not take an option" on kickstart for 6.0 This is my line in kickstart (works for 5.0) xconfig --defaultdesktop=GNOME --depth=8 --resolution=640x480 --startxonboot Why would they change that or is it broken? Jerry
2008 Apr 30
4
kickstart question
I have a couple lines like: part / --ondisk=sda --fstype ext3 --size=20000 --asprimary part swap --ondisk=sda --size=4000 --asprimary part /home --ondisk=sda --fstype ext3 --size=1 --asprimary --grow in my kickstart file. Is there a way to have 1 kickstart file that works for hda and sda both??? So I would like to have 1 kickstart file that works for either a hda
2011 Jul 22
3
kickstart ksdevice in centos6
I have a line in my kickstart file (ksdevice) # Network information network --bootproto=dhcp --device=eth0 --onboot=on # Default network to boot ksdevice=eth0 # Auto reboot (to being next install faze) reboot However its still poping up and asking me eth0 or eth1 for install? Has this operation changed? Thanks, Jerry
2009 Sep 25
5
Centos 5.3 - kickstart configuration
Over the last couple of weeks, additional software was installed using the package manager. I would like to get a custom kickstart file created for our system. For this, I would like to get complete list of software installed so they may be add to the kickstart file package selection. Can anyone tell me if this can be done? If it can, please give me instructions? Finally, where on
2018 Aug 29
3
Kickstart file for software raid
I am using a kickstart file for CentOS 7 raid / --device=md0 --fstype="xfs" --level=1 --useexisting raid /home --noformat --device=md1 --level=1 --useexisting It is erroring out on the --useexisting. The exact text is: RAID volume "0" specified with "--useexisting" does not exist. What did I do wrong? Jerry
2019 Jul 09
2
adding uefi to kickstart CentOS 7
I am trying to add an efi partition to my working kickstart file. bootloader --driveorder=sda --append="rhgb quiet biosdevname=0 net.ifnames=0" clearpart --all --initlabel part / --ondisk=sda --fstype xfs --size=20000 --asprimary part swap --ondisk=sda --size=4000 --asprimary part /boot/efi --ondisk=sda --fstype efi --size=1000 --asprimary part /home --ondisk=sda
2009 Jun 12
3
kickstart question
Hi all, I have a kickstart file that works for /dev/sda. I now need to detect an HP server and use /dev/cciss instead of hard coded /dev/sda. How can I detect what the name of the device is and use /dev/cciss and not /dev/sda? Jerry