Find the answer to your Linux question:
Results 1 to 2 of 2
I just did an upgrade of Debian Testing today and ran into a problems. First of all, let me say that after doing some looking around the X-server was upgrade ...
  1. #1
    Linux Enthusiast
    Join Date
    Jun 2005
    Location
    The Hot Humid South
    Posts
    602

    Problem with X after upgrade



    I just did an upgrade of Debian Testing today and ran into a problems. First of all, let me say that after doing some looking around the X-server was upgrade from 6.8 (or 6.9, can't remember which one) to 7.0.

    Anyway, the problem is that I'm stuck in 800x600 resolution, even though this resolution is not even mentioned on my mode settings. This is what my xorg.conf currently looks like:
    Code:
    Section "Files"
    	FontPath	"unix/:7100"			# local font server
    	# if the local font server has problems, we can fall back on these
    	FontPath	"/usr/lib/X11/fonts/misc"
    	FontPath	"/usr/lib/X11/fonts/cyrillic"
    	FontPath	"/usr/lib/X11/fonts/100dpi/:unscaled"
    	FontPath	"/usr/lib/X11/fonts/75dpi/:unscaled"
    	FontPath	"/usr/lib/X11/fonts/Type1"
    	FontPath	"/usr/lib/X11/fonts/CID"
    	FontPath	"/usr/lib/X11/fonts/100dpi"
    	FontPath	"/usr/lib/X11/fonts/75dpi"
    EndSection
    
    Section "Module"
    	Load	"bitmap"
    	Load	"dbe"
    	Load	"ddc"
    #	Load	"dri"
    #	Load	"evdev"
    	Load	"extmod"
    	Load	"freetype"
    	Load	"glx"
    	Load	"int10"
    	Load	"record"
    	Load	"type1"
    	Load	"vbe"
    EndSection
    
    Section "InputDevice"
    	Identifier	"Generic Keyboard"
    	Driver		"keyboard"
    	Option		"CoreKeyboard"
    	Option		"XkbRules"	"xorg"
    	Option		"XkbModel"	"pc104"
    	Option		"XkbLayout"	"us"
    EndSection
    
    Section "InputDevice"
    	Identifier	"Configured Mouse"
    	Driver		"mouse"
    	Option		"CorePointer"
    	Option		"Device"		"/dev/psaux"
    	Option		"Protocol"		"PS/2"
    	Option		"Emulate3Buttons"	"true"
    	Option		"ZAxisMapping"		"4 5"
    EndSection
    
    Section "Device"
    	Identifier	"NVIDIA Corporation NV34 [GeForce FX 5200]"
    	Driver		"nv"
    	BusID		"PCI:2:0:0"
    EndSection
    
    Section "Monitor"
    	Identifier	"Generic Monitor"
    #	Option		"DPMS"
    	HorizSync	28-38
    	VertRefresh	43-72
    	Modeline "ATSC-720-72p" 74.25 1280 1320 1376 1648 720 722 728 750
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Device		"NVIDIA Corporation NV34 [GeForce FX 5200]"
    	Monitor		"Generic Monitor"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		1
    		Modes		"1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		4
    		Modes		"1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		8
    		Modes		"1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		15
    		Modes		"1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		16
    		Modes		"1024x768" "800x600" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		24
    		Modes		"ATSC-720-72p" "1024x768"
    	EndSubSection
    EndSection
    
    Section "ServerLayout"
    	Identifier	"Default Layout"
    	Screen		"Default Screen" 0 0
    	InputDevice	"Generic Keyboard"
    	InputDevice	"Configured Mouse"
    EndSection
    
    Section "DRI"
    	Mode	0666
    EndSection
    Fairly simple (as far as I can tell)! When start X it chokes for a few seconds and then goes into 800x600 mode (I'm guessing it can't go into the other two, but why I don't know). i've search the subject, but it seems like all the "solutions" I found are for different problems.

    Any help will be greatly appreciated.

  2. #2
    Linux Enthusiast
    Join Date
    Jun 2005
    Location
    The Hot Humid South
    Posts
    602
    After all this time, I still don't know how to delete a thread... In that case, I'm just going to say that I was able to fix the problem in the strangest manner I've ever fixed anything else. What I did was change the Monitor section's to this:
    Code:
        Identifier     "Generic Monitor"
        HorizSync       28.0 - 60.0
        VertRefresh     43.0 - 72.0
        ModeLine       "ATSC-720-72p" 74.25 1280 1320 1376 1648 720 722 728 750

Posting Permissions

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