我使用了启动器生成器工具为ubuntu安装生成了一个kickstart/preseed文件,该文件到目前为止运行良好。当我切换到使用一个非常弱的密码时,它就停止工作了,这导致它停止使用下面所示的另一个选项:

我需要添加什么到启动文件,以确认这是好的?
# Initial user
user ubuntu --fullname "" --password ubuntu发布于 2014-05-25 07:00:10
只需将以下行添加到启动文件中:
preseed user-setup/allow-password-weak boolean true
似乎可以用d-i代替preseed,以便正常的预先设定的指令能够工作,比如这里。
完全归功于“哈米”和“杰里米”,这个答案完全源自于此。我只想给像我这样的人找个“白痴指南”。
发布于 2014-04-14 19:32:49
Ubuntu预置文件
# The installer will warn about weak passwords. If you are sure you know
# what you're doing and want to override it, uncomment this.
d-i user-setup/allow-password-weak boolean true您需要明确地回答安装程序的问题。最后一行是你需要的。源代码文档在这里:链接到Ubuntu文档和示例
https://askubuntu.com/questions/440859
复制相似问题