<?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>Phocean.net &#187; Desktop</title>
	<atom:link href="http://www.phocean.net/category/administration-systeme/linux/desktop/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phocean.net</link>
	<description>Crusing for Knowledge, Drifting towards Security</description>
	<lastBuildDate>Thu, 02 Sep 2010 13:57:10 +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>Privacy and Facebook</title>
		<link>http://www.phocean.net/2010/01/11/privacy-and-facebook.html</link>
		<comments>http://www.phocean.net/2010/01/11/privacy-and-facebook.html#comments</comments>
		<pubDate>Mon, 11 Jan 2010 09:51:42 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Privacy]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=675</guid>
		<description><![CDATA[That is exactly why I have never used &#8211; and will never use &#8211; Facebook or anything like that.]]></description>
			<content:encoded><![CDATA[<p><a title="Facebook and privacy" href="http://www.readwriteweb.com/archives/facebooks_zuckerberg_says_the_age_of_privacy_is_ov.php?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+readwriteweb+%28ReadWriteWeb%29" target="_blank">That</a> is exactly why I have never used &#8211; and will never use &#8211; Facebook or anything like that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2010/01/11/privacy-and-facebook.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic backup when inserting a drive</title>
		<link>http://www.phocean.net/2009/09/28/automatic-backup-when-inserting-a-drive.html</link>
		<comments>http://www.phocean.net/2009/09/28/automatic-backup-when-inserting-a-drive.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 09:34:11 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripts, Programs]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[hal]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[udev]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=419</guid>
		<description><![CDATA[I bought a 500 GB 2.5&#8243; external disk drive to backup the data of my laptop. It is small, quiet, easy to move and far enough for the important data I want to backup, mostly documents, e-mails or script from work. Being lazy, it happened that I did not backup my data. Yes, it is [...]]]></description>
			<content:encoded><![CDATA[<p>I bought a 500 GB 2.5&#8243; external disk drive to backup the data of my laptop. It is small, quiet, easy to move and far enough for the important data I want to backup, mostly documents, e-mails or script from work.</p>
<p>Being lazy, it happened that I did not backup my data. Yes, it is a shame, but inserting a drive and launching the commands to rsync the discs was preventing me from this best practice.</p>
<p>So, I decided to make it automatic. The goal was that the only thing I would have to do would be to insert the drive, and then remove it when it is done.</p>
<p>Thanks to the magic of Gnu/Linux, it had been very easy. I will show below how I did it, thought they are many things that could be improved (but I haven&#8217;t felt the need so far).</p>
<h2><span style="text-decoration: underline;">Udev</span></h2>
<p><strong>Udev</strong> not only allows to create /dev entries dynamically, but offers a lot of triggers to perfom all kind of actions when some hardware is inserted.</p>
<p>The <strong><em>udevinfo</em></strong> command will show you a lot of output concerning your drive. What we want is a unique way to differenciate the backup drive from any other drive that will be inserted in the future.</p>
<p>What would be better than the manufacturer serial ?</p>
<p>So let&#8217;s look for it :</p>
<pre class="brush: bash;">$ udevinfo -a -p /sys/block/sdc | grep serial</pre>
<p>Copy the serial.</p>
<p>Now we have to create a rule file, that will tell to udev what to do when this particular drive is inserted.</p>
<p>This is done in the <em><strong>/etc/udev/rules.d folder</strong></em>. Let&#8217;s create a file <em><strong>30-mnt.rules</strong></em> or anything you like.</p>
<p>We edit this file so that it contains :</p>
<pre class="brush: plain;">ACTION==&quot;add&quot;,KERNEL==&quot;sd*&quot;,SUBSYSTEMS==&quot;usb&quot;, ATTRS{serial}==&quot;57442D57584E3430394C5A38&quot;, RUN+=&quot;/home/jc/bin/backup/bckp-home.sh %k&quot;</pre>
<p><em><strong>ACTION==&#8221;add&#8221;</strong></em> will tell udev that this action must be triggered when the drive is inserted.<br />
<em><strong>SUBSYSTEMS</strong></em> could be changed according to the drive you are using (scsi, usb, &#8230;).<br />
<em><strong>ATTRS{serial} </strong></em>must contain the serial you just grabbed.<br />
<em><strong>RUN+=&#8221;/path/to/bin/backup.sh %k&#8221;</strong></em> tells udev to launch the backup script. %k, which contains the device name, sdc, is passed as an argument.</p>
<p>Optionally, it is quite convenient, you may want to make a symlink to the <em><strong>/dev/sd?</strong></em> device, with :</p>
<pre class="brush: bash;">KERNEL==&quot;sd*&quot;,SUBSYSTEMS==&quot;scsi&quot;, ATTRS{model}==&quot;GJ0250EAGSQ     &quot;, SYMLINK+=&quot;ultrabay%n&quot;</pre>
<h2><span style="text-decoration: underline;">The shell script</span></h2>
<p>Now, the script itself :</p>
<pre class="brush: bash;">#!/bin/sh
LOGFILE=/PATH/TO/bckp.log
echo &quot;--- BCKP - INFO : \$1=_${1}_&quot; &amp;gt;&amp;gt;$LOGFILE
[[ $1 ]] || { echo &quot;ERROR : missing parameter&quot;&amp;gt;&amp;gt;$LOGFILE; exit 1; }
# give time for the user, if needed to kill the process
sleep 6
MOUNT_PATH=$(grep $(echo $1) /etc/mtab | awk '{print $2}')
[[ $MOUNT_PATH ]] || { echo &quot;ERROR fretching mount point&quot;&amp;gt;&amp;gt;$LOGFILE;
exit 1; }
echo &quot; Synchronizing $MOUNT_PATH)&quot;&amp;gt;&amp;gt;$LOG
# add here all you rsync commands
rsync -av --delete /PATH/TO/DATA $MOUNT_PATH/backup/
...
exit 0</pre>
<h2><span style="text-decoration: underline;">Testing it</span></h2>
<p>Now, let&#8217;s reload udev :</p>
<pre class="brush: bash;">$ sudo udevadm control --reload-rules</pre>
<p>To test if it works :</p>
<pre class="brush: bash;">$ sudo udevadm trigger</pre>
<p>or maybe :</p>
<pre class="brush: bash;">$ /etc/init.d/boot.udev restart</pre>
<p>Plug off/in your drive, and the script should be executed as expected.</p>
<h2><span style="text-decoration: underline;">Optional : setting more options with Hal<strong><br />
</strong></span></h2>
<p>It is not necessary at all for the backup script to work, but it would be very practical to have  a fixed mount point for a drive.<br />
For instance, I use a second drive (in the untrabay slot of my thinkpad) that contains all my virtual machines.</p>
<p>The benefice is to prevent a performance drain of the system when many virtual machines are doing I/O like swapping or anything else.</p>
<p>Create a file like <strong><em>/etc/hal/fdi/policy/15-static-mount.fdi</em></strong>, containing :</p>
<pre class="brush: xml;">&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?&gt;
&lt;deviceinfo version=&quot;0.2&quot;&gt;
&lt;device&gt;
&lt;match key=&quot;volume.uuid&quot; string=&quot;aa0019ef-86e0-4011-b996-31ef3e7174c8&quot;&gt;
&lt;merge key=&quot;volume.policy.should_mount&quot; type=&quot;bool&quot;&gt;true&lt;/merge&gt;
&lt;merge key=&quot;volume.fstype&quot; type=&quot;string&quot;&gt;ext4&lt;/merge&gt;
&lt;strong&gt;&lt;merge key=&quot;volume.policy.desired_mount_point&quot; type=&quot;string&quot;&gt;ultrabay&lt;/merge&gt;&lt;/strong&gt;
&lt;merge key=&quot;volume.label&quot; type=&quot;string&quot;&gt;Fuji&lt;/merge&gt;
&lt;merge key=&quot;volume.policy.mount_option.noatime&quot; type=&quot;bool&quot;&gt;true&lt;/merge&gt;
&lt;merge key=&quot;volume.policy.mount_option.acl&quot; type=&quot;bool&quot;&gt;true&lt;/merge&gt;
&lt;/match&gt;
&lt;/device&gt;
&lt;/deviceinfo&gt;</pre>
<p>The drive is matched by it uuid. You can get the uuid of your disk with :</p>
<pre class="brush: bash;">$ ls -la /dev/disk/by-uuid/</pre>
<p>You can, if you want, set the volume label and specify several options of the file system.</p>
<p>However, the most interesting option is the &#8220;desired_mount_point&#8221; one which allow you to fix the mount point. In the example, the disk will always be mounted in <strong><em>/media/ultrabay</em></strong>, and not the system disk, or disk_1, etc.</p>
<h2><span style="text-decoration: underline;">Coming next</span> !</h2>
<p>That&#8217;s all for today folks. Let me know if there are some things not clear or that can be optimized.</p>
<p>Next time, we will see how to run the same script from <strong>Hal</strong> instead. We will also use Zenity to get a nice GUI prompt when the disk is inserted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2009/09/28/automatic-backup-when-inserting-a-drive.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to activate music preview in Nautilus</title>
		<link>http://www.phocean.net/2009/09/26/how-to-activate-music-preview-in-nautilus.html</link>
		<comments>http://www.phocean.net/2009/09/26/how-to-activate-music-preview-in-nautilus.html#comments</comments>
		<pubDate>Sat, 26 Sep 2009 03:21:32 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mpg123]]></category>
		<category><![CDATA[zypper]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=418</guid>
		<description><![CDATA[It allows to play a music file by letting the cursor over it, without opening a player. Very easy to set up : $ zypper install mpg123 and it should work immediatly.]]></description>
			<content:encoded><![CDATA[<p>It allows to play a music file by letting the cursor over it, without opening a player.</p>
<p>Very easy to set up :</p>
<pre class="brush: bash;">$ zypper install mpg123</pre>
<p>and it should work immediatly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2009/09/26/how-to-activate-music-preview-in-nautilus.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Why Mono doesn&#8217;t suck&#8221;</title>
		<link>http://www.phocean.net/2009/06/12/why-mono-doesnt-suck.html</link>
		<comments>http://www.phocean.net/2009/06/12/why-mono-doesnt-suck.html#comments</comments>
		<pubDate>Fri, 12 Jun 2009 15:27:37 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripts, Programs]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Novell]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=385</guid>
		<description><![CDATA[For the sake, a nice post which I hope will contribute to stop the FUD against Mono.]]></description>
			<content:encoded><![CDATA[<p>For the sake, <a title="Why Mono is not a threat" href="http://www2.apebox.org/wordpress/rants/124/" target="_blank">a nice post</a> which I hope will contribute to stop the FUD against Mono.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2009/06/12/why-mono-doesnt-suck.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microphone issue with openSUSE 11.1</title>
		<link>http://www.phocean.net/2009/05/09/microphone-issue-with-opensuse-111.html</link>
		<comments>http://www.phocean.net/2009/05/09/microphone-issue-with-opensuse-111.html#comments</comments>
		<pubDate>Sat, 09 May 2009 17:42:49 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Pulseaudio]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=354</guid>
		<description><![CDATA[Nice post that also solved my microphone issue with openSUSE 11.1 and Pulseaudio. Now every thing works well with Skype.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blog.arun-prabha.com/2008/05/23/skype-microphone-problem-and-complete-pulse-audio-setup-in-ubuntu/">Nice post</a> that also solved my microphone issue with openSUSE 11.1 and Pulseaudio. Now every thing works well with Skype.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2009/05/09/microphone-issue-with-opensuse-111.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux vs Windows benchmark</title>
		<link>http://www.phocean.net/2009/02/05/linux-vs-windows-benchmark.html</link>
		<comments>http://www.phocean.net/2009/02/05/linux-vs-windows-benchmark.html#comments</comments>
		<pubDate>Thu, 05 Feb 2009 20:12:43 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=331</guid>
		<description><![CDATA[I found this benchmark, comparing the performance of Ubuntu, Windows Vista and 7 worth reading. Our Linux kernel does a great job !]]></description>
			<content:encoded><![CDATA[<p>I found this <a href="http://www.tuxradar.com/node/33">benchmark</a>, comparing the performance of Ubuntu, Windows Vista and 7 worth reading.<br />
Our Linux kernel does a great job !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2009/02/05/linux-vs-windows-benchmark.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/etc/mtab~ issue at startup</title>
		<link>http://www.phocean.net/2009/02/01/etcmtab-issue-at-startup.html</link>
		<comments>http://www.phocean.net/2009/02/01/etcmtab-issue-at-startup.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 18:20:08 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[LVM]]></category>
		<category><![CDATA[mtab]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=321</guid>
		<description><![CDATA[I don&#8217;t know how it really happened &#8211; probably a VMWare crash that locked my file system, but after a reboot I got this message at startup : Cannot create link /etc/mtab~ Perhaps there is a stale lock file? As a result, some of the partitions were not mounted and the system was pretty much [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know how it really happened &#8211; probably a VMWare crash that locked my file system, but after a reboot I got this message at startup :</p>
<pre class="brush: plain;">Cannot create link /etc/mtab~
Perhaps there is a stale lock file?</pre>
<p>As a result, some of the partitions were not mounted and the system was pretty much broken.</p>
<p>But, no need to panic, just erase all the lock files (be careful not to erase the mtab file itself !) :</p>
<pre class="brush: bash;">$ rm /etc/mtab~*</pre>
<p>Now test mounting your partitions to check that you don&#8217;t get this message anymore :</p>
<pre class="brush: bash;">$ mount -a</pre>
<p>If it is alright, reboot and it should be fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2009/02/01/etcmtab-issue-at-startup.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>openSUSE 11.1</title>
		<link>http://www.phocean.net/2008/12/21/opensuse-111.html</link>
		<comments>http://www.phocean.net/2008/12/21/opensuse-111.html#comments</comments>
		<pubDate>Sun, 21 Dec 2008 16:31:15 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[yast]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=308</guid>
		<description><![CDATA[openSUSE 11.1 is out and already on all my desktop PC. This distribution is, by far, the best Linux environment for a desktop PC : very stable, up to date, polished, professional&#8230; I also appreciate the huges improvements made on Yast and the package management system. Despite being an advanced user that like to use [...]]]></description>
			<content:encoded><![CDATA[<p>openSUSE 11.1 is <a title="Download openSUSE 11.1" href="http://en.opensuse.org/OpenSUSE_11.1" target="_blank">out</a> and already on all my desktop PC.</p>
<p>This distribution is, by far, the best Linux environment for a desktop PC : very stable, up to date, polished, professional&#8230;</p>
<p>I also appreciate the huges improvements made on Yast and the package management system. Despite being an advanced user that like to use the command line, I reallly appreciate sometimes to have a nice graphical frontend that just do what I want easely and quickly.</p>
<p>openSUSE 11.1 deserves its increasing popularity. Really, give it a try !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2008/12/21/opensuse-111.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation 6.5</title>
		<link>http://www.phocean.net/2008/10/05/vmware-workstation-65.html</link>
		<comments>http://www.phocean.net/2008/10/05/vmware-workstation-65.html#comments</comments>
		<pubDate>Sun, 05 Oct 2008 16:46:40 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[kernel 2.6.26]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[vmware-any-any]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=249</guid>
		<description><![CDATA[I have just upgraded WMWare from version 6.04 to 6.5, and I have to say that it has very nice new features. The first surprising thing was the file I downloaded. It is now not anymore a tar.gz archive but a .bundle file. After downloading, as root, just make it executable or start it with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I have just upgraded WMWare from version 6.04 to 6.5, and I have to say that it has very nice new features.</p>
<p style="text-align: left;">The first surprising thing was the file I downloaded. It is now not anymore a tar.gz archive but a .bundle file.</p>
<p style="text-align: left;">After downloading, as root, just make it executable or start it with sh :</p>
<pre class="brush: plain;">% sh VMware-Workstation-6.5.0-118166.x86_64.bundle</pre>
<p style="text-align: left;">It now starts a graphic installer, that takes care of everything. All the compilation process is now hidden to the user.</p>
<p style="text-align: left;">I was expecting the compilation to fail and that I would have to look for a patch to run on my edge Linux kernel. Indeed, I just compiled 2.6.26 kernel (64 bits) a few days ago.</p>
<p style="text-align: left;">But nothing like that. the process went smoothly.</p>
<p style="text-align: left;">However, I was still prudent. Even after a compiling, previous versions almost always required some patch to get full networking to work.</p>
<p style="text-align: left;">So I gave a try and launch one of my virtual machines. Surprise : all worked out of the box !</p>
<p style="text-align: left;">For the first time, I even did not need any vmware-any-any patch or any network patched vmmon and vmnet modules to get wifi networking operational.</p>
<p style="text-align: left;">I also quickly noticed some very nice and fancy features :</p>
<ul style="text-align: left;">
<li><strong>3D graphics support</strong></li>
<li><strong>more</strong> <strong>devices supported</strong> : fingerprint reader device, audio driver for Vista, &#8230;</li>
<li>a <strong>graphical virtual network settings</strong> editor : this utility had been for ages on the Windows version and finally will make your easier on Linux</li>
</ul>
<p style="text-align: left;">At last, but not least, the <strong>Unity</strong> display mode.</p>
<p style="text-align: left;">Though I am not a Mac user, I believe this can be compared to VMWare Fusion. Anyway, it allows you to display the virtual machines programs within your X session.</p>
<p style="text-align: left;">Look at this screenshot :</p>
<p style="text-align: center;"><a href="http://www.phocean.net/wp-content/uploads/2008/10/capture-11.png"><img class="size-medium wp-image-255" title="VMWare Workstation 6.5 and Unity" src="http://www.phocean.net/wp-content/uploads/2008/10/capture-11-300x187.png" alt="VMWare Workstation 6.5 and Unity" width="300" height="187" /></a></p>
<p style="text-align: left;">The result is quite spectacular. On my Gnome desktop, I am now able to display some windows from Windows XP and Windows Vista.</p>
<p style="text-align: left;">Well, this is not yet perfectly smooth or artifact free, but this is already really usable and responsive enough to be used intensively.</p>
<p style="text-align: left;">Another limit is the operating system support. So far, among my virtual machines, I was able to do it with Windows systems but not Open Solaris for instance.</p>
<p style="text-align: left;">There must have been more improvements, more or less visible, that I am not aware of. I won&#8217;t go for a full review.</p>
<p style="text-align: left;">I just wanted to insist that if you are a VMWare user,  you really should consider to upgrade for the <strong>complete support of the latest kernel</strong> and the <strong>Unity</strong> feature.</p>
<p style="text-align: left;">It seems that VMWare has listened to the Linux users, or at least is taking it more seriously. Not that they are nice, but the competitors are close (Virtual box, KVM, Xen&#8230;) !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2008/10/05/vmware-workstation-65.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Totem : black screen issue affecting all your XVideo output</title>
		<link>http://www.phocean.net/2008/02/13/totem-black-screen-issue-affecting-all-your-xvideo-output.html</link>
		<comments>http://www.phocean.net/2008/02/13/totem-black-screen-issue-affecting-all-your-xvideo-output.html#comments</comments>
		<pubDate>Wed, 13 Feb 2008 11:05:02 +0000</pubDate>
		<dc:creator>JC</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Nvidia]]></category>
		<category><![CDATA[Totem]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.phocean.net/?p=96</guid>
		<description><![CDATA[I confirm the black screen issue with Totem. Actually it changes the contrast for all the environment, and of course using Mplayer or the gstreamer test program just after also gave back a black screen. Therefore I had been convinced it was a driver issue (reporting a bug to Nvidia and posting on this forum), [...]]]></description>
			<content:encoded><![CDATA[<p>I confirm <a title="black screen issue with Totem" href="http://www.phocean.net/openID/phocean">the black screen issue with Totem</a>.</p>
<p>Actually it changes the contrast for all the environment, and of course using Mplayer or the gstreamer test program just after also gave back a black screen.</p>
<p>Therefore I had been convinced it was a driver issue (reporting a bug to Nvidia and <a href="http://www.nvnews.net/vbulletin/showthread.php?t=107830&amp;highlight=totem">posting on this forum</a>), until I find the contrast setting of Totem was the cause of all that mess.</p>
<p>Note that I am right now using Debian Lenny.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phocean.net/2008/02/13/totem-black-screen-issue-affecting-all-your-xvideo-output.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
