<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mats Lindh &#187; Ubuntu</title>
	<atom:link href="http://e-mats.org/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://e-mats.org</link>
	<description>Where desperate is just another word for a regular day.</description>
	<lastBuildDate>Fri, 23 Jul 2010 14:23:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>gnome-web-photo segfaults! OH NOES!</title>
		<link>http://e-mats.org/2010/02/gnome-web-photo-segfaults-oh-noes/</link>
		<comments>http://e-mats.org/2010/02/gnome-web-photo-segfaults-oh-noes/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 15:38:40 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[gnome-web-photo]]></category>
		<category><![CDATA[segfaults]]></category>
		<category><![CDATA[strace]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=757</guid>
		<description><![CDATA[We capture images from beautiful web pages all over the world by exposing the gnome-web-photo package through a simple web service. After moving the service to a new server today gnome-web-photo suddenly started segfaulting. Running the application as the same user as the web server worked (after fixing the home directory so that gconf etc [...]]]></description>
			<content:encoded><![CDATA[<p>We capture images from beautiful web pages all over the world by exposing the gnome-web-photo package through a simple web service. After moving the service to a new server today gnome-web-photo suddenly started segfaulting.</p>
<p>Running the application as the same user as the web server worked (after fixing the home directory so that gconf etc was able to create its files), but when running in the web server process itself things segfaulted. </p>
<p>The next attempt was to run both the working and non-working version through strace and see what the difference were, and apparently things segfaulted when the working process accessed &lt;home directory&gt;.mozilla/. This was the first access to anything inside the home directory of the user, which provided the solution: </p>
<p>When the process was running under the web server, the HOME environment variable was not set, but while running under the user from the shell (through su -), it was present. gnome-web-photo (or Firefox?) apparently does not feature any sort of fallback if the HOME environment variable is missing and segfaults instead.</p>
<p>Maybe that could be a patch for the weekend, but hey, the Olympic Games are on!</p>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2010/02/gnome-web-photo-segfaults-oh-noes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixing dpkg / apt-get Problem With Python2.6</title>
		<link>http://e-mats.org/2010/02/fixing-dpkg-apt-get-problem-with-python2-6/</link>
		<comments>http://e-mats.org/2010/02/fixing-dpkg-apt-get-problem-with-python2-6/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:47:48 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[python 2.6]]></category>
		<category><![CDATA[python-central]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=754</guid>
		<description><![CDATA[While trying to upgrade to Python 2.6 on one of my development machines tonight I was faced by an error message after running apt-get install python2.6: After unpacking 0B of additional disk space will be used. Setting up python2.6-minimal (2.6.4-4) ... Linking and byte-compiling packages for runtime python2.6... pycentral: pycentral rtinstall: installed runtime python2.6 not [...]]]></description>
			<content:encoded><![CDATA[<p>While trying to upgrade to Python 2.6 on one of my development machines tonight I was faced by an error message after running <em>apt-get install python2.6</em>:</p>
<pre>
After unpacking 0B of additional disk space will be used.
Setting up python2.6-minimal (2.6.4-4) ...
Linking and byte-compiling packages for runtime python2.6...
pycentral: pycentral rtinstall: installed runtime python2.6 not found
pycentral rtinstall: installed runtime python2.6 not found
dpkg: error processing python2.6-minimal (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of python2.6:
 python2.6 depends on python2.6-minimal (= 2.6.4-4); however:
  Package python2.6-minimal is not configured yet.
dpkg: error processing python2.6 (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 python2.6-minimal
 python2.6
E: Sub-process /usr/bin/dpkg returned an error code (1)
</pre>
<p>Attempting to install python2.6-minimal wouldn&#8217;t work, attempting to install python2.6 proved to have the same problem. </p>
<p>Luckily the <a href="https://bugs.launchpad.net/ubuntu/+source/python-central/+bug/354228">Launchpad thread for python-central</a> provided the answer: <strong>Upgrade python-central first</strong>!</p>
<pre>
:~# apt-get install python-central
[snip]
Setting up python2.6 (2.6.4-4) ...
Setting up python-central (0.6.14+nmu2) ...
:~#
</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2010/02/fixing-dpkg-apt-get-problem-with-python2-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Quick Introduction to chmod and Octal Numbers</title>
		<link>http://e-mats.org/2010/01/a-quick-introduction-to-chmod-and-octal-numbers/</link>
		<comments>http://e-mats.org/2010/01/a-quick-introduction-to-chmod-and-octal-numbers/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 10:00:19 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[644]]></category>
		<category><![CDATA[755]]></category>
		<category><![CDATA[777]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[introduction]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[octal]]></category>
		<category><![CDATA[octal numbers]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=716</guid>
		<description><![CDATA[Someone asked what the difference between doing a chmod 777 and chmod 755 is today, and hopefully this short, informal post will provide you with the answer (if you want to jump straight through to the conclusion, man chmod). Octal Numbers The number you provide as an argument to chmod is an octal number telling [...]]]></description>
			<content:encoded><![CDATA[<p>Someone asked what the difference between doing a <strong>chmod 777</strong> and <strong>chmod 755</strong> is today, and hopefully this short, informal post will provide you with the answer (if you want to jump straight through to the conclusion, <a href="http://linux.die.net/man/1/chmod">man chmod</a>).</p>
<h3>Octal Numbers</h3>
<p>The number you provide as an argument to <strong>chmod</strong> is an octal number telling <strong>chmod</strong> what access you want to provide to a file (or a directory, device, etc &#8211; an entry on the file system). The number are in fact three discreet values, 7, 5 and 5. Each of the values correspond to a set of three bits, either one being zero or one. Three bits makes up a value from 0 &#8211; 7, hence an octal number (a decimal number has the digits 0 &#8211; 9 for each digit, an octal number has 0 &#8211; 7, a binary number has 0 &#8211; 1, a hexadecimal number has 0 &#8211; F (15)).</p>
<p>If you tried to count from 0 to 10 (decimal) in octal, it&#8217;d be: 0, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12. 12 in octal is the same value as 10 in decimal. The big difference is that both octal and decimal maps very neatly on top of binary numbers, being exactly three or four bits.</p>
<p>The usual way to write an octal number in a programming language is by appending a zero in front of it, such as <strong>0755</strong>. This tells the compiler that the number is written in octal notation, and the value is then parsed as such. <strong>chmod</strong> parses all numbers as octal, and does actually handle four digits. Since missing digits are considered to be zero, the first digit is usually not included (or simply as a zero &#8211; which will look the same as the representation used in certain programming languages). The first, usually unused digit, have a special meaning, setting the &#8220;set user id&#8221; (suid), &#8220;set group id&#8221; (guid) or the &#8220;restricted deletion&#8221; or &#8220;sticky&#8221; attributes (you can read more about these options in <a href="http://linux.die.net/man/1/chmod">the manual page</a>).</p>
<h3>File permissions</h3>
<p>Now that we know what an octal number is, it&#8217;s time to look at how the file permissions work. Each file has three sets of permissions, one set for the user owning the file, one set for the group owning the file and one set for anyone else. If you want to take a look at these values on a unix based system, simply type <strong>ls -l</strong> to list files in a verbose way. Your result will look something like:</p>
<pre>
-rw-r--r--  1 mats mats        35 2008-08-23 20:24 IMPORTANTFILE
</pre>
<p>The permissions are listed in the first column, containng &#8220;-rw-r&#8211;r&#8211;&#8221;. The first character &#8220;-&#8221; indicates if the file is a directory (d), if the suid or guid bits are set etc. </p>
<p>This leaves us with &#8220;rw-r&#8211;r&#8211;&#8221; &#8211; the three sets of permissions. &#8220;rw-&#8221; is for the user owning the file, &#8220;r&#8211;&#8221; is for the group owning the file and the last &#8220;r&#8211;&#8221; are for anyone else (or &#8216;other&#8217; as it&#8217;s called). The &#8220;r&#8221; means <em>read</em>, the &#8220;w&#8221; means <em>write</em> and the currently missing letter is &#8220;x&#8221;, which means <em>execute</em> (for files) or <em>search</em> (for directories). The &#8220;execute&#8221; setting is used to let bash (or another shell) attempt to run the file as a script, attempting to parse the first line as a path to the interpreter for the file (i.e. #!/usr/bin/python).</p>
<p>We have three flags (read, write, execute) that can be either on or off. This should remind us of three bits, either being 0 (not set) or 1 (set). And an octal digit is exactly three bits. This means that an octal digit maps exactly to the bit sequence needed to set permissions for a file. A 7 is &#8220;111&#8243;, a 5 is &#8220;101&#8243;, a 4 is &#8220;100&#8243; and so on. Mapping this to permissions:</p>
<pre>
7 = 111 = rwx
6 = 110 = rw-
5 = 101 = r-x
4 = 100 = r--
3 = 011 = -wx
2 = 010 = -w-
1 = 001 = --x
0 = 000 = ---
</pre>
<p>When calling <strong>chmod 755</strong> on a directory we&#8217;re telling chmod to &#8220;set the read, write and search bits for me, the read and search bits for the group and the read and search bits for other users&#8221; (&#8216;search&#8217; for directories, &#8216;execute&#8217; for files).</p>
<p>Another example is 644 that maps to 110 100 100, which again maps to &#8220;rw-r&#8211;r&#8211;&#8221; which usually is the standard access mode for files (and 755 for directories).</p>
<h4>Handling Permissions With Symbols</h4>
<p>I&#8217;m now going to eliminate the need for remembering everything I&#8217;ve written so far in the post, but at least you&#8217;ll know what people are talking about when they&#8217;re telling you to chmod something this-or-that.</p>
<p>You can also use the symbols directly with chmod, either adding, removing or setting the permissions for one of the three groups. </p>
<p>Examples:</p>
<p>To remove all access for other users (but leaving group and user intact)<br />
<strong>chmod o-rwx file</strong></p>
<p>To give everyone read access<br />
<strong>chmod a+r file</strong></p>
<p>To give everyone read &#8211; and search &#8211; access<br />
<strong>chmod a+rx directory</strong></p>
<p>To set particular user modes for each group<br />
<strong>chmod u=rw,g=w,o=w file</strong> (a file that the user can read, but anyone can write to)</p>
<p>And with that I chmod this post a+r.</p>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2010/01/a-quick-introduction-to-chmod-and-octal-numbers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making Spotify, Wine and PulseAudio Play Together</title>
		<link>http://e-mats.org/2010/01/making-spotify-wine-and-pulseaudio-play-together/</link>
		<comments>http://e-mats.org/2010/01/making-spotify-wine-and-pulseaudio-play-together/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 10:00:07 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[padsp]]></category>
		<category><![CDATA[pulse audio]]></category>
		<category><![CDATA[pulseaudio]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[spotify]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=696</guid>
		<description><![CDATA[In what has now become a series on this marvellous blog, we&#8217;re diving into how to make PulseAudio play nice with Spotify running under Wine. After yesterday&#8217;s article about getting any sound through PulseAudio at all, the next issue that surfaced was that the output from Spotify running under Wine were just garbled noise. This [...]]]></description>
			<content:encoded><![CDATA[<p>In what has now become a series on this marvellous blog, we&#8217;re diving into how to make PulseAudio play nice with Spotify running under Wine. After yesterday&#8217;s article about getting any sound through PulseAudio at all, the next issue that surfaced was that the output from Spotify running under Wine were just garbled noise. This worked with the previous ALSA or OSS setup, but with PulseAudio everything went haywire!</p>
<p>Luckily the massive wisdom of teh intarwebs came to the rescue again, this time through an almost three year old post by Paul Betts: &#8220;<a href="http://blog.paulbetts.org/index.php/2007/05/27/make-wine-and-pulseaudio-get-along/">Make Wine and PulseAudio Get Along</a>&#8220;. </p>
<p>The solution is to first use <code><a href="http://linux.die.net/man/1/padsp">padsp</a> winecfg</code> to configure padsp for a specific process, then use padsp to redirect any access to <em>/dev/dsp</em> while the provided application runs.</p>
<p>First run:</p>
<pre>
padsp winecfg
</pre>
<p>Then add padsp to your spotify startup script (or if you do this manually, just .. remember to type it. OK?):</p>
<pre>
padsp wine "C:\program files\spotify\spotify.exe"
</pre>
<p>Restart <a href="http://www.spotify.com/">Spotify</a> and enjoy the massive collection of great music!</p>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2010/01/making-spotify-wine-and-pulseaudio-play-together/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Missing Devices or Sound Card in Pulse Audio</title>
		<link>http://e-mats.org/2010/01/missing-devices-or-sound-card-in-pulse-audio/</link>
		<comments>http://e-mats.org/2010/01/missing-devices-or-sound-card-in-pulse-audio/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 10:00:23 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[pulse audio]]></category>
		<category><![CDATA[pulseaudio]]></category>
		<category><![CDATA[sound and video]]></category>
		<category><![CDATA[sound configuration]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=693</guid>
		<description><![CDATA[After getting the missing sound control panel in Ubuntu back yesterday, the next problem that turned up was that no actual applications would play any sound &#8211; other than the annoying beep! beep! beep! The reason is that after the pulseaudio configuration has been installed, pulseaudio it self may be missing all it device drivers [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://e-mats.org/2010/01/when-the-ubuntu-sound-control-panel-doesnt-show-up/">getting the missing sound control panel in Ubuntu back</a> yesterday, the next problem that turned up was that no actual applications would play any sound &#8211; other than the annoying beep! beep! beep!</p>
<p>The reason is that after the pulseaudio configuration has been installed, pulseaudio it self may be missing all it device drivers and other packages.</p>
<p>The solution for this issue can be found at <a href="https://wiki.ubuntu.com/PulseAudio">the page for PulseAudio at the Ubuntu Wiki</a>.</p>
<p>Install the missing PulseAudio packages through APT:</p>
<pre>
sudo apt-get install libasound2-plugins "pulseaudio-*" paman padevchooser paprefs pavucontrol pavumeter
</pre>
<p>Restart the application that needs sound support and everything should work. If you&#8217;re still not getting any sound, check the PulseAudio device configuration (by default installed under Applications, Sound and Video, PulseAudio Device Chooser) and that your device shows up there (mine didn&#8217;t before installing the above packages).</p>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2010/01/missing-devices-or-sound-card-in-pulse-audio/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When the Ubuntu Sound Control Panel Doesn&#8217;t Show Up</title>
		<link>http://e-mats.org/2010/01/when-the-ubuntu-sound-control-panel-doesnt-show-up/</link>
		<comments>http://e-mats.org/2010/01/when-the-ubuntu-sound-control-panel-doesnt-show-up/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 10:00:02 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[beep]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[pulse]]></category>
		<category><![CDATA[pulse audio]]></category>
		<category><![CDATA[pulseaudio]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[sound configuration]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=690</guid>
		<description><![CDATA[After upgrading from Ubuntu 9.0 to 9.10 the other day, I suddenly got a very annoying beep every time I saved a file in NetBeans. Horrible stuff! Disabling it in NetBeans seems impossible (and Firefox makes the same sound when it encounters an error), so removing it in the Ubuntu Sound Configuration Panel sounded (!) [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading from Ubuntu 9.0 to 9.10 the other day, I suddenly got a very annoying beep every time I saved a file in NetBeans. Horrible stuff! Disabling it in NetBeans seems impossible (and Firefox makes the same sound when it encounters an error), so removing it in the Ubuntu Sound Configuration Panel sounded (!) like the best option.</p>
<p>One problem: The Sound Control Panel (when selecting System -> Preferences -> Sound) didn&#8217;t open. It attempts to load, but then disappears without a trace. I couldn&#8217;t find a notice in any of the logfiles either, so my only hope of a remedy was the global debugging power of teh intarwebs.</p>
<p>This was actually harder than I imagined, as I had to wade through large amounts of documentation of how to open the control panel at all. I had found the menu item, but it didn&#8217;t work.</p>
<p>Luckily someone had documented several issues at a page named &#8220;<a href="http://www.ubuntugeek.com/sound-solutions-for-ubuntu-904-jaunty-users.html">Sound Solutions for Ubuntu 9.04</a>&#8220;, and while I didn&#8217;t have the exact problems listed there, they mentioned the required packages for pulseaudio and the GUIs.</p>
<p>Installing the <strong>padevchooser</strong> package should pull in all the dependencies:</p>
<pre>
root@ubuntu:~# apt-get install padevchooser
</pre>
<p>(Use <em>sudo apt-get install padevchooser</em> if you&#8217;re not root)</p>
<p>At the same split second the installer finished, the sound configuration dialog opened and I were able to switch to the NO SOUND scheme in Ubuntu. No beeps!</p>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2010/01/when-the-ubuntu-sound-control-panel-doesnt-show-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keyboard Not Working in Xorg After Booting Ubuntu</title>
		<link>http://e-mats.org/2009/05/keyboard-not-working-after-booting-ubuntu/</link>
		<comments>http://e-mats.org/2009/05/keyboard-not-working-after-booting-ubuntu/#comments</comments>
		<pubDate>Thu, 28 May 2009 11:28:09 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dbus]]></category>
		<category><![CDATA[hal]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=503</guid>
		<description><![CDATA[I&#8217;ve had a weird issue a couple of times on my work computer, where the keyboard and the mouse does not respond in Xorg after rebooting. As I only reboot my work computer every 80 days or so, I tend to forget the reason why it happens between each boot sequence. The reason why the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a weird issue a couple of times on my work computer, where the keyboard and the mouse does not respond in Xorg after rebooting. As I only reboot my work computer every 80 days or so, I tend to forget the reason why it happens between each boot sequence. </p>
<p>The reason why the mouse and keyboard does not work after rebooting at my computer is that HAL or DBUS failed to start. I&#8217;ve not dug further into this issue, as it doesn&#8217;t happen very often. The solution:</p>
<p>(you can switch to a text console by pressing ctrl+alt+f1, your keyboard will work there)</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="sy0">/</span>etc<span class="sy0">/</span>init.d<span class="sy0">/</span>dbus start</div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">/</span>etc<span class="sy0">/</span>init.d<span class="sy0">/</span>hal start</div>
</li>
</ol>
</div>
<p>Restart X / GDM:</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="sy0">/</span>etc<span class="sy0">/</span>init.d<span class="sy0">/</span>gdm restart</div>
</li>
</ol>
</div>
<p>Switch back to the Xorg terminal (alt+f7) and hopefully your keyboard and mouse will yet again work!</p>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2009/05/keyboard-not-working-after-booting-ubuntu/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Mouse Stuck in Lower Right Corner in Ubuntu Intrepid under VMWare?</title>
		<link>http://e-mats.org/2008/08/mouse-stuck-in-lower-right-corner-in-ubuntu-intrepid-under-vmware/</link>
		<comments>http://e-mats.org/2008/08/mouse-stuck-in-lower-right-corner-in-ubuntu-intrepid-under-vmware/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 21:52:52 +0000</pubDate>
		<dc:creator>Mats</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[vmmouse]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://e-mats.org/?p=179</guid>
		<description><![CDATA[If your mouse pointer is stuck in the lower right corner after upgrading to the current alpha version of Ubuntu, Intrepid, the reason is that the vmmouse driver got borked somewhere between Hardy and the current version of Intrepid. This means that you&#8217;ll only see &#8220;Moving to desktop 2&#8243; (or whatever desktop you have in [...]]]></description>
			<content:encoded><![CDATA[<p>If your mouse pointer is stuck in the lower right corner after upgrading to the current alpha version of Ubuntu, Intrepid, the reason is that the vmmouse driver got borked somewhere between Hardy and the current version of Intrepid. This means that you&#8217;ll only see &#8220;Moving to desktop 2&#8243; (or whatever desktop you have in the lower right corner). The fix is to change the reference to &#8216;<strong>vmmouse</strong>&#8216; in <em>/etc/X11/xorg.conf</em> to &#8216;<strong>mouse</strong>&#8216;. This is not as good (you&#8217;ll not be able to move your mouse pointer from your host to your vmware machine seamless any longer), but at least it works. </p>
<p>You can track the current progress over at trackpad: <a href='https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-vmmouse/+bug/248521'>Ubuntu Bug #248521</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://e-mats.org/2008/08/mouse-stuck-in-lower-right-corner-in-ubuntu-intrepid-under-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
