Hi,
I installed Ubuntu 14.04 LTS from a Windows machine as follows on a APU, comments and improvements appreciated..
# download ubuntu-14.04-server-amd64.iso
# use unetbootin-windows-585 to create a LiveUSB stick
# modify isolunux.cfg, txt.cfg and syslinux.cfg
isolinux.cfg:
# D-I config version 2.0
CONSOLE 0
SERIAL 0 115200 0
include menu.cfg
default vesamenu.c32
prompt 0
timeout 0
txt.cfg:
default install
label install
menu label ^Install Ubuntu Server
kernel /install/vmlinuz
append file=/cdrom/preseed/ubuntu-server.seed vga=788 initrd=/install/initrd.gz -- console=ttyS0,115200n8 quiet –
syslinux.cfg:
# D-I config version 2.0
CONSOLE 0
SERIAL 0 115200 0
default menu.c32
prompt 0
menu title UNetbootin
timeout 100
label unetbootindefault
kernel /install/netboot/ubuntu-installer/amd64/linux
append initrd=/install/netboot/ubuntu-installer/amd64/initrd.gz tasks=standard pkgsel/language-pack-patterns= pkgsel/install-language-support=false vga=788 -- console=ttyS0,115200n8 -- quiet
# connect via nullmodem cable, and putty serial 115200
# boot APU with Live USB Stick, press return on some warnings
# in the end of the installation, make sure,
# you install grub to the drive you installed ubuntu, the default suggested by the installer is wrong
# hint from Nova - Posted Dec 4th
# You just have to say NO at the end of the installation when it asks to install grub to the masterboot, then type the correct
# partition of the mSATA like /dev/sdc1 and everything is fine
# some modifications, when ubuntu install is finished:
sudo -i
passwd
root@apu:~# apt-get update
root@apu:~# apt-get install openssh-server
--> Static IP-Address, comment dhcp and insert this or whatever
root@apu:~# nano /etc/network/interfaces
iface p4p1 inet static
address 192.168.1.31
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1
--> allow ssh root login, Find the line PermitRootLogin xyz and change it to PermitRootLogin yes
root@apu:~# nano /etc/ssh/sshd_config
root@apu:~# reboot