LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 02-24-2005, 12:47 AM   #1
flysideways
Member
 
Registered: Jul 2003
Posts: 151

Rep: Reputation: 30
DVI to LCD does not work without nvidia Driver


OK, so I finally got an LCD monitor and using the DVI connection on my FX5200 is giving me fits. With the monitor connected to the DVI port all I get is a blank screen when X starts in FC3. It works fine in a virtual console for the command line. Booting the computer with Knoppix, X works. I spent a bit of time flailing about in xorg.conf with no luck. Finally I broke down and tainted my kernel with that nvidia driver, but......

Any ideas?

When I installed the Nvidia driver the only changes that I made to xorg.conf were to comment out Load "dri" and changed driver to "nvidia" and it worked.

Thanks.
 
Old 02-24-2005, 01:56 AM   #2
flysideways
Member
 
Registered: Jul 2003
Posts: 151

Original Poster
Rep: Reputation: 30
Arg!!!! Now it doesn't reboot!!

Well, reducing the resolution in xorg.conf to a maximum of 1024x768 in 16 or 24 bits gets it booting with the "nv" driver.

Must sort out the proprietary driver booting issue. It would be best if I could figure out how to get the "nv" driver up to my monitor's native resolution of 1600x1200
 
Old 02-24-2005, 09:28 AM   #3
flysideways
Member
 
Registered: Jul 2003
Posts: 151

Original Poster
Rep: Reputation: 30
An update, thanks to ilikejam in another thread, I figured out that the nvidia module was not loading during boot. I did an lsmod and it was not there. X starts after doing modprobe nvidia. I edited /etc/rc.d/rc.local and added modprobe nvidia and now X comes up with the nvidia driver during boot. It's nice to have the native resolution with the DVI connection. Now, if I could only figure out how to get that without the proprietary driver.

Cheers.
 
Old 03-23-2005, 09:34 AM   #4
Utah
Member
 
Registered: Apr 2004
Distribution: Fedora Core 3
Posts: 73

Rep: Reputation: 15
Could we see your config file?

Hi,

Would you mind posting your config file (XF86Config or whatever)? It might help me with a similar problem.

Thanks,
Mike
 
Old 03-23-2005, 11:06 AM   #5
flysideways
Member
 
Registered: Jul 2003
Posts: 151

Original Poster
Rep: Reputation: 30
Code:
# Xorg configuration created by system-config-display

Section "ServerLayout"
	Identifier     "single head configuration"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"

# RgbPath is the location of the RGB database.  Note, this is the name of the 
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	FontPath     "unix/:7100"
EndSection

Section "Module"
	Load  "dbe"
	Load  "extmod"
	Load  "fbdevhw"
	Load  "glx"
	Load  "record"
	Load  "freetype"
	Load  "type1"
#	Load  "dri"
EndSection

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#	Option	"Xleds"		"1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
#	Option	"XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#	Option	"XkbModel"	"pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#	Option	"XkbModel"	"microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#	Option	"XkbLayout"	"de"
# or:
#	Option	"XkbLayout"	"de"
#	Option	"XkbVariant"	"nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#	Option	"XkbOptions"	"ctrl:swapcaps"
# Or if you just want both to be control, use:
#	Option	"XkbOptions"	"ctrl:nocaps"
#
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "IMPS/2"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "LCD Panel 1600x1200"
	HorizSync    28.0 - 75.0
	VertRefresh  60.0 - 60.0
	Option	    "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "nvidia"
	VendorName  "Videocard vendor"
	BoardName   "NVIDIA GeForce FX (generic)"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1600x1200" "1400x1050" "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "DRI"
	Group        0
	Mode         0666
EndSection
I'm using the the analog input now so that I can use my kvm switch. I never did get the nv driver up to the 1600x1200 resolution through the dvi connector, the nvidia driver worked though.

Cheers.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
DVI LCD with nVidia GeForce2 MX400 video card? Utah Fedora 0 03-22-2005 11:02 PM
does dvi lcd monitor work with linux gram_vaz Linux - Hardware 3 09-25-2004 09:22 PM
DVI doesn't work on Radeon 9200 on LCD on Redhat 8, ATI drivers edwardt Linux - Hardware 0 05-13-2004 06:32 PM
Problems with DVI-I and LCD display nowindows Linux - Hardware 0 04-15-2004 06:17 AM
Getting LCD DVI Cable to work with X & Nvidia ifurita Linux - Hardware 2 09-23-2003 09:18 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora

All times are GMT -5. The time now is 09:38 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration