Here’s my “mini how-to” on how to configure your Toshiba Tecra M4 Tablet PC to work with Ubuntu Linux 8.04.1 LTS. If it hasn’t been specified here, and you need it to make this work, it’s included in the default 8.04.1 LTS installation.
————————————————
Install the following packages via apt:
wacom-tools
(xserver-xorg-input-wacom should have been installed by default)
Verify the following device is present:
/dev/input/wacom
example:
ls -l /dev/input/wacom
lrwxrwxrwx 1 root root 10 2008-12-27 21:26 wacom -> /dev/ttyS0
Place the following items in /etc/X11/xorg.conf:
Section “InputDevice”
Driver “wacom”
Identifier “cursor”
Option “Device” “/dev/input/wacom”
Option “Type” “cursor”
Option “ForceDevice” “ISDV4″
Option “Rotate” “CW”
EndSection
Section “InputDevice”
Driver “wacom”
Identifier “stylus”
Option “Device” “/dev/input/wacom”
Option “Type” “stylus
Option “ForceDevice” “ISDV4″
Option “Rotate” “CW”
EndSection
Section “InputDevice”
Driver “wacom”
Identifier “eraser”
Option “Device” “/dev/input/wacom”
Option “Type” “eraser”
Option “ForceDevice” “ISDV4″
Option “Rotate” “CW”
EndSection
You’ll notice the “Option Rotate CW” in each of the input devices. This is to allow proper orientation of the stylus when the screen is reversed and collapsed.
And add this to your ServerLayout directive in xorg.conf:
Section “ServerLayout”
Identifier “Default Layout”
screen “Default Screen”
Inputdevice “Synaptics Touchpad”
Inputdevice “cursor” “SendCoreEvents”
Inputdevice “stylus” “SendCoreEvents”
Inputdevice “eraser” “SendCoreEvents”
EndSection
Add the “Option RandRRotation on” to your screen device. This will allow for screen rotation in the System – Prefs – Screen Resolution preference pane.
Section “Device”
Identifier “Configured Video Device”
Driver “nvidia”
Option “NoLogo” “True”
Option “RandRRotation” “on”
EndSection
Reboot and you should be good to go. A great on-screen keyboard is xvkbd, available via apt.
David Mussington said,
02/03/2009 at 1:22 AM
I tried your instructions with Ubuntu 8.10 and they do not work – triggering an error that requires the restoration of the backup xorg.conf. Could you check and see what modifications might work? Thanks in advance for the very useful site.
David Mussington
erinlea said,
03/15/2009 at 2:38 AM
I used 8.04.1 LTS and that config seemed to work. Sorry I couldn’t be of more help! My tablet died shortly after posting this config.
David Mussington said,
03/15/2009 at 2:49 AM
Thanks. I am using the system as a conventional laptop anyway. Everything works except the pen features. Let me know what you find:
David
David Mussington said,
03/15/2009 at 2:50 AM
Let me know how it goes.
D