<?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>Commenti a: Ubuntu Linux su un Toshiba Satellite U300</title>
	<atom:link href="http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/</link>
	<description>[lang_en]Open Web Solutions: WebGis, Open Source development[/lang_en][lang_it]Soluzioni WebGIS e sviluppo software Open Source[lang_it]</description>
	<lastBuildDate>Wed, 10 Mar 2010 20:44:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Di: Alessandro Pasotti</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-36064</link>
		<dc:creator>Alessandro Pasotti</dc:creator>
		<pubDate>Fri, 12 Mar 2010 16:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-36064</guid>
		<description>@Luke,

thank you for your comments, if somebody still need to be convinced about the advantages of open source, this is the definitive proof that cooperation and the possibility to modify the software can solve all problems.</description>
		<content:encoded><![CDATA[<p>@Luke,</p>
<p>thank you for your comments, if somebody still need to be convinced about the advantages of open source, this is the definitive proof that cooperation and the possibility to modify the software can solve all problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Luke</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-36053</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Fri, 12 Mar 2010 04:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-36053</guid>
		<description>@ Jan:

I have experienced the same problem. Using the laptop&#039;s built in sound control wheel on the side causes an iterative increase in volume and is horrible.  I have done some research, and I have found the solution.  It is a problem with evdev.  Download the evdev source at http://packages.ubuntu.com/source/karmic/xserver-xorg-input-evdev and then unzip it, and edit src/evdev.c.  Find the following lines

      /* filter repeat events for chording keys */
          if (value == 2 &amp;&amp;
         (ev-&gt;code == KEY_LEFTCTRL &#124;&#124; ev-&gt;code == KEY_RIGHTCTRL &#124;&#124;

          ev-&gt;code == KEY_LEFTSHIFT &#124;&#124; ev-&gt;code == KEY_RIGHTSHIFT &#124;&#124;
          ev-&gt;code == KEY_LEFTALT &#124;&#124; ev-&gt;code == KEY_RIGHTALT &#124;&#124;
          ev-&gt;code == KEY_LEFTMETA &#124;&#124; ev-&gt;code == KEY_RIGHTMETA &#124;&#124;
          ev-&gt;code == KEY_CAPSLOCK &#124;&#124; ev-&gt;code == KEY_NUMLOCK &#124;&#124;
          ev-&gt;code == KEY_SCROLLLOCK)) /* XXX windows keys? */
          return;



Immediately after these lines, add:

      /* fix events for volume keys */
          if(ev-&gt;code == KEY_VOLUMEDOWN &#124;&#124; ev-&gt;code == KEY_VOLUMEUP) //MODIFY THIS LINE
          {
          //post a keydown and then a keyup, as media keys have no automatic key-up
          xf86PostKeyboardEvent(pInfo-&gt;dev, code, 1);
          xf86PostKeyboardEvent(pInfo-&gt;dev, code, 0);
          return;
          }



Then make sure you have the correct programs for compiling:

sudo apt-get install build-essential libtool automake gcc xorg-dev xutils-dev


cd back out of the src directory, and run:

./configure

make

sudo make install

sudo cp /usr/local/lib/xorg/modules/input/evdev_drv.so /usr/lib/xorg/modules/input/

and hey presto.

I found this solution at http://www.tsenyurt.com/2009/03/29/ubuntu-volume-wheel-problem-fix/

hope this helps</description>
		<content:encoded><![CDATA[<p>@ Jan:</p>
<p>I have experienced the same problem. Using the laptop&#8217;s built in sound control wheel on the side causes an iterative increase in volume and is horrible.  I have done some research, and I have found the solution.  It is a problem with evdev.  Download the evdev source at <a href="http://packages.ubuntu.com/source/karmic/xserver-xorg-input-evdev" rel="nofollow">http://packages.ubuntu.com/source/karmic/xserver-xorg-input-evdev</a> and then unzip it, and edit src/evdev.c.  Find the following lines</p>
<p>      /* filter repeat events for chording keys */<br />
          if (value == 2 &amp;&amp;<br />
         (ev-&gt;code == KEY_LEFTCTRL || ev-&gt;code == KEY_RIGHTCTRL ||</p>
<p>          ev-&gt;code == KEY_LEFTSHIFT || ev-&gt;code == KEY_RIGHTSHIFT ||<br />
          ev-&gt;code == KEY_LEFTALT || ev-&gt;code == KEY_RIGHTALT ||<br />
          ev-&gt;code == KEY_LEFTMETA || ev-&gt;code == KEY_RIGHTMETA ||<br />
          ev-&gt;code == KEY_CAPSLOCK || ev-&gt;code == KEY_NUMLOCK ||<br />
          ev-&gt;code == KEY_SCROLLLOCK)) /* XXX windows keys? */<br />
          return;</p>
<p>Immediately after these lines, add:</p>
<p>      /* fix events for volume keys */<br />
          if(ev-&gt;code == KEY_VOLUMEDOWN || ev-&gt;code == KEY_VOLUMEUP) //MODIFY THIS LINE<br />
          {<br />
          //post a keydown and then a keyup, as media keys have no automatic key-up<br />
          xf86PostKeyboardEvent(pInfo-&gt;dev, code, 1);<br />
          xf86PostKeyboardEvent(pInfo-&gt;dev, code, 0);<br />
          return;<br />
          }</p>
<p>Then make sure you have the correct programs for compiling:</p>
<p>sudo apt-get install build-essential libtool automake gcc xorg-dev xutils-dev</p>
<p>cd back out of the src directory, and run:</p>
<p>./configure</p>
<p>make</p>
<p>sudo make install</p>
<p>sudo cp /usr/local/lib/xorg/modules/input/evdev_drv.so /usr/lib/xorg/modules/input/</p>
<p>and hey presto.</p>
<p>I found this solution at <a href="http://www.tsenyurt.com/2009/03/29/ubuntu-volume-wheel-problem-fix/" rel="nofollow">http://www.tsenyurt.com/2009/03/29/ubuntu-volume-wheel-problem-fix/</a></p>
<p>hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Luke</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-33626</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Fri, 12 Mar 2010 22:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-33626</guid>
		<description>Regarding Bluetooth:

The speech marks around the code posted by mihal need to be replaced by the ones in the code already - i.e. copying and pasting from the website doesnt work. The bluetooth finally works brilliantly</description>
		<content:encoded><![CDATA[<p>Regarding Bluetooth:</p>
<p>The speech marks around the code posted by mihal need to be replaced by the ones in the code already &#8211; i.e. copying and pasting from the website doesnt work. The bluetooth finally works brilliantly</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Jan</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-32519</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Fri, 12 Mar 2010 11:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-32519</guid>
		<description>Hi, I have Toshiba U300-11Z with Ubuntu 8.10 on it. I&#039;ve upgraded recently from 8.04 - everything seems to work quite fine with the only exception of the sound. I&#039;ve fixed the problem with no sound by uninstalling PulseAudio but still I have a problem with the &quot;hard&quot; sound control - once I touch it, an icon of sound control appears and remains twinkling and the computer freezes. Tnx for any idea.</description>
		<content:encoded><![CDATA[<p>Hi, I have Toshiba U300-11Z with Ubuntu 8.10 on it. I&#8217;ve upgraded recently from 8.04 &#8211; everything seems to work quite fine with the only exception of the sound. I&#8217;ve fixed the problem with no sound by uninstalling PulseAudio but still I have a problem with the &#8220;hard&#8221; sound control &#8211; once I touch it, an icon of sound control appears and remains twinkling and the computer freezes. Tnx for any idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Peter</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-30462</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Fri, 12 Mar 2010 14:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-30462</guid>
		<description>Hello,

I used this page to configure Kubuntu on my Satellite U300-14U, which all seemed to work well as described here.

However, since the last update (21) of my kernel on Kubuntu 8.04, there seems to have been a change in the driver of my wireless device: some wireless networks are listed, others aren&#039;t (amongst which my home network).
If I reboot with kernel 19, all is well again, and the same wireless networks as before are listed.

Has anyone noticed this problem? 
Does anyone know about the difference? Are some wireless networks somehow &#039;filtered&#039; differently?</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I used this page to configure Kubuntu on my Satellite U300-14U, which all seemed to work well as described here.</p>
<p>However, since the last update (21) of my kernel on Kubuntu 8.04, there seems to have been a change in the driver of my wireless device: some wireless networks are listed, others aren&#8217;t (amongst which my home network).<br />
If I reboot with kernel 19, all is well again, and the same wireless networks as before are listed.</p>
<p>Has anyone noticed this problem?<br />
Does anyone know about the difference? Are some wireless networks somehow &#8216;filtered&#8217; differently?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Хрониките на един Цветомир &#187; Blog Archive &#187; Ubuntu 7.10 на Toshiba Satellite U300-13J</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-28255</link>
		<dc:creator>Хрониките на един Цветомир &#187; Blog Archive &#187; Ubuntu 7.10 на Toshiba Satellite U300-13J</dc:creator>
		<pubDate>Fri, 12 Mar 2010 22:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-28255</guid>
		<description>[...] Голяма част от информацията тук е взета от поста на  Алесандро Пасоти в ItLinux. и коментарите към нея. Също така, в случай, че не [...]</description>
		<content:encoded><![CDATA[<p>[...] Голяма част от информацията тук е взета от поста на  Алесандро Пасоти в ItLinux. и коментарите към нея. Също така, в случай, че не [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Yen</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-27592</link>
		<dc:creator>Yen</dc:creator>
		<pubDate>Fri, 12 Mar 2010 09:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-27592</guid>
		<description>Thanks 4 you advance. Now I have a new Ubuntu 8.04 and a lot of things work better!! but not bluetooth and mic. 4 mic -  when I installed new ALSA and play volume control evrything is ok;)</description>
		<content:encoded><![CDATA[<p>Thanks 4 you advance. Now I have a new Ubuntu 8.04 and a lot of things work better!! but not bluetooth and mic. 4 mic &#8211;  when I installed new ALSA and play volume control evrything is ok;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Enrico</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-26226</link>
		<dc:creator>Enrico</dc:creator>
		<pubDate>Fri, 12 Mar 2010 11:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-26226</guid>
		<description>Hi,
thanks for this great description.
I have a Toshiba U305 - S7467 and it works great (with Ubuntu Hardy Heron) with the exception of modem and Bluetooth.
I compiled the omnibook module modifying the laptop.h in a way similar to the one suggested by kaotiklabs, but I have not been lucky?
Any input or help? I don&#039;t think that U300 pro and U305-7467 uses a different blueetooth chip, so my hope is to be able to activate it.
Thanks,
Enrico</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thanks for this great description.<br />
I have a Toshiba U305 &#8211; S7467 and it works great (with Ubuntu Hardy Heron) with the exception of modem and Bluetooth.<br />
I compiled the omnibook module modifying the laptop.h in a way similar to the one suggested by kaotiklabs, but I have not been lucky?<br />
Any input or help? I don&#8217;t think that U300 pro and U305-7467 uses a different blueetooth chip, so my hope is to be able to activate it.<br />
Thanks,<br />
Enrico</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Luke</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-26137</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Fri, 12 Mar 2010 20:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-26137</guid>
		<description>The webcam for this laptop does work - try aMSN as a client, that works for me, no other program seems to work as of yet...

compiz fusion will work on this laptop, even without proper drivers i believe.  If you get the appropriate modules from synaptic or aptitude, and when trying to enable them, it reports that they cannot be enabled, try executing the following at the terminal...

SKIP_CHECKS=yes compiz --replace ccp &amp;

:-)</description>
		<content:encoded><![CDATA[<p>The webcam for this laptop does work &#8211; try aMSN as a client, that works for me, no other program seems to work as of yet&#8230;</p>
<p>compiz fusion will work on this laptop, even without proper drivers i believe.  If you get the appropriate modules from synaptic or aptitude, and when trying to enable them, it reports that they cannot be enabled, try executing the following at the terminal&#8230;</p>
<p>SKIP_CHECKS=yes compiz &#8211;replace ccp &amp;</p>
<p> <img src='http://www.itopen.it/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Anonimo</title>
		<link>http://www.itopen.it/2007/11/22/ubuntu-linux-toshiba-satellite-u300/comment-page-1/#comment-26136</link>
		<dc:creator>Anonimo</dc:creator>
		<pubDate>Fri, 12 Mar 2010 20:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itopen.it/2007/11/22/ubuntu-linus-su-un-toshiba-satellute-u300/#comment-26136</guid>
		<description>On the bluetooth Front, The module for the Toshiba Satellite U300 14B seems to be a Taiyo Yuden EYTFXCS Class 2 Bluetooth Module. not sure whether that omnibook module will work for this chip...</description>
		<content:encoded><![CDATA[<p>On the bluetooth Front, The module for the Toshiba Satellite U300 14B seems to be a Taiyo Yuden EYTFXCS Class 2 Bluetooth Module. not sure whether that omnibook module will work for this chip&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
