08-12-2014, 11:03 PM
It's possible that grub just didn't get installed properly during the install. (Happens sometimes. ???) Try following to re-install grub:
* Boot from live Linux Lite DVD/USB
* Open a terminal (Menu -> Accessories -> Terminal)
* Mount the installed system's root partition to the live enviroment
* Install grub to the MBR (master boot record) of the drive
* Unmount the root partition
* Close terminal, shutdown computer, remove DVD/USB
* Boot computer again and see if everything now works.
* Boot from live Linux Lite DVD/USB
* Open a terminal (Menu -> Accessories -> Terminal)
* Mount the installed system's root partition to the live enviroment
Code:
sudo mount /dev/sda1 /mnt
* Install grub to the MBR (master boot record) of the drive
Code:
sudo grub-install --boot-directory=/mnt/boot/ /dev/sda
* Unmount the root partition
Code:
sudo umount /mnt
* Close terminal, shutdown computer, remove DVD/USB
* Boot computer again and see if everything now works.
Try Linux Beginner Search Engine for answers to Linux questions.