0

Is auto installation through preseed files still present in Ubuntu 20.04 ?

Simon Sudler
  • 3,931
  • 3
  • 21
  • 34
XaTriX
  • 13
  • 1
  • 3

1 Answers1

0

Yes. If you are asking about the desktop.

Only the server version started using a new method (18.04 got a new installer for the server version and we lost preseeding back then). The desktop, I hope, will follow this new method as it would make it 100% compatible with our installer. [More on this][1].

Rinzwind
  • 299,756
  • Yes i was talking about desktop :) – XaTriX May 12 '20 at 11:45
  • Got this using url preseed : https://imgur.com/AbIE2JJ

    grub.cfg

    menuentry "Auto Install Ubuntu Server From Preseed" {
      set gfxpayload=keep
      linux /casper/vmlinuz boot=casper url=http://192.168.100.111/imt.seed auto=true priority=critical locale=fr_FR  quiet ---
      initrd  /casper/initrd
    }
    

    And isolinux/txt.cfg

    label  auto-install
      menu label ^Auto Install Ubuntu Server From Preseed
      kernel /casper/vmlinuz
      append  boot=casper auto url=http://192.168.100.111/imt.seed vga=788 initrd=/casper/initrd auto=true priority=critical locale=fr_FR  quiet ---
    
    – XaTriX May 12 '20 at 11:46
  • Looks good. The errors look like those are related to it being an installer and not an installed system(?) – Rinzwind May 12 '20 at 11:56
  • Don't know what that's mean ;D – XaTriX May 12 '20 at 13:43