Eu mesmo resolvi esse problema. A solução está alterando a linha repo
de
repo --name="CentOS" --baseurl=cdrom:sr0 --cost=100
para
repo --name="CentOS" --baseurl=file:///mnt/source --cost=100
Estou tentando instalar o CentOS 6.2 pelo kickstart, e estou usando o estoque mínimo de ISO e o anaconda-ks.cfg gerado automaticamente. Após a instalação terminar de particionar o disco rígido, recebo uma mensagem de erro dizendo "Não é possível ler os metadados do pacote", e o /tmp/anaconda.log tem a seguinte linha:
ERROR: Error downloading treeinfo file: [Error 14] PYCURL ERROR 6 - "Couldn't resolve host 'cdrom:sr0'"
Meu arquivo de kickstart:
# Kickstart file automatically generated by anaconda.
#version=DEVEL
install
cdrom
lang en_US.UTF-8
keyboard us
network --onboot no --device eth0 --noipv4 --noipv6
firewall --service=ssh
authconfig --enableshadow --passalgo=sha512
selinux --enforcing
timezone --utc America/New_York
bootloader --location=mbr --driveorder=sda --append=" rhgb crashkernel=auto quiet"
# The following is the partition information you requested
# Note that any partitions you deleted are not expressed
# here so unless you clear all partitions first, this is
# not guaranteed to work
clearpart --all --drives=sda
part /boot --fstype=ext4 --size=500
part pv.008002 --grow --size=1
volgroup VolGroup --pesize=4096 pv.008002
logvol / --fstype=ext4 --name=lv_root --vgname=VolGroup --grow --size=1024 --maxsize=51200
logvol swap --name=lv_swap --vgname=VolGroup --grow --size=512 --maxsize=1024
repo --name="CentOS" --baseurl=cdrom:sr0 --cost=100
%packages --nobase
@core
%end
Por favor ajude.
Eu resolvi o mesmo problema (no CentOS 6.5) removendo completamente o repo
linha do arquivo de kickstart.
Tags installation kickstart centos