<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Ubuntu DIGIPRO T-8000U T-6000U T-5500U 12000U 14000U</title>
	<atom:link href="http://www.blogternals.com/2009/09/05/ubuntu-digipro-t-8000u-t-6000u-t-5500u-12000u-14000u/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogternals.com/2009/09/05/ubuntu-digipro-t-8000u-t-6000u-t-5500u-12000u-14000u/</link>
	<description>Knowledge Belongs to the World!</description>
	<lastBuildDate>Wed, 10 Mar 2010 03:18:44 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ian Prideaux</title>
		<link>http://www.blogternals.com/2009/09/05/ubuntu-digipro-t-8000u-t-6000u-t-5500u-12000u-14000u/comment-page-1/#comment-733</link>
		<dc:creator>Ian Prideaux</dc:creator>
		<pubDate>Thu, 19 Nov 2009 11:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogternals.com/?p=995#comment-733</guid>
		<description>I swear to the gods, I will _NEVER_ buy another Aiptek graphics tablet to work with Linux again, This thing is so flakey. Sometimes it works, sometimes it doesn&#039;t. Latest is that I don&#039;t need an entry in /etc/modules, but I need to do some extra programming. Here&#039;s my rc.d file:


#!/bin/bash

case $1 in
        start)
                for EXEC_FILE in /sys/bus/usb/drivers/aiptek/*/execute
                do
                        DIR_NAME=`dirname $EXEC_FILE`
                        echo -n &quot;Setting Up Aiptek $DIR_NAME &quot;
                        logger &quot;Setting Up Aiptek $DIR_NAME&quot;

                        echo &quot;relative&quot; &gt; $DIR_NAME/coordinate_mode
                        echo &quot;anything&quot; &gt; $DIR_NAME/execute
                        echo -n &quot;.&quot;

                        echo &quot;absolute&quot; &gt; $DIR_NAME/coordinate_mode
                        echo &quot;anything&quot; &gt; $DIR_NAME/execute
                        echo -n &quot;.&quot;

                        echo &quot;pencil&quot; &gt; $DIR_NAME/tool_mode
                        echo &quot;anything&quot; &gt; $DIR_NAME/execute
                        echo -n &quot;.&quot;

                        echo &quot;&quot;
                done
                ;;
        stop)   ;;
        status) ;;
        restart)        ;;
        force-reload)   ;;
        *)
                echo &quot;Usage: $SCRIPTNAME {start}&quot; &gt;&amp;2
                exit 3
                ;;
esac
&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;733&#039;,&#039;Ian Prideaux&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;733&#039;,&#039;Ian Prideaux&#039;,&#039;I swear to the gods, I will _NEVER_ buy another Aiptek graphics tablet to work with Linux again, This thing is so flakey. Sometimes it works, sometimes it doesn\&#039;t. Latest is that I don\&#039;t need an entry in \/etc\/modules, but I need to do some extra programming. Here\&#039;s my rc.d file:\r\n\r\n\r\n#!\/bin\/bash\r\n\r\ncase $1 in\r\n        start)\r\n                for EXEC_FILE in \/sys\/bus\/usb\/drivers\/aiptek\/*\/execute\r\n                do\r\n                        DIR_NAME=`dirname $EXEC_FILE`\r\n                        echo -n \&quot;Setting Up Aiptek $DIR_NAME \&quot;\r\n                        logger \&quot;Setting Up Aiptek $DIR_NAME\&quot;\r\n\r\n                        echo \&quot;relative\&quot; &gt; $DIR_NAME\/coordinate_mode\r\n                        echo \&quot;anything\&quot; &gt; $DIR_NAME\/execute\r\n                        echo -n \&quot;.\&quot;\r\n\r\n                        echo \&quot;absolute\&quot; &gt; $DIR_NAME\/coordinate_mode\r\n                        echo \&quot;anything\&quot; &gt; $DIR_NAME\/execute\r\n                        echo -n \&quot;.\&quot;\r\n\r\n                        echo \&quot;pencil\&quot; &gt; $DIR_NAME\/tool_mode\r\n                        echo \&quot;anything\&quot; &gt; $DIR_NAME\/execute\r\n                        echo -n \&quot;.\&quot;\r\n\r\n                        echo \&quot;\&quot;\r\n                done\r\n                ;;\r\n        stop)   ;;\r\n        status) ;;\r\n        restart)        ;;\r\n        force-reload)   ;;\r\n        *)\r\n                echo \&quot;Usage: $SCRIPTNAME {start}\&quot; &gt;&amp;2\r\n                exit 3\r\n                ;;\r\nesac\r\n&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>I swear to the gods, I will _NEVER_ buy another Aiptek graphics tablet to work with Linux again, This thing is so flakey. Sometimes it works, sometimes it doesn&#8217;t. Latest is that I don&#8217;t need an entry in /etc/modules, but I need to do some extra programming. Here&#8217;s my rc.d file:</p>
<p>#!/bin/bash</p>
<p>case $1 in<br />
        start)<br />
                for EXEC_FILE in /sys/bus/usb/drivers/aiptek/*/execute<br />
                do<br />
                        DIR_NAME=`dirname $EXEC_FILE`<br />
                        echo -n &#8220;Setting Up Aiptek $DIR_NAME &#8221;<br />
                        logger &#8220;Setting Up Aiptek $DIR_NAME&#8221;</p>
<p>                        echo &#8220;relative&#8221; &gt; $DIR_NAME/coordinate_mode<br />
                        echo &#8220;anything&#8221; &gt; $DIR_NAME/execute<br />
                        echo -n &#8220;.&#8221;</p>
<p>                        echo &#8220;absolute&#8221; &gt; $DIR_NAME/coordinate_mode<br />
                        echo &#8220;anything&#8221; &gt; $DIR_NAME/execute<br />
                        echo -n &#8220;.&#8221;</p>
<p>                        echo &#8220;pencil&#8221; &gt; $DIR_NAME/tool_mode<br />
                        echo &#8220;anything&#8221; &gt; $DIR_NAME/execute<br />
                        echo -n &#8220;.&#8221;</p>
<p>                        echo &#8220;&#8221;<br />
                done<br />
                ;;<br />
        stop)   ;;<br />
        status) ;;<br />
        restart)        ;;<br />
        force-reload)   ;;<br />
        *)<br />
                echo &#8220;Usage: $SCRIPTNAME {start}&#8221; &gt;&amp;2<br />
                exit 3<br />
                ;;<br />
esac</p>
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('733','Ian Prideaux'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('733','Ian Prideaux','I swear to the gods, I will _NEVER_ buy another Aiptek graphics tablet to work with Linux again, This thing is so flakey. Sometimes it works, sometimes it doesn\'t. Latest is that I don\'t need an entry in \/etc\/modules, but I need to do some extra programming. Here\'s my rc.d file:\r\n\r\n\r\n#!\/bin\/bash\r\n\r\ncase $1 in\r\n        start)\r\n                for EXEC_FILE in \/sys\/bus\/usb\/drivers\/aiptek\/*\/execute\r\n                do\r\n                        DIR_NAME=`dirname $EXEC_FILE`\r\n                        echo -n \&quot;Setting Up Aiptek $DIR_NAME \&quot;\r\n                        logger \&quot;Setting Up Aiptek $DIR_NAME\&quot;\r\n\r\n                        echo \&quot;relative\&quot; &amp;gt; $DIR_NAME\/coordinate_mode\r\n                        echo \&quot;anything\&quot; &amp;gt; $DIR_NAME\/execute\r\n                        echo -n \&quot;.\&quot;\r\n\r\n                        echo \&quot;absolute\&quot; &amp;gt; $DIR_NAME\/coordinate_mode\r\n                        echo \&quot;anything\&quot; &amp;gt; $DIR_NAME\/execute\r\n                        echo -n \&quot;.\&quot;\r\n\r\n                        echo \&quot;pencil\&quot; &amp;gt; $DIR_NAME\/tool_mode\r\n                        echo \&quot;anything\&quot; &amp;gt; $DIR_NAME\/execute\r\n                        echo -n \&quot;.\&quot;\r\n\r\n                        echo \&quot;\&quot;\r\n                done\r\n                ;;\r\n        stop)   ;;\r\n        status) ;;\r\n        restart)        ;;\r\n        force-reload)   ;;\r\n        *)\r\n                echo \&quot;Usage: $SCRIPTNAME {start}\&quot; &amp;gt;&amp;amp;2\r\n                exit 3\r\n                ;;\r\nesac\r\n'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Prideaux</title>
		<link>http://www.blogternals.com/2009/09/05/ubuntu-digipro-t-8000u-t-6000u-t-5500u-12000u-14000u/comment-page-1/#comment-728</link>
		<dc:creator>Ian Prideaux</dc:creator>
		<pubDate>Tue, 17 Nov 2009 21:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogternals.com/?p=995#comment-728</guid>
		<description>I sweated the thick end of a week to get mine working in Ubuntu 9.10. Have a read of the sourceforge site http://aiptektablet.sourceforge.net/kernel.html. I had to add aiptek to /etc/modules, create the hal policy file (as above). That still didn&#039;t work. I finally had to program the driver:

echo pencil &gt; tool_mode
echo something &gt; execute

I this in a rc.d file.&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;728&#039;,&#039;Ian Prideaux&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;728&#039;,&#039;Ian Prideaux&#039;,&#039;I sweated the thick end of a week to get mine working in Ubuntu 9.10. Have a read of the sourceforge site http:\/\/aiptektablet.sourceforge.net\/kernel.html. I had to add aiptek to \/etc\/modules, create the hal policy file (as above). That still didn\&#039;t work. I finally had to program the driver:\r\n\r\necho pencil &gt; tool_mode\r\necho something &gt; execute\r\n\r\nI this in a rc.d file.&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>I sweated the thick end of a week to get mine working in Ubuntu 9.10. Have a read of the sourceforge site <a href="http://aiptektablet.sourceforge.net/kernel.html" rel="nofollow">http://aiptektablet.sourceforge.net/kernel.html</a>. I had to add aiptek to /etc/modules, create the hal policy file (as above). That still didn&#8217;t work. I finally had to program the driver:</p>
<p>echo pencil &gt; tool_mode<br />
echo something &gt; execute</p>
<p>I this in a rc.d file.
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('728','Ian Prideaux'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('728','Ian Prideaux','I sweated the thick end of a week to get mine working in Ubuntu 9.10. Have a read of the sourceforge site http:\/\/aiptektablet.sourceforge.net\/kernel.html. I had to add aiptek to \/etc\/modules, create the hal policy file (as above). That still didn\'t work. I finally had to program the driver:\r\n\r\necho pencil &amp;gt; tool_mode\r\necho something &amp;gt; execute\r\n\r\nI this in a rc.d file.'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eraldo</title>
		<link>http://www.blogternals.com/2009/09/05/ubuntu-digipro-t-8000u-t-6000u-t-5500u-12000u-14000u/comment-page-1/#comment-679</link>
		<dc:creator>Eraldo</dc:creator>
		<pubDate>Sat, 24 Oct 2009 11:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogternals.com/?p=995#comment-679</guid>
		<description>I have an &quot;Aiptek T-8000U&quot; and tried to get it running following your tutorial, but I get an error in dmesg:
[55720.222634] aiptek 2-5:1.0: Aiptek tried all speeds, no sane response
[55720.222679] aiptek: probe of 2-5:1.0 failed with error -12
Any idea why that is the case or how I can fix it?
If you need more information... please let me know!

Greetings from Austria,
Eraldo&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;679&#039;,&#039;Eraldo&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;679&#039;,&#039;Eraldo&#039;,&#039;I have an \&quot;Aiptek T-8000U\&quot; and tried to get it running following your tutorial, but I get an error in dmesg:\r\n&#91;55720.222634&#93; aiptek 2-5:1.0: Aiptek tried all speeds, no sane response\r\n&#91;55720.222679&#93; aiptek: probe of 2-5:1.0 failed with error -12\r\nAny idea why that is the case or how I can fix it?\r\nIf you need more information... please let me know!\r\n\r\nGreetings from Austria,\r\nEraldo&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>I have an &#8220;Aiptek T-8000U&#8221; and tried to get it running following your tutorial, but I get an error in dmesg:<br />
[55720.222634] aiptek 2-5:1.0: Aiptek tried all speeds, no sane response<br />
[55720.222679] aiptek: probe of 2-5:1.0 failed with error -12<br />
Any idea why that is the case or how I can fix it?<br />
If you need more information&#8230; please let me know!</p>
<p>Greetings from Austria,<br />
Eraldo
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('679','Eraldo'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('679','Eraldo','I have an \&quot;Aiptek T-8000U\&quot; and tried to get it running following your tutorial, but I get an error in dmesg:\r\n&amp;#91;55720.222634&amp;#93; aiptek 2-5:1.0: Aiptek tried all speeds, no sane response\r\n&amp;#91;55720.222679&amp;#93; aiptek: probe of 2-5:1.0 failed with error -12\r\nAny idea why that is the case or how I can fix it?\r\nIf you need more information... please let me know!\r\n\r\nGreetings from Austria,\r\nEraldo'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oblivion</title>
		<link>http://www.blogternals.com/2009/09/05/ubuntu-digipro-t-8000u-t-6000u-t-5500u-12000u-14000u/comment-page-1/#comment-603</link>
		<dc:creator>Oblivion</dc:creator>
		<pubDate>Wed, 16 Sep 2009 14:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogternals.com/?p=995#comment-603</guid>
		<description>Thanks for this awesome write-up. It worked perfectly and my daughter is playing with TuxPaint right now!&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;603&#039;,&#039;Oblivion&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;603&#039;,&#039;Oblivion&#039;,&#039;Thanks for this awesome write-up. It worked perfectly and my daughter is playing with TuxPaint right now!&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for this awesome write-up. It worked perfectly and my daughter is playing with TuxPaint right now!
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('603','Oblivion'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('603','Oblivion','Thanks for this awesome write-up. It worked perfectly and my daughter is playing with TuxPaint right now!'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ubuntu DIGIPRO T-8000U T-6000U T-5500U 12000U 14000U&#160;&#124;&#160;Webternals, LLC</title>
		<link>http://www.blogternals.com/2009/09/05/ubuntu-digipro-t-8000u-t-6000u-t-5500u-12000u-14000u/comment-page-1/#comment-564</link>
		<dc:creator>Ubuntu DIGIPRO T-8000U T-6000U T-5500U 12000U 14000U&#160;&#124;&#160;Webternals, LLC</dc:creator>
		<pubDate>Sat, 05 Sep 2009 22:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.blogternals.com/?p=995#comment-564</guid>
		<description>[...] from one of our affiliates Blogternals. Read the Entire Story Here.             [...]&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;564&#039;,&#039;Ubuntu DIGIPRO T-8000U T-6000U T-5500U 12000U 14000U&nbsp;&#124;&nbsp;Webternals, LLC&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;564&#039;,&#039;Ubuntu DIGIPRO T-8000U T-6000U T-5500U 12000U 14000U&nbsp;&#124;&nbsp;Webternals, LLC&#039;,&#039;&#91;...&#93; from one of our affiliates Blogternals. Read the Entire Story Here.             &#91;...&#93;&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>[...] from one of our affiliates Blogternals. Read the Entire Story Here.             [...]
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('564','Ubuntu DIGIPRO T-8000U T-6000U T-5500U 12000U 14000U&amp;nbsp;|&amp;nbsp;Webternals, LLC'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('564','Ubuntu DIGIPRO T-8000U T-6000U T-5500U 12000U 14000U&amp;nbsp;|&amp;nbsp;Webternals, LLC','&amp;#91;...&amp;#93; from one of our affiliates Blogternals. Read the Entire Story Here.             &amp;#91;...&amp;#93;'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
</channel>
</rss>
