PDA

View Full Version : Probelm with my screen resolution..


edszr
2007-09-02, 12:22 PM CDT
Hi everyone,

I'm still a total newbie with linux...I'm running FC7 on an HP machine that has a 1.3 Ghz Athlon processor and 756 MB of memory. My screen resolution was running fine at 1028x786. However, I just rebooted my machine and my screen resolution is now gigantic at 800x600. When I go into my display options, these are my only choices:

800x600
600x480
400x300
320x240

Also, I could have sworn I had a refresh rate of 72 or 75...now the only options are 60hz and 56hz. Here's some config info:

From hardware lister:

VGA compatible controller
/0/100/1/5


product: NV15 [GeForce2 GTS/Pro]
vendor: nVidia Corporation
bus info: pci@0000:01:05.0
version: a4
width: 32 bits
clock: 66MHz
capabilities:
Power Management,
AGP,
AGP 2.0,
VGA graphical framebuffer,
bus mastering,
PCI capabilities listing
configuration:
latency: 40
maxlatency: 1
mingnt: 5

------------------------
xorg.conf:

# Xorg configuration created by pyxf86config

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nv"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection

Any help would be greatly appreciated.

thanks in advance...

VictorienSardou
2007-09-08, 09:22 AM CDT
do
$ system-config-display
and select the monitor that you have attached to your system.
then you should be able to change the resolution.

rheldmann
2007-09-09, 11:18 AM CDT
Doing the above command does not work for me. My monitor does not get written to xorg.conf

I have a similar problem. My fresh rate is 60.02, but I have options of 50 or 51.
I have a Nvidia FX-5200 graphics card and Samsung SyncMaster 170N monitor.
I've tried livna's rpm, same problem. Now I have Nvidia's kernel module installed. Same problem.
I am open to suggestions.


# 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"
EndSection

Section "Module"
Load "glx"
EndSection

Section "InputDevice"

# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "Monitor"
Identifier "Monitor0"
ModelName "LCD Panel 1280x1024"
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 75.0
Option "dpms"
EndSection

Section "Device"


Identifier "Videocard0"
Driver "nvidia"
Option "IgnoreEDID" "1"
# Option "UseEDIDFreqs" "false"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024_60.02"
EndSubSection
EndSection

glennzo
2007-09-09, 01:01 PM CDT
You both need to edit your /etc/X11/xorg.conf file and add modes for whatever resolution you want. The line can look like this:
Modes "1280x1024" "1024x768" 800x600"
or
Modes "1280x1024" "1024x768"
or
Modes "1280x1024"

Up to you if you want to play with refresh rates but I bet just editing the modes line will be enough. Also, if the VertRefresh and HorizSync are wrong for the monitor that screws things up. Third, try using the 'vesa' driver until you get squared away, then move to the correct driver if you wish.

The FX5200 card works well with the NVidia driver. I'm using that card in a desktop here.

glennzo
2007-09-09, 01:04 PM CDT
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024_60.02" <--- Get rid of this.
Modes "1280x1024" <----- Make it look like this.
EndSubSection
EndSection
Just a thought on how to fix your issue.

glennzo
2007-09-09, 01:13 PM CDT
Hi everyone,

I'm still a total newbie with linux...I'm running FC7 on an HP machine that has a 1.3 Ghz Athlon processor and 756 MB of memory. My screen resolution was running fine at 1028x786. However, I just rebooted my machine and my screen resolution is now gigantic at 800x600. When I go into my display options, these are my only choices:

800x600
600x480
400x300
320x240

Also, I could have sworn I had a refresh rate of 72 or 75...now the only options are 60hz and 56hz. Here's some config info:

From hardware lister:

VGA compatible controller
/0/100/1/5


product: NV15 [GeForce2 GTS/Pro]
vendor: nVidia Corporation
bus info: pci@0000:01:05.0
version: a4
width: 32 bits
clock: 66MHz
capabilities:
Power Management,
AGP,
AGP 2.0,
VGA graphical framebuffer,
bus mastering,
PCI capabilities listing
configuration:
latency: 40
maxlatency: 1
mingnt: 5

------------------------
xorg.conf:

# Xorg configuration created by pyxf86config

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nv"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024" "1024x768"
or
Modes "1024x768"
EndSubSection
EndSection

Any help would be greatly appreciated.

thanks in advance...My thoughts on your particular problem.