语境
- Centos 7
- 快速启动
问题
根据 RH 文档:
--nochroot:
Allows you to specify commands that you would like to run outside of the chroot environment.
The following example copies the file /etc/resolv.conf to the file system that was just installed.
%post --nochroot
cp /etc/resolv.conf /mnt/sysimage/etc/resolv.conf
%end
问题是:我应该将文件存储resolv.conf
在 ISO 树中的什么位置以便 kickstart 访问它?
答案1
您可以将文件放在任何地方。光盘的根目录将安装到/mnt/install/source
。因此,如果您在根目录下创建了一个名为的目录myfiles
,则可以/mnt/install/source/myfiles/resolv.conf
在 Kickstart 中引用。