2

I was going to install it and tried it out before actually going through with the installation, but when I did that, the desktop loaded up for a few seconds then became a heavily reddish-orange pixelated screen and froze that way. I restarted and tried it again and it did the same thing. All I did was move the mouse for a few seconds then it screwed up.

Is this a graphics card or some other hardware problem? And if it is, how do you fix it or is it completely incompatible? My graphics card is NVIDIA GeForce 6150SE and the processor is AMD Sempron 145. You can supposedly install drivers for stuff, but how can you do that when you can't use it to begin with?

Or is it a different problem entirely?

karel
  • 114,770
BigHippo
  • 165
  • 3
  • 5
  • 10
  • 1
    4GB. I did a memory and disk test and it said that it passed with no errors, so I'm not sure if that's the problem. – BigHippo May 06 '15 at 05:03
  • Maybe you can get to a text-only console: How to switch to a command-line console before your computer totally freezes, run ubuntu-drivers devices to get the package name of the recommended NVIDIA driver, and then install the recommended NVIDIA driver with sudo apt-get install some-package-name. All this is for after you have installed Ubuntu on your hard drive, of course. – karel May 06 '15 at 05:08
  • Do you need the internet to do this? Because it doesn't recognize my USB adaptor. – BigHippo May 06 '15 at 06:43
  • You only need internet to download the NVIDIA graphics driver and maybe you need to download and install a package to get your computer to recognize your USB adaptor. – karel May 06 '15 at 06:50
  • How can you put a driver for the adaptor that I use for wifi when you need the internet to install it? All I can think of is plugging in the ethernet cable. – BigHippo May 06 '15 at 07:05
  • The devices command doesn't work. It just starts a new line when I try it. ANd "autoinstall" doesn't work either, just says it doens't detect anything. – BigHippo May 07 '15 at 08:42
  • If you can't get a recommended NVIDIA proprietary graphics driver output from ubuntu-drivers devices then install the current NVIDIA driver -- nvidia-current . – karel May 07 '15 at 08:51
  • The whole command is "sudo ubuntu nvidia-current", right? – BigHippo May 07 '15 at 08:54
  • The whole command is sudo apt-get install nvidia-current && sudo reboot . Type it all on one line and then press the Enter key to run it. – karel May 07 '15 at 08:55
  • It also freezes on me sometimes before I can go to the console, but doesn't pixelate (only pixelates after I try to use it normally). Is there anything I can do after it freezes other than restart and hope it works? – BigHippo May 07 '15 at 09:01
  • Tried nvidia-current and it said that it wasn't able to locate the package. I tried to install a couple other things also to see if they'd work and it can't locate anything. Even if my graphics card is about fried, surely I can install some other program, right? – BigHippo May 07 '15 at 09:31
  • I installed 14.04 from ubuntu.com, so that's odd. – BigHippo May 07 '15 at 09:36
  • 1
    I got it working. When I installed it from the CD, I didn't have an internet connection since it couldn't detect my adaptor, so I was missing a lot of update and upgrades that were needed to work right. So I did apt-get update and upgrade and was able to install the drivers afterwards. And now it doesn't freeze or pixelate anymore. I'm on Ubuntu right now typing this.... finally. Thanks for your help. – BigHippo May 07 '15 at 10:27

1 Answers1

2
  1. Plug in the ethernet cable so that you have an internet connection and start the computer.

  2. Open a text-only console by using the keyboard shortcut Ctrl+Alt+F3.

  3. At the login: prompt type your username and press Enter.

  4. At the Password: prompt type your user password and press Enter.

  5. Now you are logged in to a text-only console, and you can run terminal commands from the console. Run these commands to install the proprietary graphics driver for your NVIDIA GeForce 6150 SE GPU:

    sudo apt update
    sudo apt upgrade
    sudo apt install nvidia-current
    sudo reboot
    
karel
  • 114,770