Is it possible to skip user creation for Ubuntu Desktop?
I know this is possible for Ubuntu Server using following:
d-i passwd/make-user boolean false
I've tried the method above for Ubuntu Desktop with no success.
Is it possible to skip user creation for Ubuntu Desktop?
I know this is possible for Ubuntu Server using following:
d-i passwd/make-user boolean false
I've tried the method above for Ubuntu Desktop with no success.
Ubuntu desktop installs itself a bit different than Ubuntu server. Ubuntu server actually builds an OS from scratch with debians from a local or web repositories, and has many many install menus and parameters to configure. That is why you usually want to use a preseed file.
Official Ubuntu desktop uses a squashfs - an existing OS that was compressed and can be used for an easy clone install. Many preseed commands you know for Ubuntu servers are not used in the process.
If you would like to completely obsolete an installation part like this and not use OEM, you are going to need a custom made squash with your own parameters and components. Something that is not always easy to be done, but achievable.
I really like the explanation, and would take a deeper look at squashfs.
– user17378 Apr 08 '20 at 06:41
Packer
withpreseed.cfg
to build an image. If you have the opportunity to elaborate, or refer to sources about OEM install it would be much appreciated. – user17378 Apr 01 '20 at 11:23