/usr/share/subiquity/installer/README.md is in subiquity-tools 0.0.29.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | Getting Started
---------------
Grab a copy of curtin (for some conversion tools):
sudo apt-get install bzr
mkdir -p ~/download
cd ~/download
bzr branch lp:curtin
Create the image
----------------
Generate the install image from subiquity's root directory:
installer/geninstaller -a amd64 -b grub2 -r zesty -l
(-l means build the current working tree into a deb and install that,
leaving it out will install subiquity from the archive).
Run the installer
-----------------
# generate target device
qemu-img create -f raw target.img 10G
# run installer
sudo qemu-system-x86_64 -m 1024 -enable-kvm \
-hda installer.img -hdb target.img \
-serial telnet:127.0.0.1:2445,server,nowait \
-monitor stdio
Boot the installed image
------------------------
sudo qemu-system-x86_64 -m 1024 -enable-kvm \
-hda target.img \
-serial telnet:127.0.0.1:2445,server,nowait
|