LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 03-23-2006, 08:12 PM   #1
nygeek05
Member
 
Registered: Nov 2005
Location: Lake Effect Land
Distribution: Ubuntu 7.04
Posts: 34

Rep: Reputation: 15
Monitor Range to wide


Ok, I belive my monitor range is to wide.

What happens is the white is pure white, wich I'm fine with. But the darker colors are black, wich means I loose detail.

How would I fix this?
 
Old 03-24-2006, 02:31 AM   #2
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
Please provide more detail -- what exact monitor are your using, and what are your horizontal and vertical refresh rates in your xorg.conf file (which lives in the /etc/X11 directory). I suspect that either those settings are wrong for your monitor, or that maybe the color depth you are using is way too low.
 
Old 03-24-2006, 08:07 AM   #3
nygeek05
Member
 
Registered: Nov 2005
Location: Lake Effect Land
Distribution: Ubuntu 7.04
Posts: 34

Original Poster
Rep: Reputation: 15
Ok,

It's the MAG 510V2-2.
Here's my Xorg.Conf
Code:
                                                                   
                                                                     
                                                                     
                                             
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	ModulePath   "/usr/X11R6/lib/modules"
	FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
	FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
	FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
	FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
	FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
	Load  "record"
	Load  "extmod"
	Load  "dbe"
	Load  "dri"
	Load  "glx"
	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/mouse"
EndSection

Section "Monitor"
	#DisplaySize	  280   210	# mm
	Identifier   "Monitor0"
	VendorName   "MAG"
	ModelName    "MAG 510V2-2"
	HorizSync    30.0 - 54.0
	VertRefresh  50.0 - 100.0
	Option	    "DPMS"
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     "slow_edodram"       	# [<bool>]
        #Option     "slow_dram"          	# [<bool>]
        #Option     "fast_dram"          	# [<bool>]
        #Option     "fpm_vram"           	# [<bool>]
        #Option     "pci_burst"          	# [<bool>]
        #Option     "fifo_conservative"  	# [<bool>]
        #Option     "fifo_moderate"      	# [<bool>]
        #Option     "fifo_aggressive"    	# [<bool>]
        #Option     "pci_retry"          	# [<bool>]
        #Option     "NoAccel"            	# [<bool>]
        #Option     "early_ras_precharge" 	# [<bool>]
        #Option     "late_ras_precharge" 	# [<bool>]
        #Option     "lcd_center"         	# [<bool>]
        #Option     "set_lcdclk"         	# <i>
        #Option     "set_mclk"           	# <freq>
        #Option     "set_refclk"         	# <freq>
        #Option     "show_cache"         	# [<bool>]
        #Option     "HWCursor"           	# [<bool>]
        #Option     "SWCursor"           	# [<bool>]
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "Rotate"             	# [<str>]
        #Option     "UseFB"              	# [<bool>]
        #Option     "mxcr3afix"          	# [<bool>]
        #Option     "XVideo"             	# [<bool>]
	Identifier  "Card0"
	Driver      "s3virge"
	VendorName  "S3 Inc."
	BoardName   "ViRGE/DX or /GX"
	BusID       "PCI:0:18:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
DefaultDepth 16
	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 03-24-2006, 09:08 PM   #4
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
You don't have any resolutions specified

Code:
 SubSection     "Display"
        Viewport    0 0 
        Depth       16
        Modes      "1280x1024" "1024x768" "800x600" "640x480"
 EndSubSection
The above is a sample from my xorg.conf. Give it a try, I think it might resolve the issue

Last edited by J.W.; 03-24-2006 at 09:09 PM.
 
Old 03-24-2006, 11:37 PM   #5
nygeek05
Member
 
Registered: Nov 2005
Location: Lake Effect Land
Distribution: Ubuntu 7.04
Posts: 34

Original Poster
Rep: Reputation: 15
Ah, is there an easy way to edit the file.
 
Old 03-25-2006, 01:51 PM   #6
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
There are all kinds of different text editors, and any will suffice. Personally I like pico.
Code:
pico /etc/X11/xorg.conf
You could also reconfigure xorg.conf
Code:
xorgconfig
Good luck with it
 
Old 03-25-2006, 04:55 PM   #7
nygeek05
Member
 
Registered: Nov 2005
Location: Lake Effect Land
Distribution: Ubuntu 7.04
Posts: 34

Original Poster
Rep: Reputation: 15
I never know pico existed. It's my favorite editor now. I know the keys.

Also, I kinda screwed up my XFce configuration. I can go into any other window manager just fine. But, I was playing with XFce's screen depth and selector and screwed it up.

I'm hoping this edit to the file works.

EDIT: Yes,it did! But, it didn't fix my things being too dark issue.

Last edited by nygeek05; 03-25-2006 at 04:59 PM.
 
Old 03-25-2006, 05:19 PM   #8
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
Maybe the issue is just that your monitor's contrast or brightness settings are off. Have you tried using the monitor's adjustment buttons (generally on the front panel of the monitor)? Maybe this isn't a configuration issue at all
 
Old 03-25-2006, 05:59 PM   #9
nygeek05
Member
 
Registered: Nov 2005
Location: Lake Effect Land
Distribution: Ubuntu 7.04
Posts: 34

Original Poster
Rep: Reputation: 15
yes, that was the first thing I tried.
 
Old 03-26-2006, 12:08 AM   #10
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
Hmm, well that pretty much is everything I can think of. Sorry I can't be of any other help. Maybe the monitor itself is the problem. How old is it, and have you tried connecting it to another PC (say, running Windows) to see if it behaves the same way?

If it works OK on other PC's, but not on your Linux box, then my guess would be that your video card is culprit. Good luck with it
 
  


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
linux 9 does not support my wide-screen monitor? liangchen Linux - Laptop and Netbook 9 06-15-2007 07:26 PM
correct resolution for wide aspect monitor crowmobe Linux - Hardware 2 03-12-2006 09:03 PM
Monitor out of range??? amoulton Linux - Software 3 04-26-2004 03:45 PM
New monitor - out of range Seventh Linux - Newbie 2 02-14-2004 08:05 PM
monitor out of range zoo Linux - Hardware 4 08-13-2003 08:58 PM

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

All times are GMT -5. The time now is 10:42 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