<?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>sven.buschbeck &#187; linux</title>
	<atom:link href="http://svenbuschbeck.net/wordpress/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://svenbuschbeck.net/wordpress</link>
	<description>. . . .portfolio.blog. . . .human-computer-interaction. .semantic-web. .computer-science. .communication-design. . . . . . . . . . . . . . . . . . . . . . . . .</description>
	<lastBuildDate>Tue, 15 May 2012 10:16:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Flickering Screen with ATI Radeon X1400 and Ubuntu</title>
		<link>http://svenbuschbeck.net/wordpress/2011/02/flickering-screen-with-ati-radeon-x1400-and-ubuntu/</link>
		<comments>http://svenbuschbeck.net/wordpress/2011/02/flickering-screen-with-ati-radeon-x1400-and-ubuntu/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 20:48:51 +0000</pubDate>
		<dc:creator>Sven Buschbeck</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://svenbuschbeck.net/wordpress/?p=1022</guid>
		<description><![CDATA[EDIT: ATI Radeon X1400 seems to work fine again since Ubuntu 11.04. There is another fix to the “well known” issues with the ATI Radeon X1400 and Ubuntu 10.04 to 10.10 besides the one posted about one year ago (see here). The previous fix kept the graphics card working normally but harmed the overall operating [...]]]></description>
			<content:encoded><![CDATA[<p>EDIT: ATI Radeon X1400 seems to work fine again since Ubuntu 11.04.</p>
<p>There is another fix to the “well known” issues with the ATI Radeon X1400 and Ubuntu 10.04 to 10.10 besides the one posted about one year ago (<a href="http://svenbuschbeck.net/wordpress/2010/04/flickering-screen-after-upgrade-to-kubuntu-10-04/">see here</a>).<br />
The previous fix kept the graphics card working normally but harmed the overall operating system’s stability, so here is another fix based on disabling all 3D features of the device to get rid of the flickering screen.</p>
<p>It’s up to you to choose what you are able to live without<br />
a) The desktop settings panel and “Segmentation fault” errors now and then, or<br />
b) 3D acceleration (does not harm video playback or any other basic OS functionalities)</p>
<p>For solution a) <a href="http://svenbuschbeck.net/wordpress/2010/04/flickering-screen-after-upgrade-to-kubuntu-10-04/">see this</a>.<br />
For b) create this file: <code>/etc/modprobe.d/radeon-kms.conf</code> — and add following content</p>
<pre>options radeon modeset=0</pre>
<p>Solution found <a href="http://www.ubuntu-forum.de/artikel/53477/monitorflackern-w%C3%A4hrend-und-nach-der-installation.html">here</a> (in German).</p>
]]></content:encoded>
			<wfw:commentRss>http://svenbuschbeck.net/wordpress/2011/02/flickering-screen-with-ati-radeon-x1400-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logitech Communicator STX Webcam vs. Ubuntu (64bit) &amp; Skype 2.1</title>
		<link>http://svenbuschbeck.net/wordpress/2011/02/kubuntu-9-10-skype-2-1-und-logitech-webcam/</link>
		<comments>http://svenbuschbeck.net/wordpress/2011/02/kubuntu-9-10-skype-2-1-und-logitech-webcam/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 20:26:57 +0000</pubDate>
		<dc:creator>Sven Buschbeck</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://svenbuschbeck.net/wordpress/?p=783</guid>
		<description><![CDATA[There are many tutorials out there solving the problem by making Skype use Video for Linux version 1 drivers instead of version 2, as that particular webcam does not seem to get along with the newer version. It boils down to the following lines: Create a file in /usr/local/bin/skype and insert #!/bin/bash LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype Finally, [...]]]></description>
			<content:encoded><![CDATA[<p>There are many tutorials out there solving the problem by making Skype use Video for Linux version 1 drivers instead of version 2, as that particular webcam does not seem to get along with the newer version. It boils down to the following lines:</p>
<p>Create a file in <em>/usr/local/bin/skype </em>and insert</p>
<pre>#!/bin/bash
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype</pre>
<p>Finally, make it executable by <code>sudo chmod a+x /usr/local/bin/skype</code><br />
Use this file to start Skype from now on. Done.</p>
<p>But not for me. Skype refused to eat it: <code>ERROR: ld.so: object '/usr/lib/libv4l/v4l1compat.so' from LD_PRELOAD cannot be preloaded: ignored.</code><br />
Until I finally found <a title="Go to the original solution provider. Thanks once again to Eoin Murphy! :)" href="http://www.eoinmurphy.org/blog/2009/04/26/logitech-webcam-skype-under-ubuntu" target="_blank">this one here</a>.</p>
<p>Just to cut a long story short, here is why: all the other solutions work for 32bit Linux only — but hey, I do not have any of my old laptop’s potential to be wasted — I am running 64bit Ubuntu (tested with version 9.10 and 10.10 64bit). And with a minor tweak, the fix will work for you, too. <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Install the video4linux libraries:
<pre> sudo apt-get install lib32v4l-0</pre>
<p>And change <em>/usr/local/bin/skype </em>to
<pre>LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so /usr/bin/skype</pre>
<p>Its just about the “32” — and one good example more of why you should put meaningful error messages in whatever software!</p>
<p>Thanks <a title="Go to the source." href="http://www.eoinmurphy.org" target="_blank">Eoin Murphy</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://svenbuschbeck.net/wordpress/2011/02/kubuntu-9-10-skype-2-1-und-logitech-webcam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resizing System or Home Partion</title>
		<link>http://svenbuschbeck.net/wordpress/2010/05/resizing-system-or-home-partion/</link>
		<comments>http://svenbuschbeck.net/wordpress/2010/05/resizing-system-or-home-partion/#comments</comments>
		<pubDate>Sat, 08 May 2010 10:25:32 +0000</pubDate>
		<dc:creator>Sven Buschbeck</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://svenbuschbeck.net/wordpress/?p=847</guid>
		<description><![CDATA[A very convenient tool for creating, moving, and resizing partitions is GParted. I use it for all my partition-changing-needs — it is really powerful and yet easy to use! But it is not possible to resize system relevant partitions while the system is running — makes sense, right? But you can download GParted as LiveCD ISO [...]]]></description>
			<content:encoded><![CDATA[<p>A very convenient tool for creating, moving, and resizing partitions is <a href="http://gparted.sourceforge.net/index.php" target="_blank">GParted</a>. I use it for all my partition-changing-needs — it is really powerful and yet easy to use! <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But it is not possible to resize system relevant partitions while the system is running — makes sense, right? <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>But you can download <a href="http://sourceforge.net/projects/gparted/files/gparted-live-stable/" target="_blank">GParted as LiveCD ISO file</a> and burn it on a CD. After that, restart your computer with the CD in your drive and a small linux will start up directly from CD including GParted, thus allowing you to modify any drive and partition there is. <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Do all required changes, click the exit button and you are done. In my case, the computer did not reboot automatically, instead I ended up with a command line interface — use the command “sudo reboot” to restart the system yourself if that happens.</p>
<p>And just by the way, GParted does also handle Windows partitions easily — so there is no need to buy or “get” Partition Magic from somewhere.<strong> But never forget to backup your data first. </strong></p>
<p>Yet another hint: <strong>GParted works most reliable if you do one step at a time. </strong>So for example, there are partitions A and B (A is in front of B) and you wish to give some of the free space in A to B. You need to do following steps: Shrink A, move B left and finally grow B. From my experience, GParted works best if you really do all those steps separately, apply each of then, and go for the next one if the last one finished successfully.</p>
]]></content:encoded>
			<wfw:commentRss>http://svenbuschbeck.net/wordpress/2010/05/resizing-system-or-home-partion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickering Screen After Upgrade to Kubuntu 10.04</title>
		<link>http://svenbuschbeck.net/wordpress/2010/04/flickering-screen-after-upgrade-to-kubuntu-10-04/</link>
		<comments>http://svenbuschbeck.net/wordpress/2010/04/flickering-screen-after-upgrade-to-kubuntu-10-04/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 22:04:50 +0000</pubDate>
		<dc:creator>Sven Buschbeck</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://svenbuschbeck.net/wordpress/?p=845</guid>
		<description><![CDATA[First of all, I was amazed how smoothly the upgrade went. (K)Ubuntu and I guess other distributions as well have gone quite a far way to become platforms for everybody — with a lot of software but even more tools, helpers and automatic background services — like the nice upgrade service. There was only one problem I [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, I was amazed how smoothly the upgrade went. (K)Ubuntu and I guess other distributions as well have gone quite a far way to become platforms for everybody — with a lot of software but even more tools, helpers and automatic background services — like the nice upgrade service.</p>
<p>There was only one problem I ran into and I want to share the solution.</p>
<p>I am running Kubuntu 10.04 (just upgraded today) on a Lenovo IBM ThinkPad R60 (Yes, one of those with both brands on them <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) with an ATI Radeon X1400 graphics device. But since upgraded, my display started flickering — not permanently but unbearable.</p>
<p>The solution that worked for me (at least partially — see below — and this is of cause depending on the graphics device type) was to install the proprietary ATI drivers. I know, it is not a good solution, I do not like to use them neither and if anyone out there is reading this with a better solution in mind, let me know it!! <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<em>Edit 2011-02-14: Added a new post with an additional, alternative solution <a href="http://svenbuschbeck.net/wordpress/2011/02/flickering-screen-with-ati-radeon-x1400-and-ubuntu/">here</a>.</em></p>
<p>So what you need to do is  to get your favorite package management tool (e.g. Synaptic or KPackageKit) — just hit Alt+F2 and type “package” and pick KPackageKit from the list (it will ask you for the super user password). Then, search for “fglrx”. In KPackageKit, you will find a result titled “Video driver for the ATI graphics accelerator”, and something below the title like “fglrx — 2:8.723.1-0ubuntu3” but the version number should not matter. Click the arrow to the right, hit “Apply” and after rebooting, everything should perfectly without any configuration.</p>
<p>Good luck. <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Problems noticed so far: The driver causes “Segmentation Fault” error messages, e.g. when trying to open up the display settings. That’s ugly, I know. But you can read in several forum and blog posts, that the support for the former nicely working driver for the ATI X1400 has been discontinued since 10.04, hence, it’s just good luck that the fglrx works somehow — good to know *after* upgrading, right. But still, the flickering was unbearable for me, thus, I accept the issues for now. I will keep my eyes peeled hoping for a proper solution in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://svenbuschbeck.net/wordpress/2010/04/flickering-screen-after-upgrade-to-kubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change hotkey of Kubuntu’s Quick Launch Tool KRunner</title>
		<link>http://svenbuschbeck.net/wordpress/2010/04/change-hotkey-of-kubuntu-quick-launcher-tool-krunner/</link>
		<comments>http://svenbuschbeck.net/wordpress/2010/04/change-hotkey-of-kubuntu-quick-launcher-tool-krunner/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 20:34:27 +0000</pubDate>
		<dc:creator>Sven Buschbeck</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://svenbuschbeck.net/wordpress/?p=839</guid>
		<description><![CDATA[First of all: I love those quick launch tools aka keystroke launchers, they are real time savers — everyone should have one! [For those without a glue what a keystroke launcher is:] It is THE tool for launching any kind of software or even opening documents. Instead of moving your mouse to you applications menu, [...]]]></description>
			<content:encoded><![CDATA[<p>First of all: I love those quick launch tools aka keystroke launchers, they are real time savers — everyone should have one!</p>
<p>[For those without a glue what a keystroke launcher is:] It is THE tool for launching any kind of software or even opening documents. Instead of moving your mouse to you applications menu, click it, search the program, move the mouse there, maybe pick a sub-folder, move mouse again and finally click — unless you accidentally moved a little but to far and the menu close again, completely. <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  But it is easy to put an end to this (as described below). Instead of doing all that clicking, you hit a special key combination, by default [Alt] and [Space], this will make a small input box show up, now, you only enter the first letters of the program — e.g. “f” will do after a few uses to start Firefox (the program learned that you use it a lot). It might save only a few seconds each time, but the sum up and, hey, it is very convenient, too!</p>
<p>So here is what you need to do:<br />
Mac OS: It is already built-in — Just hit Alt+Space and type the name of the program you want to start (or files or whatever).<br />
Windows: Get/install <a href="http://www.launchy.net/" target="_blank">Launchy</a> and use it as explained above.<br />
Kubuntu: built-in as well, BUUUT you have to hit Alt+F2 instead.</p>
<p>And there it is, something that kept annoying me about Kubuntu for quite a bit. I was hoping to get used to it but for what reason? Alt+F2 is really not handy compared to Alt+Space.<br />
Finally, based on <a href="http://ubuntuforums.org/showthread.php?t=1043208" target="_blank">this old forum post</a> and a few adjustments to fit nowadays Kubuntu, all you need to do is this:</p>
<ol>
<li>Go to “Settings” -&gt; “Keyboard and mouse”</li>
<li>Select “Global Keyboard Shortcuts”</li>
<li>Pick from the select box “KDE component” at the top “Run Command Interface”</li>
<li>Now, you can access “Run Command” — Change it to whatever you like <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://svenbuschbeck.net/wordpress/2010/04/change-hotkey-of-kubuntu-quick-launcher-tool-krunner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving home to it’s own partion (Ubuntu)</title>
		<link>http://svenbuschbeck.net/wordpress/2010/02/move-remount-home-on-a-different-partion-ubuntu/</link>
		<comments>http://svenbuschbeck.net/wordpress/2010/02/move-remount-home-on-a-different-partion-ubuntu/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 13:05:01 +0000</pubDate>
		<dc:creator>Sven Buschbeck</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://svenbuschbeck.net/wordpress/?p=796</guid>
		<description><![CDATA[We are going to move all accounts including their personal data on a distinct partition. This recommended in case of system failure to not loose any data. I have no idea, why the Ubuntu installation wizard does not do this by default — it should! This post is based on an article in German — [...]]]></description>
			<content:encoded><![CDATA[<p>We are going to move all accounts including their personal data on a distinct partition. This recommended in case of system failure to not loose any data.<br />
I have no idea, why the Ubuntu installation wizard does not do this by default — it should!</p>
<p>This post is based on an <a title="See the original article" href="http://wiki.ubuntuusers.de/Home_Umziehen" target="_blank">article in German</a> — I will mainly translate it, strip some plush and add some stuff to make life easier and to reduce the risk of data loss. But <strong>be aware</strong>: to perform any of those following things, you will need super user rights and you should feel somewhat comfy with using the command line. And of course, it might be possible in circumstances unforeseen, that you lose all your personal data — but there are a lot of backup steps included below.</p>
<p>Here we go: (console input or statements are written in <em>italics</em>)</p>
<ol>
<li>Preparation
<ol>
<li>Create a backup: <em>rsync –avx –progress /home &lt;your backup destination&gt;</em></li>
<li>If you do not have a free partition yet, I recommend GParted to create one (use <em>sudo apt-get install gparted</em>). I recommend ext3 for compatibility issues — but if you use Linux only, you can go for ext4 (please change <em>ext3</em> to <em>ext4</em> in step 1.6 in case) — make sure your new partition is big enough for your home folder! Try to remember the size (get size: <em>du –sh /home</em>) of <em>/home</em>, you can use it later on to verify your new home location.</li>
<li>Get partion name <em>sudo fdisk –l /dev/sda</em> — e.g. <em>/dev/sda7</em> — I will refer to this name as<em> (name)</em></li>
<li>Copy your current file system configuration: <em>sudo cp /etc/fstab /etc/fstab.new</em></li>
<li>Get partion UUID of new partition: <em>sudo blk</em><em>id</em> — you will find a line about (name) stating a UUID (quite a long hex string), I will refer to it as (uuid) — copy it.</li>
<li>Edit <em>/etc/fstab.new</em>, add a new line at the end as follows (the layout should follow previous lines — simply copy one and adjust it):<br />
<em>UUID=(UUID)  /home                ext3         defaults                    0  2</em></li>
</ol>
</li>
<li>Copy
<ol>
<li>Sign off / Log out</li>
<li>Switch to console mode by pressing <em>Ctrl+Alt+F1</em></li>
<li>Create a mount point for the new partition: <em>sudo mkdir /mnt/tmp</em></li>
<li>Add partion: <em>sudo mount (name) /mnt/tmp</em></li>
<li>Copy home from the old location to the new partition: <em>sudo rsync –avx –progress /home/ /mnt/tmp</em></li>
</ol>
<ul></ul>
</li>
<li>Test
<ul></ul>
<ol>
<li>Mount copy of home as new home: <em>sudo mount </em><em>(name)</em><em> /home</em></li>
<li>Check size of home folder — should be the same as in step 1.: <em>du –sh /home</em></li>
<li>Check mounting worked: <em>sudo mount| grep /home </em>should print out something like <em><br />
(name) on /home</em></li>
</ol>
<ul></ul>
</li>
<li>Switch
<ul></ul>
<ol>
<li>yet another home backup: <em>sudo mv /home /home.bak</em></li>
<li>create new home mount point: <em>sudo mkdir /home</em></li>
<li>create a backup of fstab: <em>sudo mv /etc/fstab /etc/fstab.bak</em></li>
<li>put updated version in place: <em>sudo mv /etc/fstab.new /etc/fstab</em></li>
<li>reboot and you should be done: <em>sudo reboot</em></li>
</ol>
<ul></ul>
</li>
</ol>
<p>Ok, that’s that. If everything works fine, you can delete the backup home <em>sudo rm –rf /home.bak</em> and the fstab backup <em>sudo rm /etc/fstab.bak</em>. Hope you found it useful and I did not put in a mistake or typo. Gimme feedback! <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://svenbuschbeck.net/wordpress/2010/02/move-remount-home-on-a-different-partion-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KDE vs. Gnome</title>
		<link>http://svenbuschbeck.net/wordpress/2010/02/kde-vs-gnome/</link>
		<comments>http://svenbuschbeck.net/wordpress/2010/02/kde-vs-gnome/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 21:52:45 +0000</pubDate>
		<dc:creator>Sven Buschbeck</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Drag-and-drop]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[interaction]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://svenbuschbeck.net/wordpress/?p=779</guid>
		<description><![CDATA[Now, my decision is final: KDE rules (though I actually prefer the look of Gnome ). Simple reason: Gnome does not support drag-and-drop in combination with alt+tab (see bug tracker), but there might be hope with the upcoming Gnome 3. [Edit 2011-06-14: Indeed, drag-and-drop + alt-tab works since since Ubuntu 11.04 (did not try with [...]]]></description>
			<content:encoded><![CDATA[<p>Now, my decision is final: KDE rules (though I actually prefer the look of Gnome <img src='http://svenbuschbeck.net/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  ).</p>
<p>Simple reason: Gnome does not support drag-and-drop in combination with alt+tab (see <a title="See the old bug tracker entry - now the issue made it at least on the wishlist :-/" href="https://bugs.launchpad.net/metacity/+bug/111939" target="_blank">bug tracker</a>), but there might be hope with the upcoming Gnome 3.</p>
<p>[<strong>Edit 2011-06-14</strong>: Indeed, drag-and-drop + alt-tab works since since Ubuntu 11.04 (did not try with 10.10). One major difference remains: Do you need a lot of configuration and customization options? And are you will to accept complex, maybe not that self-explaining menu structures for that? If yes, KDE is your choice, otherwise Gnome might make your life easier. See also <a title="details + screenshots" href="http://www.psychocats.net/ubuntu/kdegnome" target="_blank">this page</a> for more details and screenshots.]</p>
<p>In more detail: using drag-and-drop together with alt+tab key combination allows to work very efficiently. For example, while ordering my photos, I want to work on one of them — as I do this regularly, Gimp is opened already, but in the background — so what I do using KDE or MS Windows is, I grab the picture, switch to Gimp by using alt+tab and immediately drop the picture without moving the mouse at all — I am quite confident that this is the fastest way of opening a picture for editing. Some people advice to set Gimp as default application to open JPEGs, but I am not always editing pictures, most of the times I just want to view them.</p>
<p>Using “Open With” on a JPEG file for sure is the common approach — but let’s compare it:</p>
<ul>
<li>Drag-and-drop &amp; alt+tab
<ul>
<li>Actions to be performed: mouse down + key down + key up + mouse up</li>
<li>In total: four fast steps</li>
</ul>
</li>
<li>“Open With” solution (holding mouse down as improvement)
<ul>
<li>Actions to be performed:mouse down + moving to “Open With” + wait for sub-menu to open + move to sub-menu + mouse up</li>
<li>In total: two fast, three slow steps</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://svenbuschbeck.net/wordpress/2010/02/kde-vs-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

