First do a MD5 hash check of the ISO to verify it.
In case the ISO is valid, you may be facing an issue because of your GPU, ie Nvidia GTX 765M.
Try the following to make it work.
As soon as you boot from the USB, press any key to enter the splash screen.
Press F6
and select the nomodeset
option
Now select Try Ubuntu without installing
option and check whether the problem persists.
In case nomodeset
does not work, try either acpi=off
or nolapic
options and try again.
ALTERNATIVELY, you can edit the /boot/grub/grub.cfg
on your live USB and add the nomodeset
option.
Edit :
What is nomodeset
?
The newest kernels have moved the video mode setting into the kernel. So all the programming of the hardware specific clock rates and registers on the video card happen in the kernel rather than in the X driver when the X server starts.. This makes it possible to have high resolution nice looking splash (boot) screens and flicker free transitions from boot splash to login screen. Unfortunately, on some cards this doesnt work properly and you end up with a black screen. Adding the nomodeset parameter instructs the kernel to not load video drivers and use BIOS modes instead until X is loaded.
Note that this option is sometimes needed for nVidia cards when using the default "nouveau" drivers. Installing proprietary nvidia drivers usually makes this option no longer necessary, so it may not be needed to make this option permanent, just for one boot until you installed the nvidia drivers.
Source