Thank you OldFred, 14.04 amd64 installs and boots now. This thread is solved. As a summary for others that might read this far or jump to the end of a resolved thread:
Problem:
I did a new install of ubuntu-14.04-desktop-amd64.iso from a USB drive made with YUMI . The live distro booted ok and I did a HD install by choosing the Install Ubuntu rather than Try Ubuntu option on the live distro start up screen. HD Install would not boot generating error Kernel panic at boot: not syncing. No init found.
Steps to resolve:
In the post above OldFred suggested using chroot. I did mkdir HDInstall then mounted my HD partition to that directory, then did chroot to HDInstall follow by:
#Then run whatever other commands needed - no sudo needed if chroot (maybe good to run "df- H" and "cat /etc/issue" to be certain #you mounted the correct partition).
#Commands once in chroot:
#if not chroot use: sudo -i
#houseclean
apt-get autoclean # only removes files that cannot be downloaded anymore (obsolete)
apt-get clean
#refresh
apt-get update #resync package index
apt-get upgrade #newest versions of all packages, update must be run first
#would upgrade you to the latest kernel in the repositories
#dist-upgrade is also able to remove existing packages if required
apt-get dist-upgrade
# fix Broken packages -f
apt-get -f install
dpkg --configure -a
This did generate messages that were : Failed to fetch ...... Could not resolve 'us.archive.ubuntu.com' many times.
I then used the Install to HD link that was on the live desktop and the install boots.
Kudos to OldFred
Bookmarks