Purpose
I want to install Ubuntu Desktop 16.04.1 LTS completely unattended. Put ISO CD in and walk away.
Issues
- Boot parameters incorrect
- Questions still being asked and needing mouse clicks
- Convoluted answers using kickstart/preseed
- Documentation examples no working as stated, specifically from partman and ubunutu
I came across this post here and it was close to what I needed but didn't quite accomplish what I needed since it was for Ubuntu Server. The post suggests using a "non-graphical" Ubuntu install, but I couldn't find a non-graphical install for Ubuntu Desktop, which makes sense. I tried to adapt the steps and get it working for Ubuntu Desktop 16.04.1 LTS.
Documentation Used
I have used all the following resources...
Apparently I can't include all of my resources because askubuntu doesn't allow more than 2 links. Well that's not very helpful - so here is just a list:
- AskUbuntu
- Ubuntu install.en.pdf
- Preseed Examples
- Ubiquity Installer Documentation
- Partman Documentation and Examples
- Partition Recipe Explaination of the 3 numbers and their weighting
- A More Complex Preseed Example
Current Solution
I have currently created an unattended install, but am not sure if it is correct - meaning that I should have edited the isolinux/isolinux.cfg
There were many differences between the post I linked and the Ubuntu Desktop image. Here is my solution:
Step 1
Mounted Ubuntu ISO so that I can copy the contents to another directory and then edit the pertinent files.
mkdir -p /mnt/iso
mount -o loop ubuntu.iso /mnt/iso
Step 2
I then copied the ISO files to another directory for editing.
mkdir -p /opt/ubuntuiso
cp -rT /mnt/iso /opt/ubuntuiso
Step 3
I edited the isolinux/isolinux.cfg
file and replaced everything inside with the following:
default live-install
label live-install
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append file=/cdrom/ks.preseed auto=true priority=critical debian-installer/locale=en_US keyboard-configuration/layoutcode=us ubiquity/reboot=true languagechooser/language-name=English countrychooser/shortlist=US localechooser/supported-locales=en_US.UTF-8 boot=casper automatic-ubiquity initrd=/casper/initrd.lz quiet splash noprompt noshell ---
The append line is very long so for easy reading, here are all the options I used:
file=/cdrom/ks.preseed
auto=true
priority=critical
debian-installer/locale=en_US
keyboard-configuration/layoutcode=us
ubiquity/reboot=true
languagechooser/language-name=English
countrychooser/shortlist=US
localechooser/supported-locales=en_US.UTF-8
boot=casper
automatic-ubiquity
initrd=/casper/initrd.lz
quiet
splash
noprompt
noshell
I found that all these boot parameters were needed to get a completely unattended install. For Ubuntu Server, it may be different.
Step 4
I tried using and creating many preseed files, but I found the more complex, the more chance for errors. This is currently my simple preseed file that works with the above isolinux.cfg
file.
### Partitioning
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string regular
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-auto/choose_recipe select atomic
# This makes partman automatically partition without confirmation
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
# Locale
d-i debian-installer/locale string en_US
d-i console-setup/ask_detect boolean false
d-i console-setup/layoutcode string us
# Network
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
d-i netcfg/choose_interface select auto
# Clock
d-i clock-setup/utc-auto boolean true
d-i clock-setup/utc boolean true
d-i time/zone string US/Pacific
d-i clock-setup/ntp boolean true
# Packages, Mirrors, Image
d-i base-installer/kernel/override-image string linux-server
d-i base-installer/kernel/override-image string linux-image-amd64
d-i mirror/country string US
d-i mirror/http/proxy string
d-i apt-setup/restricted boolean true
d-i apt-setup/universe boolean true
d-i pkgsel/install-language-support boolean false
tasksel tasksel/first multiselect ubuntu-desktop
# Users
d-i passwd/user-fullname string Liason
d-i passwd/username string liason
d-i passwd/user-password-crypted password [crpyt 3]
d-i passwd/root-login boolean true
d-i passwd/root-password-crypted password [crypt 3]
d-i user-setup/allow-password-weak boolean true
# Grub
d-i grub-installer/grub2_instead_of_grub_legacy boolean true
d-i grub-installer/only_debian boolean true
d-i finish-install/reboot_in_progress note
# Custom Commands
I didn't include my encrypted passwords so if you try this preseed file, please change them to an encrypted password. Here is 3 ways to make the password.
Step 5
I created the new ISO from the the /opt/ubuntuiso/
directory.
mkisofs -D -r -V ATTENDLESS_UBUNTU -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o /opt/autoinstall.iso /opt/ubuntuiso
Step 6
I finally tested it with Virtualbox and it created a completely unattended install.
Questions
Should I have to be editing the isolinux/isolinux.cfg
file?
In the other post, it seems they are able to edit the isolinux/txt.cfg
file and are able to make that work. I tried for about an hour to use the isolinux/txt.cfg
, but it did not work.
Does anyone have a working more complex partman recipe which directly specifies partitions? Or a working LVM setup? I tried to use a simple LVM setup, but it after reboot it wouldn't boot and would just sit a black screen. Also, not a single one of the preseed examples I listed in the documentation worked either.
Thank you for any help.
Answering
I gave it some time from originally asking my question to see if there were any other solutions, but it looks like the solution I came up with while waiting is the only viable solution I've seen so far.
Misconception
Since this was the source of a lot of confusion, I will try to clear it up. It seems that some of the answers tried to use the Ubuntu 16 Server image when I was specifically trying to create an unattended Ubuntu 16 Desktop image install. The issue arises because of the implementation differences of d-i (debian installer) and ubiquity. Since the Server image will pay attention and use all of the d-i commands in the preseed file, most of the questions I asked are irrelevant to the Server image. However, due to the implementation of ubiquity as the installer of the Desktop image a lot of d-i commands are ignored and you are very limited and a lot of documentation is missing.
Documentation Links Found
Successful Process
Here is my process for successfully creating an unattended Ubuntu Desktop 16.04 LTS iso.
Mount Ubuntu ISO
You will need to mount the ISO files so that you can edit the pertinent files.
Copy ISO Files
We will need to copy the files in mounted ISO to a different directory so that we can edit them. Feel free to use any directory you like, I chose the /opt directory due to another how-to, but /tmp could just as easily be used.
Edit the txt.cfg File
Here we will edit the /opt/ubuntuiso/isolinux/txt.cfg file and customize our boot parameters to get a completely unattended install which will include a preseed file. Use any editor of your choice:
Please take note of a few things:
Use or Create a Preseed File
Use an already existing preseed file with caution! I have not found any that just work. This isn’t to say they don’t exist, I just didn’t find any with quite a bit of searching. There are many ways to configure a preseed file, but I found many options to be ignored, outlined in the Ubiquity Documentation I linked above and in the link for preseed/late_command vs ubiquity/success_command. I am including my simple working preseed file that works with the above txt.cfg file.
For netcfg/get_hostname string and netcfg/get_domain string you can put whatever you want it to be. I used unassigned-hostname and unassigned-domain since I will just change it later through a scripting process.
For any custom command you want to run after installation you need to use the:
Followed by any command you want to run. Pay attention to continuing the strings with ";\" and using the "/target" to change anything pertaining to the new system installed.
Please note these things as I left them in for illustrative purposes and they will likely be different in your preseed command.
Create New ISO
Create the ISO so you can test out your preseed file. If you use one or make your own, you will need to test it as this will LIKELY be the place your process will fail. I wrote a script for quick testing, but you could just point the preseed file at an http:// hosted preseed file and test very quickly that way.
Feel free to change the output name and the the directory in which you will save it.
Burn ISO
I would suggest testing on virtualbox or the like and once you have it working, then burn it to a DVD. You should now have a working unattended Ubuntu Desktop 16.04 LTS install DVD.
Feedback, Corrections, Errors
I wrote this all in one go and there may be errors, typos, or things that got messed up along the way. If anyone tries this, please let me know if you encounter an error in the process. And please remember that if you create your own preseed file, I will probably not be able to answer why your unattended install is broken and not working since ubiquity likes to ignore and not do certain things in the preseed file. I hope this helpful to someone.
Have a look at: https://github.com/core-process/linux-unattended-installation
This project provides all you need to create an unattended installation of a minimal setup of Linux, whereas minimal translates to the most lightweight setup - including an OpenSSH service and Python - which you can derive from the standard installer of a Linux distribution. The idea is, you will do all further deployment of your configurations and services with the help of Ansible or similar tools once you completed the minimal setup.
Great job Brandon Authier for your post and instructions, you helped me a lot.
I had one issue with your method though: I found out that after install finishes and PC reboots the GRUB hangs.
So I added to the ks.preseed the following:
This prevents crashing the grub install if you do not remove the USB stick. I got this from https://www.debian.org/releases/stable/example-preseed.txt
First off big thanks to Brandon for working through all this!! There are many, many preseed files on the web, showing the demand for skipping through the install screens.
With 20.04 out, I wanted to add a couple of notes from my tests. I'm using Kubuntu, but it looks identical for other Buntus:
default vesamenu.c32
todefault install
or what you name your menu entry, from here..still didnt work. BTW, there wasnt an entry for direct install in 20.04 originally.$1$D2dImaFN$AEBMU.qOh2qer0v/alzeH0
which is123
. You can plug that in as I did below. Dont forget to change it, though ;)!timeout 30
in isolinux/isolinux.cfg to 1maybe-ubiquity
toautomatic-ubiquity
. This is the installer. Possiblyonly-ubiquity
, more info here.partman-lvm/confirm string boolean true
. I didnt test Brandon's.A little more about installing to a raw partition via a VM.. Currently, the partition isnt recognized by gparted, but I can create a new VM in virt-manager and it boots. To install in virt-manager, just select ISO install, enter the partition /dev/sda# (or more safely: /dev/disk/by-id/...) into custom storage field. Click customize before install and you can add more hardware (button at bottom) for storage as IDE or SATA devices. I had to change the Direct Kernel Boot in Boot Options to add the paths and arg pointing to the correct UUID
BOOT_IMAGE=/boot/vmlinuz-4.18.0-14-generic root=UUID=...
, but that was after I had converted a VirtualBOX VDI, and this time it just boots without those fields. I need to test if it boots from harddisk via my boot manager, though. Also, I've heard Vagrant is a newer VM manager. Also, change Network in virt-manager to NAT.I am sorry to hear that my former method did not work. Fortunately, I found a script designed by Rinck Sonnenberg (netson) that would create unattended AMD64 ISOs of Ubuntu Server on GitHub, and I forked it. I then improved the script by adding the capability to create I386 ISOs. I also changed the OS from Ubuntu Server to Ubuntu Desktop. You need not visit the GitHub repository, you can just follow the below instructions.
Run these commands:
Sometimes
wget
is not available. If this is the case, usecurl
:If none of these work, download it and move it to your home folder.
You will then be asked which version of Ubuntu to install, and then the questions Ubuntu would ask if you were doing a manual install. The script will then download the Ubuntu ISO, and then apply the changes requested to it. You now have an ISO that is all ready for an unattended installation!
This should answer your question, because it worked just fine for me. It is also good that this method is far easier than my former answer. I hope it works for you as it did for us.
Thanks so much! This is the best answer I've found to this question so far. The automatic installation part all work like a charm. Just want to add to the part of creating new iso file. The iso image created with the command in your answer works perfectly for VM installation in my tests, but not for USB boot drives. The one I tried below works fine for creating USB installation media and boot in UEFI mode.
And to have the automation working in UEFI mode, you would also need to edit
boot/grub/grub.cfg
in the image pretty much the same way as theisolinux.cfg
mentioned in the answer above. Mine looks likewhere
custom.seed
is the preseed file I am using, and I put some of the locale settings into the preseed file instead of leaving them in this line.PLEASE DO NOT TRY THIS METHOD. DOES NOT WORK (UNLESS YOU ARE TRYING TO KILL TIME):
I have seen the answer to this all around. I will tell you the most common solution. I have never tried it before myself, so it may be outdated. I really do not understand the point of it, as just doing a manual install itself would be easier, but anyways...
Login as root or run
$ sudo su -
Download and mount the ISO. Do NOT do this manually from the Ubuntu website.
back up and move relevant files.
Block the language part of the GUI from appearing
Add a "Kickstart" file.
[OPTIONAL] Add packages for your installation
Or just search for it in your files and edit it directly. Add the
%packages
section, and put your packages under it.As I said, I have never done this myself, so if you had a configuration like the above, it may not actually install the LAMP stack and you would have to do it manually later.
Suppress questions with a "preseed" file.
Activate the files:
Then searching for:
You will then need to add
ks=cdrom:/ks.cfg
andpreseed/file=/cdrom/ks.preseed
. Remove wordsquiet
andvga=788
, so it looks like this:Now you can create the new answer:
And there you go!