3

Hello everyone in Ubuntu Land,

I am having problems with logging in to my Ubuntu 14.04 LTS user. I was away from my computer for a few weeks and came back with a new graphics card, a GeForce GTX 960. I inserted it, system boots normally to login screen, but after entering my password, the screen only shows the default Ubuntu background and the mouse cursor. I cannot access the terminal.

I tried logging in with the Guest account, and it did the same thing, except this time it tells me the volume 'boot' has 0 space left.

Is the problem connected to the graphics card? How can I fix this? Any help would be greatly appreciated.

I have an HP Workstation xw4600 Base Unit with 4 GB memory. I am running Ubuntu 14.04 LTS 64 bit.

Edit: This isn't a duplicate of the Unity player causing the dash to not appear, as my root repository is full and I cannot remove old kernels.

2 Answers2

1

Generally you should use the drivers from the official Ubuntu repositories.
But install the latest official NVIDIA drivers 358 from the GPU Drivers PPA.
These drivers are known to work well with new NVIDIA GEFORCE GTX 960.

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 login screen press Ctrl+Alt+F1 ... enter user name and password.

Then execute the following commands :

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-358
sudo reboot
cl-netbox
  • 31,491
0

First item on the list will be to make sure you have space on both boot and root; Linux does react quite nasty when there is really no space left.

to do so open a terminal with CTRL + ALT + F1 and login

Now check space on your partitions with df -h and fix possible space issues. If the issue is on boot like mentioned with the guest account I always trow away one of the older kernels with:

sudo apt-get remove linux-image- TAB , which will you a list of all installed kernels. Just select one of the lower numbers and TAB until it is complete before ENTER

If you have enough space but still not able to login go to your userdir with cd ~ and do:

rm .Xauthority

and

rm .ICEAuthority

Requist
  • 2,439
  • 2
  • 25
  • 32