LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Cannot get nv driver to work and the vesa driver is limited (https://www.linuxquestions.org/questions/linux-hardware-18/cannot-get-nv-driver-to-work-and-the-vesa-driver-is-limited-598696/)

arobinson74 11-10-2007 09:03 PM

Cannot get nv driver to work and the vesa driver is limited
 
My computer has been experiencing sporadic hangs/crashes. For more information see my LQ thread: http://tinyurl.com/2gwd4m

In an attempt to see if it is the nvidia driver, I un-installed it an am trying to use a substitute in the meantime.

The vesa driver is working, but it looks terrible on my LCD that has a native resolution of 1600x1200 (the vesa driver seems to have a limit of 1280x1024).

When I replace the driver with "nv", the DVI input is not enabled and the VGA output is completely corrupted (ctrl+alt+backspace brings me back to the terminal corrupted too).

How can I get a 1600x1200 with DVI support working on this nvidia e-GeForce 7300 GS card without using the NVidia drivers?

My current xorg.conf:
Code:

Section "Files"
EndSection

Section "InputDevice"
  Identifier    "Generic Keyboard"
  Driver        "kbd"
  Option        "CoreKeyboard"
  Option        "XkbRules" "xorg"
  Option        "XkbModel" "pc105"
  Option        "XkbLayout" "us"
  Option        "XkbVariant" "dvorak"
EndSection

Section "InputDevice"
  Identifier    "Configured Mouse"
  Driver        "mouse"
  Option        "CorePointer"
  Option        "Device" "/dev/input/mice"
  Option        "Protocol" "ExplorerPS/2"
  Option        "ZAxisMapping" "4 5"
  Option        "Buttons" "7"
  Option        "Emulate3Buttons" "false"
  Option        "EmulateWheel" "true"
  Option        "EmulateWheelButton" "8"
EndSection

Section "Device"
  Identifier  "Generic Video Card"
  Driver    "vesa"
#  Driver    "nv"
  BusID    "PCI:5:0:0"
EndSection

Section "Monitor"
  Identifier  "Generic Monitor"
  Option    "DPMS"
  HorizSync  28-80
  VertRefresh  43-60
EndSection

Section "Screen"
  Identifier  "Default Screen"
  Device    "Generic Video Card"
  Monitor    "Generic Monitor"
  DefaultDepth  24
  SubSection "Display"
    Modes    "1600x1200" "1280x1024" "1152x864" "1024x768" "800x600" "720x400" "640x480"
  EndSubSection
EndSection

Section "ServerLayout"
  Identifier  "Default Layout"
  Screen    "Default Screen"
  InputDevice  "Generic Keyboard"
  InputDevice  "Configured Mouse"
EndSection

FYI, this is an Xubuntu Gutsy computer

jeenam 11-11-2007 12:27 AM

Why don't you try using the binary nvidia drivers? The latest version can be found here.

You'll need to have the kernel headers installed. IIRC, apt-get install linux-kernel-headers-`uname -r` is the command to install them.

arobinson74 11-11-2007 08:02 AM

Thanks for responding, but apparently you didn't read any of my post.

I need a driver that is not the nvidia driver. My whole point is to not run the nvidia driver as I am trying to make sure it isn't the cause of my computer hangs.


All times are GMT -5. The time now is 10:48 AM.