我正在尝试构建一个无需人工干预的 oracle linux 8 虚拟机映像。目前我有一个带有liveimg --url=file:///images/install.img
设置的 kickstart 文件。我已将 boot.iso 设置为,并像这样/mnt
传递了参数。virt-install
sudo virt-install --name oracle8 --ram 4096 --disk /dev/xvdf --vcpus 2 --os-type linux --os-variant ol8.0 --network bridge=virbr0 --noreboot --graphics none --console pty,target_type=serial --location '/mnt/boot.iso' --extra-args 'inst.notmux inst.cmdline console=ttyS0,115200n8 inst.ks=file:/oracle.ks' --initrd-inject=/home/user/oracle.ks"
但是,我的安装因以下错误而失败。
Non interactive installation failed: file does not exist: file:///images/install.img
我的问题是如何获取images/install.img
fromboot.iso
并将其传递给liveimg --url
?主机上是否有我应该挂载它的特定目录位置?