Displaying 2 results from an estimated 2 matches for "swapgrow".
2011 Jul 18
2
Centos EL6 install issue
I am trying to install on a kvm virtual machine (host is C5).
At some point it stops with install error about cyrus-sasl.
I goto the /root/install.log in I have a number of errors about:
Installing libstdc++
warning %post scriplet failed. exit status 127
Install zlib
warning %post scriptlet failed. exit status 127
Install libxml2
warning %post scriplet failed. exit status 127
this continues for
2008 Aug 21
0
kickstart error on 5.2 exception
...]
then
HD1="/dev/hda"
HD1SHORT="hda"
HD2="/dev/hdb"
HD2SHORT="hdb"
fi
fi
## Determine size of harddisk
HD1SIZE=`fdisk -l $HD1 | grep Disk | cut -f 3 -d ' ' | cut -f 1 -d '.'`
if [ $HD1SIZE -eq 8 ]
then
ROOTSIZE=7000
SWAPSIZE=1000
SWAPGROW="--grow"
HOMEGROW=""
elif [ $HD1SIZE -le 20 ]
then
ROOTSIZE=10000
SWAPSIZE=1000
SWAPGROW=""
HOMEGROW="--grow"
else
ROOTSIZE=20000
SWAPSIZE=4000
SWAPGROW=""
HOMEGROW="--grow"
fi
##? Save partitioning information into file so inclu...