Find the answer to your Linux question:
Results 1 to 3 of 3
Hi, I've upgrade my Linux(UBUNTU) kernel from 2.6.24-26 to 2.6.33.2. After reboot It shows a message running low graphics and after that I've found no NVIDIA modules. I tried sudo ...
  1. #1
    Just Joined!
    Join Date
    Jul 2010
    Posts
    23

    Running low graphics after upgrading the kernel.

    Hi,

    I've upgrade my Linux(UBUNTU) kernel from 2.6.24-26 to 2.6.33.2.
    After reboot It shows a message running low graphics and after that I've found no NVIDIA modules.

    I tried sudo apt-get install nviida (and also nviida-current)

    But it says no nvidia package found.

    I also tried to enable the nvidia hardware driver from system->administration->hardware driver.

    While enabling the driver I am getting strips on the screen and PC hangs.

    Could anyone of you please let me know what should I do.

    Thanks.

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Boot up up from LiveCD of any Linux distro and mount / partition of Ubuntu. Check the contents of /etc/X11/xorg.conf file. Does it list Driver "nvidia" in Video Card section?


    Rename existing xorg.conf file and create new. Copy following contents in new xorg.conf file :
    Code:
    Section "Device"
           Identifier "Configured Video Device"
           Driver    "vesa"  
    EndSection
    
    Section "Monitor"
             Identifier "Configured Monitor"
             HorizSync 31.5 - 70.0
             VertRefresh 50 - 160
     EndSection
    
    Section "Screen"
            Identifier "Default Screen"
            Monitor "Configured Monitor"
            Device "Configured Video Device"
            DefaultDepth 24
            Subsection "Display"
                 Depth 24
                 Modes "1280x1024" "1024x768" 
            EndSubsection
    EndSection
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Jul 2010
    Posts
    23
    Thanks works for me

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...