kickstart instalação não assistida do OEL 6.5 sempre pede para verificar a mídia

2

Minha configuração é a seguinte: Host do Hyper-V 2012 R2 O convidado do Oracle Enterprise Linux 6.5 VM sendo instalado a partir de uma iso anexada à VM.

Eu criei um arquivo de kickstart que eu tenho em um compartilhamento NFS e quando eu inicializo o DVD virtual, pressiono a guia e acrescento ks = nfs: XXX.XXX.XXX.XXX: /OEL6.5/test3.ks

Ele carrega o arquivo e inicia a instalação, mas sempre pergunta se eu quero testar a mídia.

Eu não tenho "mediacheck" no meu arquivo de kickstart e, de acordo com o RHEL, se esta opção não estiver no arquivo ks, ela não deve solicitar a verificação da mídia.

link

Abaixo está o meu arquivo de kickstart

#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
# Firewall configuration
firewall --enabled --service=ssh
# Install OS instead of upgrade
install
# Use CDROM installation media
cdrom
# Root password
rootpw --plaintext password
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use graphical install
graphical
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# SELinux configuration
selinux --disabled
# Installation logging level
logging --level=info
# Reboot after installation
reboot
# System timezone
timezone  America/Phoenix
# Network information
network  --bootproto=dhcp --device=eth0 --onboot=on
# System bootloader configuration
bootloader --append="crashkernel=auto rhgb quiet" --location=mbr --driveorder="sda"
# Partition clearing information
clearpart --all  
# Disk partitioning information
part swap --fstype="swap" --size=8192
part /boot --fstype="ext4" --size=500
part / --fstype="ext4" --grow --size=1

%post --nochroot
######## Get repo and install Oracle preinstall then update ########
cd /etc/yum.repos.d/
wget http://public-yum.oracle.com/public-yum-ol6.repo
yum install oracle-rdbms-server-11gR2-preinstall
yum update



%packages
@base
@basic-desktop
@cifs-file-server
@client-mgmt-tools
@compat-libraries
@console-internet
@core
@debugging
@directory-client
@ftp-server
@general-desktop
@graphical-admin-tools
@hardware-monitoring
@internet-browser
@java-platform
@large-systems
@network-file-system-client
@network-tools
@nfs-file-server
@performance
@perl-runtime
@security-tools
@server-platform
@server-policy
@system-admin-tools
@x11
aide
arptables_jf
arpwatch
audispd-plugins
audit-viewer
certmonger
device-mapper-persistent-data
dos2unix
dropwatch
ebtables
firstaidkit-gui
genisoimage
krb5-workstation
logwatch
lslk
mtools
oddjob
pam_krb5
pax
perl-DBD-SQLite
policycoreutils-gui
python-dmidecode
sabayon
sabayon-apply
samba-winbind
setroubleshoot
sg3_utils
sgpio
squashfs-tools
system-config-kickstart
system-config-lvm
tigervnc-server
tuned-utils
unix2dos
wireshark
wireshark-gnome
wodim
x86info

%end
    
por Brad 08.04.2014 / 19:43

0 respostas