## page was renamed from LaptopTestingTeam/ToshibaProtege3500 = Installation = I chose to do a PXE installation due to the fact that this model has no CD-ROM and no floppy. The installation went smooth, Ubuntu recognized most of my hardware and X ran out-of-the-box. == Detected Hardware == * ethernet and wireless * touchpad * video card == Missing Hardware == * Pen/Stylus/Digitizer <- whatever you want to call it == Unknown == These hardware components have not been tested by myself as I have no use for them. * Card readers: SD/MMC/CF * PCMCIA * IrDA - will test later * External monitor - will test later = Configuration = == Tablet Pen == In order to get this working I had to install the {{{setserial}}} program. Edit the /etc/serial.conf file, and add the following line to it: {{{ /dev/ttyS0 port 0x338 irq 4 autoconfig }}} Re-start the computer or just execute (as root) {{{ # setserial /dev/ttyS0 port 0x338 irq 4 autoconfig }}} Add the following lines to /etc/X11/xorg.conf: {{{ Section "Module" ... Load "wacom" # add this line EndSection ... ... ... # These lines should go after the detected mouse and touchpad Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/ttyS0" Option "ForceDevice" "ISDV4" Option "Type" "cursor" Option "Mode" "absolute" Option "Speed" "3.0" Option "Threshold" "2" # Option "DebugLevel" "10" # Option "MaxX" "24576" # Option "MaxY" "18432" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/ttyS0" Option "Type" "stylus" Option "Mode" "absolute" # Option "Tilt" "on" # Option "TiltInvert" "on" Option "Threshold" "2" # Option "DebugLevel" "10" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/ttyS0" Option "Type" "eraser" Option "Mode" "absolute" # Option "Tilt" "on" # Option "TiltInvert" "on" Option "Threshold" "2" # Option "DebugLevel" "10" EndSection Section "ServerLayout" ... # TabletPC Pen Device InputDevice "cursor" "SendCoreEvents" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" EndSection }}} Restart X and the pen should work!