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

Notices


Reply
  Search this Thread
Old 07-21-2007, 02:33 PM   #16
amd0freak
LQ Newbie
 
Registered: Jul 2007
Distribution: slackwarez 12.0
Posts: 24

Original Poster
Rep: Reputation: 15

but i dont understand, why would i want to replace my xorg.conf with a blank file? might i as well just delete all the text in the existing file? would that not result in an inability to init 4?
 
Old 07-21-2007, 06:00 PM   #17
mRgOBLIN
Slackware Contributor
 
Registered: Jun 2002
Location: New Zealand
Distribution: Slackware
Posts: 999

Rep: Reputation: 231Reputation: 231Reputation: 231
You'll see each section has an Identifier such as "Monitor0, Videocard0, which are used in each "Screen" Section.
This way you can have multiple monitors cards etc.

If I were you I would start by finding the correct HorizSync and VertRefresh rates for your monitor, it's either found on the back, in the manual or do a google search.

But do start with a fresh xorg.conf by doing the following steps. (This will make a backup of your current conf)
Code:
run xorgsetup
edit the new xorg.conf and change  
Driver "nv" to "Driver "nvidia"
Edit HorizSync and VertRefresh with your proper values.
Try that first or you could also try using EDID to set up your monitor.
by putting something like this in the Device section of your video card.
Code:
    Option      "MetaModes"                "1280x1024,1280x1024; 1280x1024,NULL"
    Option      "UseEdidFreqs"             "true"
    Option      "IgnoreEDID"               "false"
Not sure if both of those last lines are required together or if just one will do it but hey...
 
Old 07-21-2007, 07:32 PM   #18
erklaerbaer
Member
 
Registered: Mar 2006
Posts: 381

Rep: Reputation: 30
as said before!, this shouldn't be needed.
amd0freak: X -configure will create /root/xorg.conf.new . try it!
 
Old 07-23-2007, 04:20 PM   #19
amd0freak
LQ Newbie
 
Registered: Jul 2007
Distribution: slackwarez 12.0
Posts: 24

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by erklaerbaer
as said before!, this shouldn't be needed.
amd0freak: X -configure will create /root/xorg.conf.new . try it!
Well here's the output. All seems true info and nothing seems wrong/incorrect... but here it is

Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	RgbPath      "/usr/share/X11/rgb"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/75dpi/:unscaled"
EndSection

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

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "SWcursor"           	# [<bool>]
        #Option     "HWcursor"           	# [<bool>]
        #Option     "NoAccel"            	# [<bool>]
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "UseFBDev"           	# [<bool>]
        #Option     "Rotate"             	# [<str>]
        #Option     "VideoKey"           	# <i>
        #Option     "FlatPanel"          	# [<bool>]
        #Option     "FPDither"           	# [<bool>]
        #Option     "CrtcNumber"         	# <i>
        #Option     "FPScale"            	# [<bool>]
        #Option     "FPTweak"            	# <i>
        #Option     "DualHead"           	# [<bool>]
	Identifier  "Card0"
	Driver      "nv"
	VendorName  "nVidia Corporation"
	BoardName   "G70 [GeForce 7600 GT]"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
 
Old 07-23-2007, 04:30 PM   #20
amd0freak
LQ Newbie
 
Registered: Jul 2007
Distribution: slackwarez 12.0
Posts: 24

Original Poster
Rep: Reputation: 15
i did ABSOLUTELY NOTHING more and somehow in nvidia-settings all of a sudden popped up 1280X960

but seriously on a 23" CRT from SUN microsystems, even at its age of 8 years, it handles 1900X1440 LIKE A JOKE (max res is 2550X1760 in Windows XP) and i specified it in the right display as the ONLY res but NOOOo...kde sees all sorts of **** in control center with 150X300 as an option...

Last edited by amd0freak; 07-23-2007 at 04:32 PM.
 
Old 07-23-2007, 07:31 PM   #21
amd0freak
LQ Newbie
 
Registered: Jul 2007
Distribution: slackwarez 12.0
Posts: 24

Original Poster
Rep: Reputation: 15
it added a 'metamodes' with 1200X960 so i copied it and changed to 1600X1200 and then again to 1900X1440

x starts fine but none of these new choices are to be found, neither in nvidia-settings nor in KDE control center
 
Old 07-23-2007, 08:14 PM   #22
amd0freak
LQ Newbie
 
Registered: Jul 2007
Distribution: slackwarez 12.0
Posts: 24

Original Poster
Rep: Reputation: 15
WORKS NOW. not 1900X1440 but thats fine. 1600X1200 works now!

i increased horizrate above the manufacturers rating but it works perfectly
 
Old 07-24-2007, 07:21 AM   #23
erklaerbaer
Member
 
Registered: Mar 2006
Posts: 381

Rep: Reputation: 30
still, you are not using the official nvidia driver, but the open source "nv" driver.

comment Load dri , replace driver nv with dirver nvidia and add
Quote:
Modes "1900x1440"
under Depth 24.
 
Old 07-28-2007, 02:08 AM   #24
Slack1_more
Member
 
Registered: Sep 2004
Location: Australia
Distribution: Slackware 10.0, 10.1, 11. and now 12!
Posts: 54

Rep: Reputation: 16
Sorry to come in late on this amd0freak, but I think you might be confusing the 'refresh rate' with the monitor's Synch rates.
The refresh rate is the number of times per second the screen is written to in normal operation. That's what you can change in Windows by right-clicking on your screen etc. There's only one of them.
The Synch rates of your monitor are two, a horizontal and a vertical one. For example my monitor is a 19" CRT (Hitachi CM). At some resolutions I can get a refresh rate of 120.
But its Synch rates (obtained from my monitor's Specifications page), are 31-115 KHz (Horizontal) and 50-160 Hz (Vertical).
It is these last that will enable your screen driver to be set up to run at its maximum rated resolution and refresh rate.
It is these last that need to be supplied for HorizSync and VertRefresh in xorg.conf
Hope this helps....
 
Old 08-27-2007, 11:41 PM   #25
mikekehrli
LQ Newbie
 
Registered: Aug 2007
Posts: 7

Rep: Reputation: 0
Just to put in my 2 cents worth

After doing a normal driver nvidia driver install, using the nvidia driver package, I found I had to tweak the Horiz and Vert refresh values around for a while before I got the resolutions I wanted too. But those were the only values I had to adjust. Everything else installed fine just using the nvidia installer, and letting create the xorg.conf file. Without adustment, the highest res it would produce is 1024 x 768.
 
  


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
unable to get higher res xorg.conf gtf WOP1337 Linux - General 8 05-19-2007 02:24 AM
How do I get higher res console support? kryptobs2000 Linux - General 1 01-21-2007 12:15 PM
So why can't I get Debian (2.6.x kernel) to go any higher than 1024x768 res.? dhatcher Debian 15 07-22-2005 12:27 PM
Lilo doesnt support higher display res munchkins Slackware 4 05-08-2005 08:37 AM
blurred display. the higher the res the worst. arpi Linux - Hardware 8 07-26-2004 11:28 AM

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

All times are GMT -5. The time now is 01:55 PM.

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