SUBPAGE MENU





touchscreen_disable



#
Last modified
16_05_01
#



############################################
#
# CONTENT
#
############################################

############
How to do disable touchscreen in Linux:

######
1. Edit /usr/share/X11/xorg.conf.d/10-evdev.conf

command:
######

######
2. Add Option "Ignore" "on" to the end of the section with the touchscreen identifier.

text:

example:
            Section "InputClass"
                    Identifier "evdev touchscreen catchall"
                    MatchIsTouchscreen "on"
                    MatchDevicePath "/dev/input/event*"
                    Driver "evdev"
                    Option "Ignore" "on"
            EndSection
            
######

######
3. Reboot
######
############



############################################
#
# SOFTWARE VERSION INFO
#
############################################

Description: Debian GNU/Linux 7.7 (wheezy)
#1 SMP Debian 3.16.7-ckt2-1~bpo70+1 (2014-12-08)
3.16.0-0.bpo.4-amd64
Aspire S7-392



############################################
#
# TROUBLESHOOTING
#
############################################

no trouble



############################################
#
# SOURCES
#
############################################

############
How do I disable the touchscreen drivers?
http://askubuntu.com/questions/198572/how-do-i-disable-the-touchscreen-drivers
############

########################