Ubuntu – 14.04.1 server install without internet access

14.04internetisoserversystem-installation

This question has been asked twice before on this forum, 6 months ago and 1 year ago, no solution was given. My problem is the same. I downloaded ubuntu-14.04.1-server-amd64.iso and used unetbootin (also tried Universal-USB-installer) to write a bootable UBS stick. I booted, chose "expert commandline install" and I get stuck at "download installer components from mirror site".

Is there really no way to install the server without a network connection? I was able to install the desktop version with no problems, but it will take me hours to remove all the packages I don't want to have on this system.

This installation will be dedicated to servicing a neutron detector and I need it to be headless with command-line only. It will be setup to serve data (huge amounts) when requested. It is on a private network but cannot be connected to the internet even for installation.

If anyone can give me a hint on how to do this, I will be very grateful.

–Lee

Best Answer

The problem is most likely caused by using unetbootin or the Universal-USB-Installer. EFI booting has complicated the installation procedure and these utilities are known to sometimes have problems creating an-EFI installer correctly.

There's really no longer any reason not to simply use dd to create the USB installer, especially since you already have a working Ubuntu workstation.

First, use gparted or Disks to reformat the USB stick that you have been using, otherwise it is possible that old, remaining data will cause problems. (I once had a package checksum mismatch error from this problem during installation.)

Then:

sudo dd if=/path/to/iso of=/path/to/usb

Be very careful to check what you typed before hitting Enter. Any data in the of= path will be destroyed.