Find the answer to your Linux question:
Results 1 to 10 of 10
Hi I am having a problem with nvidia driver. After installing lucid when I installed the nvidia driver and then restarted my system. After restarting my computer completely freezed during ...
  1. #1
    Just Joined!
    Join Date
    Oct 2009
    Posts
    29

    [SOLVED] problem with installing nvidia driver

    Hi
    I am having a problem with nvidia driver. After installing lucid when I installed the nvidia driver and then restarted my system. After restarting my computer completely freezed during boot process and I have to unplug it and when I again turn it on the filesystem was corrupted and I had to reinstall ubuntu lucid. I used both the repository driver and the driver from nvidia's website but the same problem occurs. And now I have to use the default fbdev to be able to use my computer. The video card is Nvidia Geforce 7050/nforce 610i. Can anyone help me to solve this problem?
    Thanks

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    How did you install Repository driver? Did you Hardware drivers option in System - Administration menu?

    Post the output of this
    Code:
    lspci | grep -i vga
    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
    Oct 2009
    Posts
    29
    Thanks for taking interest in my problem
    Yes, I used the nvidia driver from System|Administration|Hardware Drivers and I used the "Current (Reccomended) Version".
    Here is lspci output:
    Code:
    user@system:~$ lspci | grep -i vga
    00:10.0 VGA compatible controller: nVidia Corporation C73 [GeForce 7050 / nForce 610i] (rev a2)

  4. #4
    Just Joined!
    Join Date
    Oct 2009
    Posts
    29
    I noticed one more thing. As I told that I was using the default fbdev driver. But I was having a problem with that driver that my keyboard and mouse stop responding after few minutes, specially when I start copying anything or load 6-7 apps simultaneously. So I changed the driver from fbdev to vesa by giving "vesa" option to grub. Now my keyboard and mouse are not freezing.

  5. #5
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Is xorg.conf file configured correctly? Post the contents of /etc/X11/xorg.conf file here.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  6. #6
    Linux User hatebreed's Avatar
    Join Date
    May 2010
    Posts
    332
    load the nvidia driver and go to a shell as root and try nvidia-xconfig -mode "800x600" "1024x768" and what ever other resolutions you want. I had something like that happen to me and after i did that all was well again. Not promising though.

  7. #7
    Just Joined!
    Join Date
    Oct 2009
    Posts
    29
    Here is my xorg.conf
    Code:
    Section "Device"
    	Identifier	"Configured Video Device"
    	Driver		"fbdev"
    EndSection
    
    Section "Monitor"
    	Identifier	"Configured Monitor"
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Monitor		"Configured Monitor"
    	Device		"Configured Video Device"
    EndSection
    You can see the here fbdev is used as driver but I have an option of "vesa" to kernel in grub because as I told that my keyboard and mouse were freezing without giving "vesa" option.

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    First of all, try hatebreed's suggestion, post #6. In case it doesn't work, use this xorg.conf file :
    Code:
    Section "Device"
           Identifier "Configured Video Device"
           Option "RenderAccel" "true"
    EndSection
    
    Section "Monitor"
             Identifier "Configured Monitor"
             HorizSync 31.5 - 50.0
             VertRefresh 40-90
             Option "UseEdidFreqs" "1"
             Option "ReducedBlanking"
    EndSection
    
    Section "Screen"
            Identifier "Default Screen"
            Monitor "Configured Monitor"
            Device "Configured Video Device"
            DefaultDepth 24
            Subsection "Display"
                 Depth 24
                 Modes "1280x1024" "1024x768" "800x600" "640x480"
            EndSubsection
    EndSection
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  9. #9
    Just Joined!
    Join Date
    Oct 2009
    Posts
    29
    devils casper! thanks a lot, your solution worked

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Glad to help you !
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

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