Wacom Bamboo Pen and Touch Tablet

Posted by Justin | Application Tests,General News,Tutorials | Saturday 31 July 2010 6:55 pm

Today I hunkered down and blew $100 on a Wacom Bamboo tablet (Pen and Touch). I purchased it fully expecting to be returning it in a day or two because it just would not work at all with Linux. I’m happy to admit; I’m wrong!

The touch portion “works” but it’s very glitchy and hard to control. The pen on the other hand is really good; about as good as I would expect from a $100 Wacom tablet. My mother in law swears by her Tablet (top of the line 4-5 year old Wacom). This little Bamboo even spans my dual monitors with out any adjustments. It did take a bit to setup, but once it was going; it works great.

Initially I used this site to get things rolling. I ventured back to the good old Ubuntu forums for the specifics. In my case I specifically needed to know “HOW IN THE HELL TO MAKE IT LEFT HANDED”?! In the end; that was very easy to take care of, and things have been just peachy ever since. If I were to do it again; I may only purchase the Pen version; but knowing I have the touch side of things if I want to tweak them is kind of fun.

Here are one of my first sketches from the Wacom Bamboo Pen and Touch:

First Wacom Bamboo Sketch

First Wacom Bamboo Sketch

This image was drawn using The Gimp with a pencil set to 3 with Pressure sensitivity set up in devices. I’ve been quickly falling in love with Inkscape, so I’m sure I’ll be pushing out more drawings using that application; it’s freakin’ awesome!

[edit]

Thought I better go through what I did and do with the Wacom Tablet now that the installation process is fresh again:

I got most of the rest of this at: UbuntuGeek
I put it down here in case that link ever goes dead.

Then head over to the Wacom driver site to get the latest Linux driver (gotta give it to Wacom; they at least do that much for us). http://linuxwacom.sourceforge.net/ doesn’t matter where you download it; we can toss the directory after it’s all installed.
Untar the file with the command:

tar -xf linuxwacom-0.8.8-8.tar.bz2 (your version may be newer).

cd into that directory:


cd linuxwacom-0.8.8-8/
./configure --enable-wacom
cd src/2.6.30/
make
sudo cp wacom.ko /lib/modules/`uname -r`/kernel/drivers/input/tablet/
sudo rmmod wacom
sudo modprobe wacom

I put this script in my ~/.config directory to make my tablet left handed (you can leave out all the HALF commands if you one of those “RIGHT HANDED” people.


#!/bin/bash
xsetwacom set "Wacom BambooFun 2FG 4x5 Finger" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Finger pad" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen eraser" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" button1 1
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" button2 2
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" button3 3

The last thing you need to do is to add “wacom” to the /etc/modules file so you will not have to redo the modprobe each reboot.
[/edit]

wget -c -i url.txt

Posted by Justin | Tutorials | Sunday 30 May 2010 10:40 pm

Well, finally after some 9 years of playing with Linux (and wget) I figured out (well, Googled and found the answer) to downloading multiple URL files at once with wget (I used to just use && between wget commands to continue the process.

It is as simple as making a temporary *.txt file in your /tmp directory full of all the URLs. In my case I was downloading some music I had just purchased and the only two buttons available were the link to the song or a link with a plain text window of all the links in the album.

Simply copy and paste your URLs in a text file (each URL needs it’s very own line) save it as a *.txt file and walla, fire up wget: like this…

wget -c -i /tmp/file.txt

It will go down your txt file and individually download each URL into what ever directory you are presently in.

Easy peasy,
Justin

I found this help at: “txt” site.

Screenshot w/ssh/CLI

Posted by Justin | Application Tests,Experiments,Networking,Tutorials | Wednesday 11 March 2009 12:23 pm

I’ve always wanted to put out what my MythBuntu box looks like, but couldn’t figure out how to get a screenshot w/out snagging a keyboard and using the gnome screenshot tools.

So basically you use “import” to get a screenshot of a screen while you are ssh’ed into that machine. My instance was:

$ import -window root -display :0 test.png && rsync -avz test.png justin@192.168.0.39:/home/justin/Desktop

So it basically snagged a screenshot of what ever was on display :0 then I used rsync to copy that file to my current computer’s desktop.

Here is what that command produced:

MythBuntu Media Menu

MythBuntu Media Menu

This menu is the tip of the iceburg. The icons you see here are all folders with movies or parts of the movies inside. If I were to scroll down, you would see the movies that are singular in nature that did not need to be broken into pieces.

Enjoy,

Justin

Next Page »