I got an Invalid CD-ROM error during install from my LiveISO-USB, so I selected Execute a shell
.
I created folder to mount my LiveISO-USB and mount it:
1 | mkdir /liveusb |
Mount the Ubuntu Server ISO to /cdrom
:
1 | mount -o loop /liveusb/boot/iso/ubuntu-14.04.1-server-amd64.iso /cdrom |
The installer continues for a bit, and gets stuck again.
I had to skip to Install GRUB...
to complete the installation.
On reboot, I created folder to mount my LiveISO-USB and mount it again:
1 | sudo mkdir /liveusb |
Mount the Ubuntu Server ISO to /media/cdrom
this time:
1 | sudo mount -o loop /liveusb/boot/iso/ubuntu-14.04.1-server-amd64.iso /media/cdrom |
Install the rest of the missing packages:
1 | sudo apt-get install ubuntu-standard openssh-server curl |
Update my apt sources.list:
1 | curl -O http://www.johnko.ca/scripts/sources14.04.1.list |
Update my packages:
1 | sudo apt-get update |
And reboot for good measure:
1 | sudo reboot |