You are not logged in.

#1 2013-06-02 11:07:55

dlin
Member
From: Taipei,Taiwan
Registered: 2005-09-21
Posts: 265

[SOLVED] Nvidia X11 setup can not input

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

But, 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"
EndSection

Last edited by dlin (2013-06-02 15:39:46)


Running 4 ArchLinux including sh4twbox,server,notebook,desktop. my AUR packages

Offline

#2 2013-06-02 15:40:41

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,693

Re: [SOLVED] Nvidia X11 setup can not input

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

Board footer

Powered by FluxBB