On Mon, 3 Mar 2003, Lambert, Eric wrote: >The %post is the last section in my ks.cfg file, and looks like this: > >#Post-Install >%post --nochroot > >#Install and/or update RPMs >mkdir /mnt/a >mount 10.14.1.40:/local /mnt/a > >echo "Installing apt-get RPM..." >chroot /mnt/sysimage rpm -ivh >/mnt/a/rpms/apt-0.5.4cnc9-fr0.1.rh73.i386.rpm >echo "Done." The rpm command here won't see /mnt/a because you've chrooted to /mnt/sysimage. You're not doing anything apart from the mount which benefits from --nochroot, so I'd suggest something like this: %post --nochroot mkdir /mnt/sysimage/mnt/a mount 10.14.1.40:/local /mnt/sysimage/mnt/a %post rpm -ivh /mnt/a/rpms/apt*.rpm etc. You can move the mount inside the chroot'd %post if you like, but you might need the "nolock" mount option (check the list archives). Hope this helps, Phil