The X201 has a Wacom serial touch screen. The first thing to do is make sure the modules are loaded:
- Code: Select all
sudo modprobe wacom wacom_w8001
You can add this to /etc/modules to ensure they are loaded on boot:
- Code: Select all
sudo echo wacom >> /etc/modules
Then figure out where it's attaching:
- Code: Select all
grep -i 'wacom' /var/log/syslog
yields something like:
- Code: Select all
Mar 3 13:22:09 mylaptop kernel: [20322.211375] input: Wacom Serial Penabled 2FG Touchscreen as /devices/pnp0/00:0b/tty/ttyS4/serio17/input/input24
You can see that mine is ttyS4 (/dev/ttyS4)
Next is to make it usable:
- Code: Select all
inputattach --w8001 /dev/ttyS4
You can make this persist on reboots by adding it to /etc/rc.local:
- Code: Select all
sudo gedit /etc/rc.local
Here is mine:
- Code: Select all
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
inputattach --w8001 /dev/ttyS4
exit 0
Now you can go to 'System Settings', select 'Wacom Graphics Tablet', and it should have all kinds of options for configuring it that didn't show up before.
The new window manager makes it really nifty to use. Great work Mint development team, and thank you!


