The Asus's T91MT is a fantastic device for
many reasons, but one thing I dislike about the device is that it ships by default with only Windows 7. I firmly believe a computer is a terrible thing to waste, so as such the first thing I did was to install Linux on the system when I opened the box. After trying many different flavors of Linux over the course of two weeks I finally settled on Linux Mint 8 as the primary operating system for my tablet device. The following is a summary of how to get the T91MT mostly functional under Linux Mint 8.
#1 Fixing the WifiThere are two issues with the wifi I have under Linux Mint, one I have corrected and one I have not. The first is that for some odd reason the wifi in the laptop is disabled at startup - meaning I have to press function+f2 to toggle the wifi on before I can get a connection.
The second issue is one we can easily fix. If you notice once you do get a connection to something it will not be a very strong signal. To fix this we need to install the back-port modules for the wireless drivers. To do so run the following in terminal (while you are online):
sudo apt-get install linux-backports-modules-karmic \
linux-backports-modules-wireless-karmic-generic
My wireless signal jumped from 2 bars to 4 bars at my desk after I installed these.
#2 Resolving the Graphics Card IssueThe graphics card in the T91MT is the notorious Intel GMA500 (look for a rant on this one coming soon), in short it is not really an Intel graphics card. It is a chip made by an outside company that Intel stamped their name on, as such it needs some closed source drivers installed to function properly. To install the drivers run the following in terminal (while you are online):
sudo apt-get update && sudo apt-get upgrade && \
sudo apt-get install linux-headers-generic && \
wget http://dl.dropbox.com/u/1338581/Gma500/scripts/poulsbo.sh && \
sh ./poulsbo.sh
After this finishes (and it will take some time) reboot the computer and it should boot into the beautiful 1024x600 resolution.
#3 Setting up the Touch ScreenThe default evtouch package in the repositories does not support the T91MT by default, to resolve this download
this file. The following assumes the file was downloaded to your
~/Downloads folder, run the following in terminal:
cd ~/Downloads
tar zxvf xf86-input-evtouch-0.8.8-T91MT.tar.gz
sudo cp 69-touchscreen.rules /etc/udev/rules.d/
sudo cp 50-asustek.fdi /usr/share/hal/fdi/policy/20thirdparty/
cd xf86-input-evtouch-0.8.8-T91MT
sudo apt-get install xserver-xorg-input-evtouch xserver-xorg-dev
make clean && make
sudo cp ./.libs/evtouch_drv.so /usr/lib/xorg/modules/input/evtouch_drv.so
For some reason the calibrate program does not function on the T91MT while the display manager is running (meaning you might want to open this page on another system for the next few steps). Press
ctrl+alt+f1 to drop down to a tty, enter your username and password and then run the following:
sudo /etc/init.d/gdm stop
sudo /usr/bin/calibrate_touchscreen
The on-screen instructions do not appear, instead you are simply presented with the calibration window. To calibrate the screen first place the pen in one corner of the screen and trace along the edges of the entire screen until you get back to your starting point (you know it is working if the numbers on screen are changing). After you have traced all four edges of the screen press the enter key. After a moment one of the Xs on screen will turn
red, tap the center of the X that is red. Repeat this with each of the Xs as they appear red. After you have finished this, if the calibrate does not automatically close press the enter key, this should return you to the terminal login. To start your display manager back up run the following in terminal:
sudo /etc/init.d/gdm start
That concludes the configuring of the three key functionalities on your T91MT under Linux Mint 8. If you are looking for some fun/useful touchscreen applications I use the following on my tablet:
Utilities:CellWriter - Best on-screen keyboard I've found for Linux. Also includes hand-writing recognition if you train it some to your writing style
EasyStroke - Allows you to fire command or push buttons when you pen in certain gestures on screen. Some of the things I use it for are right clicking, switching desktops, and loading my favorite programs.
Writing:GIMP - You classic image manipulation program for all operating systems. It is fun to play with on the tablet.
Xournal - Turns your computer into a pad of notebook paper. Allows for easily importing pdf files to write on and does one click pdf exporting for documents you create. I use this for all my note taking in class.
MyPaint - For free hand drawing this one I prefer to GIMP (also a bit less resource intensive). This one is not included in the repositories however, you need to install it from
GetDeb.netGames:Asileroit Solitaire - Because who uses a real deck of cards anymore?
Palapeli - A jigsaw puzzle game.
Phun - A 2D physics game, lots of fun to poke around with. This is another one that has to come from GetDeb.net
World of Goo - Runs quite well on the GMA500, this one is a blast on the tablet. You do need to
purchase this one though.
Finally, I would like to mention these instructions pertain only to Linux Mint
8. Due to an issue with the GMA500 graphics driver and the Xorg server higher than 1.6.x these instructions will not work with a version higher than Linux Mint
8.
Have any trouble or questions feel free to drop me a line below and I will do my best to answer.
~Jeff Hoogland