You are not logged in.
Pages: 1
I'm having a strange problem with my Nvidia card. I freshly reinstalled Arch from 64 to 32, everything was working fine i simply wanted more program options. I never had this problem with my previous installation.
I'm running xgl and everything seems to be working fine, beryl works fine too but.
Everytime I would open up NVIDIA X Server Setting I would encounter an error message:
You do not appear to be using the NVIDIA X driver. Please edit your X configuration file (just run `nvidia-xconfig` as root), and restart the X server.
running nvidia-xconfig in or out of x says the xorg.conf is rewritten but I still get the error.
I've followed the wiki but I'm stumped as to where I messed up.
My Video Card is...
01:00.0 VGA compatible controller: nVidia Corporation G70 [GeForce 7600 GT] (rev a1)
my xorg.conf...
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/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "xtrap"
Load "dbe"
Load "record"
Load "extmod"
Load "glx"
Load "type1"
Load "freetype"
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"
Identifier "Card0"
Driver "nvidia"
VendorName "nVidia Corporation"
BoardName "G70 [GeForce 7600 GT]"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
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
Section "Extensions"
Option "Composite" "Enable"
EndSection
Can someone help me out?
Offline
Post the results of the
cat /var/log/Xorg.0.log | grep WW
cat /var/log/Xorg.0.log | grep EE
Offline
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(WW) NVIDIA(0):
(WW) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
(WW) NVIDIA(0): will be used as the requested mode.
(WW) NVIDIA(0):
(WW) NVIDIA(0): Option "AGPFastWrite" is not used
(WW) NVIDIA(0): Option "EnablePageFlip" is not used
Offline
just a shot in the dark, but maybe you're running the wrong nvidia drivers? see `# pacman -Ss nvidia`
Send all your spam to webmaster@spamtest.erik.in !! mwuahaha
Offline
i had the same problem, insert into your /etc/xorg.conf (as root) in "Section "Screen"" something like:
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1400x1050" "1280x1024" "1280x960" "1280x800" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Note the "Modes VVVxHHH ..." line, that was my solution, after inserting it.
DON'T copy the line above, you have to find out what you card/monitor can do!
helpful?
GNU/Linux is not only another operating system. It is freedom from any point view!
Offline
Pages: 1