You are not logged in.
My video driver was use internal intel chip and it works fine.
I bought a nvidia card to try twinhead setup. I try single screen setup at first.
I follow the wiki setup minimal /etc /X11/xorg.conf as
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSectionBut, when I enter X11, I can not use keyboard and mouse.
After several hours try and errors, one solution is:
Keep a file /etc/X11/xorg.conf.d/10-evdev.conf instead of remove all /etc/X11/xorg.conf.d
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSectionLast edited by dlin (2013-06-02 15:39:46)
Running 4 ArchLinux including sh4twbox,server,notebook,desktop. my AUR packages
Offline
I would suggest you use split configuration files rather than creating an xorg.conf file.
In other words. move your file into /etc/X11/xorg.conf.d and rename it to something like 10-nvidia.conf
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline