You should use the parameter nouveau.modeset=0
instead of nomodeset
.
Install the Ubuntu system and the proprietary NVIDIA drivers in this way :
Boot from the Ubuntu DVD/USB installation media you had created before.
Highlight the option 'Try Ubuntu without installing' and press the E key.
Add nouveau.modeset=0
to the end of the linux line - press F10 to boot.
Install the Ubuntu operating system - when finished reboot the computer.
Highlight the Ubuntu entry in the GRUB boot menu and press the E key.
Add nouveau.modeset=0
to the end of the linux line - press F10 to boot.
On the login screen press Ctrl+Alt+F1
Enter user name and password - execute :
sudo apt-get update
sudo apt-get install nvidia-352
sudo reboot
Generally it is recommended to use the NVIDIA drivers from the official Ubuntu repositories.
But as you have very new graphics hardware, you can install the latest official NVIDIA drivers.
The xorg-edgers PPA does not provide the drivers anymore and was replaced by GPU Drivers.
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-361
sudo reboot
After the installation adding the parameter nouveau.modeset=0
is not necessary anymore.
nomodeset
is a temporary solution in case a system does not boot without a proprietary driver. This is not to be used permanently. If your systems does boot,nomodeset
is not needed at all. – Pilot6 Mar 18 '16 at 10:47