使用 libvirt,我可以将一个文件传递给 Ubuntu 的安装:
virt-install ... --initrd-inject preseed.cfg \
--initrd-inject ubuntu-sysprep.sh ..
然后进入安装过程的文件系统根目录。然后,在“/target”下有一个目标文件系统,我将在我提交的 init 脚本 preseed.cfg 的安装后部分中将此文件复制并运行到该文件系统。
d-i preseed/late_command string cp /ubuntu-sysprep.sh /target/ubuntu-sysprep.sh; in-target sh /ubuntu-sysprep.sh
现在,CentOS 8 中与 /target/ 路径等效的是什么,用于放置您想要与虚拟安装的系统一起发送的文件?