LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   NVIDIA does not work properly in 10.1 (https://www.linuxquestions.org/questions/slackware-14/nvidia-does-not-work-properly-in-10-1-a-306663/)

Cornholio 03-27-2005 10:43 AM

NVIDIA does not work properly in 10.1
 
Hi there!

Today I installed Slack10.1 over my 10.0 nearly everything works from the beginnning!

Only problem by now is, that I can't get my old resolution of 1280x1024 working again. The max is 1024x768

I installed my old NVIDIA-drivers ...6111 and now installed 7167 ... but nothing changed.

Did I miss something? I changed my xorg.conf ... by changing "vesa" to "nvidia" and glx was loaded from the beginning and the two lines the should not be in the .conf were never in it. I added the modes "1280x1024" to all of my bitdepths ... I can't remember that I did more the last time on 10.0

Kernel is from Slack10.1 CD ... bareacpi ... version 2.4.29

Can someone help me out?

I post my xorg.conf below...

Thanks very much!

Greetings, Sascha

Cornholio 03-27-2005 10:45 AM

Section "Module"
Load "dbe" # Double buffer extension
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
Load "type1"
Load "freetype"
#Load "speedo"
Load "glx"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/X11R6/lib/X11/fonts/local/"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic/"
EndSection

Section "ServerFlags"
EndSection

Section "InputDevice"
Identifier "Keyboard1"
Driver "kbd"
# Option "Xleds" "1 2 3"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
# Option "Protocol" "Auto"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
# Option "Device" "/dev/psaux"
# Option "Device" "/dev/ttyS0"
# Option "Device" "/dev/ttyS1"
Option "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
Identifier "My Monitor"
HorizSync 31.5 - 50.0
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
VertRefresh 40-90
EndSection

Section "Device"
Identifier "VESA Framebuffer"
# Driver "vesa"
Driver "nvidia"
#VideoRam 4096
# Insert Clocks lines here if appropriate
EndSection

Section "Screen"
Identifier "Screen 1"
Device "VESA Framebuffer"
Monitor "My Monitor"
# DefaultDepth 8
# DefaultDepth 16
DefaultDepth 24
# DefaultDepth 32

Subsection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 32
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubsection
EndSection

Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection

BenneJezzerette 03-28-2005 01:01 AM

to fix 1280x1024 not working. Be sure you know your Monitors Verticle Refresh Rate or Verticle Sync. This is the major problem for all nVidia Cards and I hav efixed it by setting on my 15" display the Verticle refresh to 50-120 to make it work. This has worked from the day Istarted to make it and you need to be sure of your monitors abilities and I do not even have the nVidia Driver installed and has no issues with any of the crashes or debug problems.

tormented_one 03-28-2005 01:58 AM

The vesa driver is not real efficent and uses cpu time so there is some overhead using the vesa driver. Also by not using the nvidia driver no accellerated graffics. Also check your video ram. With only 4mb of video ram 1280x1024 might be pushing it.

BenneJezzerette 03-28-2005 02:29 AM

Quote:

Originally posted by tormented_one
The vesa driver is not real efficent and uses cpu time so there is some overhead using the vesa driver. Also by not using the nvidia driver no accellerated graffics. Also check your video ram. With only 4mb of video ram 1280x1024 might be pushing it.
WFM just fine 64MB of SDRAM on board. This is one of the things I make sure people read about before trying this, make sure you know your Ram for the Video card, and one note to self, if anyone has an on board video card, then you are streatching it with limitations of a max of 11Mb on some systems and 2MB as the max on others.

WFM = Works For Me

I have a new version of the 2.6.11.6 and 2.6.6 kerenls too just got off the ftp site from kernel.org. Going to try the 2.6.11.6 first and if I can make that work thenthe 2.6.6 is going to be just fine,

frandalla 03-28-2005 10:57 AM

Do check that vetical and horizontal refresh rate.
I think the best thing for you is 60-120 on the VertRefresh.
HorizSync 31.5 - 50.0 might be OK

HorizSync 31.5 - 50.0
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
VertRefresh 40-90

Cornholio 03-28-2005 12:13 PM

You were right guys! I put in the correct rates and it worked!!!

Thanks very much for your great help!!

Greetings, Sascha

BenneJezzerette 03-28-2005 03:00 PM

Quote:

Originally posted by Cornholio
You were right guys! I put in the correct rates and it worked!!!

Thanks very much for your great help!!

Greetings, Sascha

That is why I came here, to get help, and now I am just passing it back out. You are Very Welcome


All times are GMT -5. The time now is 02:07 AM.