web-dev-qa-db-ja.com

UbiquityがUbuntuデスクトップのインストールをプレシードした後に自動電源オフする方法

公式にダウンロードできる通常のデスクトップAMD64 isoをリマスターしました。

次のisolinux/isolinux.cfgの内容で、preseedは正常に機能します。

default live
        label live
          menu label ^Start Kubuntu
          kernel /casper/vmlinuz.efi
          append  file=/cdrom/preseed/kubuntu.seed boot=casper noninteractive initrd=/casper/initrd.lz quiet splash --

しかし、結局のところ、事前にシードされたpoweroff(d-i debian-installer/exit/poweroff boolean true)は行われず、代わりにインストーラーが終了したときにデスクトップセッションが開始されます。

次のpreseedオプションのさまざまな組み合わせを設定しようとしましたが、常に最後にデスクトップセッションが開始されます。

d-i finish-install/reboot_in_progress note
d-i debian-installer/exit/halt boolean true
d-i debian-installer/exit/poweroff boolean true

情報:preseed/kubuntu.seedにすべてのpreseed行を挿入しました

2
GEO

さて、私は解決策を見つけました、次のキーが問題を解決します:

  ubiquity ubiquity/reboot boolean true
  ubiquity ubiquity/poweroff boolean true
4
GEO