# Individual additional packages to install #d-i pkgsel/include string openssh-server build-essential ```
和
# This command is run just before the install finishes, but when there is # still a usable /target directory. You can chroot to /target and use it # directly, or use the apt-install and in-target commands to easily install # packages and run commands in the target system. #d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh ```
我如何决定是要使用preseed/late_command
版本还是pkgsel/include
版本?
我的问题apt-install 和 in-target apt-get install 有什么区别?是相关但互补的。我希望它是一个足够独立的问题。
使用预置文件安装系统时,其中一个步骤是定义安装组件的位置(例如 main、universe..)。这可以是官方或非官方的 CD、NFS 服务器、FTP 或 WEB 服务器。这只能进行一次。
包含软件包时,您需要确保所有软件包都存在于所选存储库中,存储库包含任何依赖项(如果需要)并受您的版本支持。如果其中一个软件包由于任何原因未能安装,您的自动安装可能会失败或停止。
Any
late_command
在您的系统安装完成并且您拥有正常工作的操作系统时执行。这使您可以像连接到机器一样执行常规命令。如果您仍然需要它,它也不会卸载您的安装介质。一个有用的与 apt-get 相关的后期命令的示例是
/etc/apt/sources.list
使用其他 repos、preform 编辑文件,apt update
然后apt-get
在安装操作系统时没有的软件包上使用。