• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

redhat8 and xfree86..tried everything i could think of

Need4Speed

Diamond Member
Ok, so this is driving me nut...ive been trying to increse the refresh rate on my monitor, and for the life of me I can't get it to stick.

My monitor is a samsung 900ift and the vidcard is G4 4600. It's almost like win2k/xp in that i can't get it off 60Hz 🙁
Ive tried editing the XF86Config file and adding to proper modelines for the monitor under the monitor section as follows:

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Samsung SyncMaster 900IFT"
HorizSync 30.0 - 96.0
VertRefresh 50.0 - 160.0
ModeLine "640x480" 25.175 640 656 752 800 480 490 492 525 -hsync -vsync
ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
ModeLine "640x480" 36 640 696 752 832 480 481 484 509 -hsync -vsync

ModeLine "800x600" 40 800 840 968 1056 600 601 605 628 +hsync +vsync
ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
ModeLine "800x600" 56.25 800 832 896 1048 600 601 604 631 +hsync +vsync

ModeLine "1024x768" 65 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
ModeLine "1024x768" 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync

ModeLine "1280x1024" 108 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
ModeLine "1280x1024" 135 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync

ModeLine "1600x1200" 162 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
Option "dpms"
EndSection

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

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 16
SubSection "Display"
Modes "800x600"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

I'm at a loss...anyone got any clues?
thnx
-patrick

 
The problem is not with the monitor it is with the driver. With the vesa driver the best that you will get is the 60Hz. My suggestion- pull with src rpms from Nvidia and do the following

rpmbuild --rebuild NVIDIA_k*.rpm
rpmbuild --rebuild NVIDIA_G*.rpm

cd /usr/src/redhat/RPMS
rpm -ihv NVIDIA_*.rpm


edit /etc/X11/XF86Config -

remove the following line

load dri

and change the Driver "vesa"
to Driver "nvidia"

reboot and you should get 85Hz and an nVidia splash screen
 
Or drop the framebuffer and go with the nv driver instead of vesa. Framebuffer is nice and all but it just constrains you in X (for that matter I would have thought the nvidia drivers wouldn't work with the framebuffer either...)
 
Man, get rid of those Vesa drivers! Compile the NVIDIA tarballs, and use the good ol' 'nvidia' driver. Use RPM's if you want , but I've seen problems occur from the RPMS vs the tarballs. Just remember the NVIDIA_kernel package goes first. 😀
 
I attempted to do just that...install the nvidia drivers, but I kept getting an error when I running the rpmbuild on the kernel source. I don't have the error handy at the time, but I'll try to post it later.

Thanks for the advice.
 
Back
Top