<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Dedors's Weblog</title>
	<atom:link href="http://dedors.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dedors.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 10 Dec 2008 03:35:46 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dedors.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f734a55a41c84016b12dfe94b93a294f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Dedors's Weblog</title>
		<link>http://dedors.wordpress.com</link>
	</image>
			<item>
		<title>Run KDE4 in Chroot (Gentoo/Debian/Ubuntu Howto)</title>
		<link>http://dedors.wordpress.com/2008/12/10/run-kde4-in-chroot-gentoodebianubuntu-howto/</link>
		<comments>http://dedors.wordpress.com/2008/12/10/run-kde4-in-chroot-gentoodebianubuntu-howto/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 03:27:47 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[chroot]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[kde-crazy]]></category>
		<category><![CDATA[kde4]]></category>
		<category><![CDATA[stable base system unstable desktop]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=101</guid>
		<description><![CDATA[As I have some home server services running on a same machine I use as surf/music/mail/chat station. I like to mess around with the new KDE  as I want the newest features but still a stable and safe to run always base system with nfs, samba, music deamon, dns, router, printer and webserver.
So I set [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=101&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As I have some home server services running on a same machine I use as surf/music/mail/chat station. I like to mess around with the new KDE  as I want the newest features but still a stable and safe to run always base system with nfs, samba, music deamon, dns, router, printer and webserver.</p>
<p>So I set up a Chroot for KDE with that I can mess around as much as I want <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But it&#8217;s a little bit tricky, so here I share my knowledge: <strong>This is not fully polished or redone yet, so no guarantee.</strong> Let me know if you have any problems.</p>
<p><strong>#Short Basics: Set up Chroot</strong><br />
#you have several ways to do that, beginning from copy the current system to a new subdir or partition, or create a chroot with downloading<br />
#strage3 or on a debian system with dchroot. google is your friend here and its not difficult to find your way.<br />
#in the chroot you can choose to take a non-stable build, like portage 2.2 with kde-crazy overlay, or ubuntu with kde-nightly. May I add later more informations on how to set that up.</p>
<p>i had to <strong>enable rc_parallel=&#8220;YES&#8220;</strong> in <strong>both /etc/rc.conf </strong>and <strong>(chroot)/etc/rc.conf </strong>to allow to start in-chroot services on a gentoo-chroot-gentoo system (should work with debian or mixed)</p>
<p><strong>Create these 3 files:</strong></p>
<p>/usr/bin/prepchroot</p>
<p style="padding-left:30px;">#!/bin/bash<br />
mount -a<br />
mount /extchroot<br />
mount -o bind /proc /extchroot/proc<br />
mount -o bind /dev /extchroot/dev<br />
mount -o bind /sys /extchroot/sys<br />
mount -o bind /tmp /extchroot/tmp<br />
mount -t devpts none /extchroot/dev/pts<br />
mount -o bind /media /extchroot/media<br />
mount -o bind /var/lib/dbus /extchroot/var/lib/dbus<br />
mount -o bind /usr/src/linux /extchroot/usr/src/linux #you set the later linux kernel in the chroot and compile it in the real root.<br />
ln -s /home/dedi/.Xauthority /extchroot/home/dedi/.Xauthority #only need once<br />
chroot /extchroot /bin/bash</p>
<p>nano (chroot)/usr/bin/hichroot</p>
<p style="text-align:left;padding-left:30px;">#!/bin/bash<br />
mount /media<br />
/etc/init.d/dhald start<br />
/etc/init.d/dbus start<br />
/etc/init.d/xdm restart</p>
<p style="text-align:left;">nano (chroot)/usr/bin/byechroot</p>
<p style="text-align:left;padding-left:30px;">#!/bin/bash<br />
/etc/init.d/dbus stop<br />
/etc/init.d/hald stop<br />
umount /media<br />
umount -a</p>
<p style="text-align:left;">now chmod +x all of these 3 files</p>
<p style="text-align:left;">
<p style="text-align:left;"><strong>to enter the chroot just run &#8222;prepchroot&#8220;, it will set up everything that is needed inside</strong></p>
<p style="text-align:left;"><strong>after you entered the chroot run &#8222;hichroot&#8220;, it prepares to start X</strong></p>
<p style="text-align:left;"><strong>to end a session (e.g. for reboot) you should NOT reboot it from KDE. Quit the Session, run &#8222;byechroot&#8220; in the console, then exit and reboot.</strong></p>
<p style="text-align:left;">A side note:  I have nfs setup already, and just getting all my storage with nfs from the chroot to outside, as ln and mount -o seems not to work. if anyone knows a better solution, please tell me.</p>
<p style="text-align:left;">Another side note:  at the beginning i had the problem not being able to start /etc/init.d services in the chroot, something made this gone away, i think its the reason i wrote up there. If not, you can still start dbus inside chroot directly, and start X with &#8222;startx&#8220;, after you &#8222;su user&#8220; as you dont have a login that way.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=101&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/12/10/run-kde4-in-chroot-gentoodebianubuntu-howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>IWL4965 with Ubuntu Intrepid Ibex and Injection with Compat-Wireless 2.6</title>
		<link>http://dedors.wordpress.com/2008/11/05/iwl4965-with-ubuntu-intrepid-ibex-and-injection/</link>
		<comments>http://dedors.wordpress.com/2008/11/05/iwl4965-with-ubuntu-intrepid-ibex-and-injection/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 13:40:46 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[aircrack]]></category>
		<category><![CDATA[aircrackng]]></category>
		<category><![CDATA[injection]]></category>
		<category><![CDATA[intrepid ibex]]></category>
		<category><![CDATA[iwl4965]]></category>
		<category><![CDATA[iwlagn]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=95</guid>
		<description><![CDATA[Pretty easy compared to some months ago, you don&#8217;t need a firmware or a driver-patch anymore!:

wget http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2.6.tar.bz2
tar jxvf compat-wireless-2.6.tar.bz2
cd compat-wireless-2.6
make
sudo make install

sudo rmmod iwlagn iwlcore #(important! these are not known by the install process yet!)

sudo make unload

sudo make load
- done - test with:
sudo aireplay wlan0 --test

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=95&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Pretty easy compared to some months ago, <strong>you don&#8217;t need a firmware or a driver-patch anymore</strong>!:</p>
<blockquote>
<pre>wget <a class="http" href="http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2.6.tar.bz2">http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2.6.tar.bz2</a>
<pre>tar jxvf compat-wireless-2.6.tar.bz2
cd compat-wireless-2.6
make
sudo make install

sudo rmmod iwlagn iwlcore #(important! these are not known by the install process yet!)

sudo make unload

sudo make load</pre>
<p>- done - test with:<br />
sudo aireplay wlan0 --test</pre>
</blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=95&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/11/05/iwl4965-with-ubuntu-intrepid-ibex-and-injection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>dedi.ch</title>
		<link>http://dedors.wordpress.com/2008/08/24/gg/</link>
		<comments>http://dedors.wordpress.com/2008/08/24/gg/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 21:17:08 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=90</guid>
		<description><![CDATA[www.dedi.ch
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=90&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.dedi.ch">www.dedi.ch</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/90/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/90/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=90&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/08/24/gg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>Howto: World of Warcraft &#8211; Wrath of the Lich King (WoW &#8211; WotLK) Beta running on wine</title>
		<link>http://dedors.wordpress.com/2008/07/29/howto-world-of-warcraft-wrath-of-the-lich-king-wow-wotlk-beta-running-on-wine/</link>
		<comments>http://dedors.wordpress.com/2008/07/29/howto-world-of-warcraft-wrath-of-the-lich-king-wow-wotlk-beta-running-on-wine/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 22:30:35 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[betatest]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wine]]></category>
		<category><![CDATA[world of warcraft]]></category>
		<category><![CDATA[wotlk]]></category>
		<category><![CDATA[wow]]></category>
		<category><![CDATA[wrath of the lich king]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=65</guid>
		<description><![CDATA[OVERVIEW
its just e beta so everything can change quickly, and not everything works
WHAT WORKS: most things like in the 2.4 Version
WHAT WORKS WITH A WORKAROUND: Deathknight Quest line (when using the Eye) -&#62; see Workarounds below
WHAT DOES NOT WORK:

Slow Mouse when using opengl
MAJOR memory leak during the installation
Shadows under d3d engine screw transparency of models [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=65&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1>OVERVIEW</h1>
<p>its just e beta so everything can change quickly, and not everything works</p>
<p><strong>WHAT WORK</strong>S: most things like in the 2.4 Version<strong><br />
WHAT WORKS WITH A WORKAROUND</strong>: Deathknight Quest line (when using the Eye) -&gt; see Workarounds below<br />
<strong>WHAT DOES NOT WORK</strong>:</p>
<ul>
<li>Slow Mouse when using opengl</li>
<li>MAJOR memory leak during the installation</li>
<li>Shadows under d3d engine screw transparency of models up (switch to opengl engine to work around)</li>
<li>Shadows with shadow-level above 4 (nvidia 8600 gts tested) blank the screen out</li>
<li>Screenfog blanks the screen out (switch to d3d engine to work around)</li>
<li>Installer fails to activate the agree button on EULA (<span>install ies4linux to work around &#8211; bug #13321)</span></li>
<li> Compiz + Wine = major fps drop and screen redraw problem, use metacity (run metacity &#8211;replace from console)</li>
</ul>
<p><strong>TESTED ON</strong>: Kubuntu Hardy 8.04 x86_64, Wine 1.12, nvidia closed drivers<br />
<strong><span style="color:#339966;">WHAT WAS NOT TESTED</span></strong>: OSS, Window Mode, Ingame Communications</p>
<h1>Step 1: Install Wine</h1>
<p>Get the most recent Wine from the wine-site (wine in the repos is old)</p>
<blockquote><p>wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -</p></blockquote>
<p>Next, add the repository to your system&#8217;s list of APT sources: <strong>For Ubuntu Hardy (8.04): </strong>(goto http://www.winehq.org/site/download for other versions/distros)</p>
<blockquote><p>sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/hardy.list -O /etc/apt/sources.list.d/winehq.list</p></blockquote>
<p>Install wine:</p>
<blockquote><p>sudo apt-get update<br />
sudo apt-get install wine</p></blockquote>
<p>Run winecfg to create necessary ~/.wine directory and set ALSA as sound output</p>
<blockquote><p>winecfg</p></blockquote>
<h1>Step 2: Install Wow</h1>
<p>you can now install World of Warcraft, choose your preferred method:</p>
<ul>
<li><span style="color:#339966;">1. copy from windows (smb share or ntfs mount)</span></li>
<li><span style="color:#339966;">2. install form cd (wine d:\install.exe) (very slow)</span></li>
<li><span style="color:#339966;">3. download install files from http://www.wow-europe.com/en/burningcrusade/download/ (slow)</span></li>
</ul>
<p>After the install, you have to tweak your config.wtf:</p>
<blockquote><p>nano  ~/.wine/drive_c/Programme/World of Warcraft/WTF/Config.wtf</p></blockquote>
<p>and add the following values at the end of the file:</p>
<blockquote><p>SET SoundBufferSize &#8222;200&#8243;<br />
SET gxApi &#8222;opengl&#8220;<br />
SET ffxDeath &#8222;0&#8243;<br />
SET ffxDeath &#8222;0&#8243;<br />
SET gxResolution &#8222;800&#215;600&#8243;</p></blockquote>
<p>start Wow:</p>
<blockquote><p>wine &#8222;C:\Program Files\World of Warcraft\WoW.exe&#8220; (default install path)</p></blockquote>
<p>or</p>
<blockquote><p>wine WoW.exe (from installed dir)</p></blockquote>
<h3><span style="color:#ff6600;"><strong>Done</strong></span></h3>
<p>if you get a &#8222;Segmentation Fault&#8220; when starting WoW, you have to reinstall your closed source drivers, or update to the most recent, something like that:</p>
<blockquote><p>sudo sh NVIDIA-177.run</p></blockquote>
<h1>Additional Stuff / Troubleshooting &amp; Workarounds</h1>
<h2><span style="text-decoration:underline;">Black Screen (except UI)</span></h2>
<p>If you get a Black Screen during Quests (which uses Screen frog like the Deathknight Quest line when you have to use the eye), you have to switch to d3d for that part, so do:</p>
<p>close Wow<br />
start wow with -d3d option:</p>
<blockquote><p>wine path-to-wow-wotlk/WoW.exe -d3d</p></blockquote>
<p>do the quest part, after that shutdown wow again and now use -opengl instead of -d3d to restart your wow</p>
<h2><span style="text-decoration:underline;">When you use compiz:</span></h2>
<p>run from console to fix the huge FPS drop:</p>
<blockquote><p>metacity &#8211;replace</p></blockquote>
<p>to shutdown compiz and run metacity</p>
<h2><span style="text-decoration:underline;">Registry Tweak</span></h2>
<p>There is also e Registry Tweak, but not tested if this is still required:</p>
<p>Open a Terminal and type</p>
<blockquote><p>regedit</p></blockquote>
<p>and follow this steps:</p>
<ol>
<li> Find HKEY_CURRENT_USER\Software\Wine\</li>
<li> Highlight the wine folder in the left hand pane by left clicking on it. The icon should change to an open folder.</li>
<li> Click right on the wine folder and select [NEW] then [KEY].</li>
<li> Replace the text &#8222;New Key #1&#8243; with OpenGL (CaSe Sensitive).</li>
<li> Right click in the right hand pane and select [NEW] then [String Value].</li>
<li> Replace &#8222;New Value #1&#8243; with &#8222;DisabledExtensions&#8220; (CaSe sensitive).</li>
<li> Then double click anywhere on the line, a dialog box will open.</li>
<li> In the value field type &#8222;GL_ARB_vertex_buffer_object&#8220; (without the quotes).</li>
</ol>
<p>related links https://help.ubuntu.com/community/WorldofWarcraft http://www.wowwiki.com/Linux/Wine http://www.wowwiki.com/Linux/Wine/Troubleshooting http://de.gentoo-wiki.com/Wine_World_Of_Warcraft</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/65/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/65/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=65&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/07/29/howto-world-of-warcraft-wrath-of-the-lich-king-wow-wotlk-beta-running-on-wine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>Mini-Howto: Multiple Monitors (DualHead) with the OpenSource &#8222;nv&#8220;-Driver (using RandR extension)</title>
		<link>http://dedors.wordpress.com/2008/07/27/dualhead-with-nv-driver-and-randr/</link>
		<comments>http://dedors.wordpress.com/2008/07/27/dualhead-with-nv-driver-and-randr/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 07:14:09 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA["nv driver"]]></category>
		<category><![CDATA[(twinview)]]></category>
		<category><![CDATA[dual head]]></category>
		<category><![CDATA[dual screen]]></category>
		<category><![CDATA[randr]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xorg]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=59</guid>
		<description><![CDATA[I finally managed to get dualhead running with the nv-driver. I switched away from the nvidia binary ones due the slow performance on kde4. no glossy anymore, but at least its fast, compared to the binary its a rocket. Really easy to do, when you know how  
so, edit xorg.conf or take mine as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=59&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I finally managed to get dualhead running with the nv-driver. I switched away from the nvidia binary ones due the slow performance on kde4. no glossy anymore, but at least its fast, compared to the binary its a rocket. Really easy to do, when you know how <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>so, edit xorg.conf or take mine as example (you should not have any mess from other drivers)</p>
<p>thinks to change are marked bold</p>
<blockquote><p>Section &#8222;InputDevice&#8220;<br />
Identifier      &#8222;Generic Keyboard&#8220;<br />
Driver          &#8222;kbd&#8220;<br />
Option          &#8222;XkbRules&#8220;      &#8222;xorg&#8220;<br />
Option          &#8222;XkbModel&#8220;      &#8222;pc105&#8243;<br />
Option          &#8222;XkbLayout&#8220;     &#8222;ch&#8220;<br />
EndSection</p>
<p>Section &#8222;InputDevice&#8220;<br />
Identifier      &#8222;Configured Mouse&#8220;<br />
Driver          &#8222;mouse&#8220;<br />
Option          &#8222;CorePointer&#8220;<br />
EndSection</p>
<p>Section &#8222;Device&#8220;<br />
Identifier      &#8222;Configured Video Device&#8220;<br />
<strong>Driver          &#8222;nv&#8220;</strong><br />
BusID          &#8222;PCI:1:0:0&#8243;<br />
EndSection</p>
<p>Section &#8222;Monitor&#8220;<br />
Identifier      &#8222;Configured Monitor&#8220;<br />
EndSection</p>
<p>Section &#8222;Monitor&#8220;<br />
Identifier      &#8222;Configured Monitor1&#8243;<br />
EndSection</p>
<p>Section &#8222;Screen&#8220;<br />
Identifier      &#8222;Default Screen&#8220;<br />
Monitor         &#8222;Configured Monitor&#8220;<br />
Device          &#8222;Configured Video Device&#8220;<br />
DefaultDepth    24<br />
<strong> SubSection &#8222;Display&#8220;<br />
Depth          24<br />
# ADD A VIRTUAL LINE TO PROVIDE FOR THE LARGEST SCREENS YOU WILL HOTPLUG<br />
Virtual              1280 1792<br />
EndSubSection</strong><br />
EndSection</p>
<p>Section &#8222;ServerLayout&#8220;<br />
Identifier      &#8222;Default Layout&#8220;<br />
Screen          0 &#8222;Default Screen&#8220;<br />
InputDevice    &#8222;Generic Keyboard&#8220;<br />
InputDevice    &#8222;Configured Mouse&#8220;<br />
EndSection</p>
<p><strong>Section &#8222;ServerFlags&#8220;<br />
Option &#8222;RandR&#8220; &#8222;on&#8220;<br />
EndSection</strong></p></blockquote>
<p>after restarting X (Ctrl-Alt-Backspace) you can do the following comands (as the kde4 display options dont let me setup anything other than clone)</p>
<blockquote>
<pre>xrandr #to see what your output names are
xrandr --output DVI0 --auto --below VGA2</pre>
</blockquote>
<p>if you get a &#8222;connot be larger than&#8220; error, you have to adjust the &#8222;Virtual&#8220; in xorg.conf</p>
<h1>Update</h1>
<p>After Upgrading to KDE 4.1 Release it dont save my xrandr settings anymore, so i created a litte script like this:</p>
<blockquote>
<pre>nano ~/.kde4/Autostart/bashscript</pre>
<pre style="padding-left:30px;">#!/bin/bash
xrandr --output DVI0 --auto --below VGA2</pre>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=59&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/07/27/dualhead-with-nv-driver-and-randr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>Editing MP3-Tags: It&#8217;s a Jungle</title>
		<link>http://dedors.wordpress.com/2008/07/19/editing-mp3-tags-its-a-jungle/</link>
		<comments>http://dedors.wordpress.com/2008/07/19/editing-mp3-tags-its-a-jungle/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 14:25:52 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Sound]]></category>
		<category><![CDATA[A]]></category>
		<category><![CDATA[archiv]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[tag]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=49</guid>
		<description><![CDATA[It&#8217;s time to resort my gigantic mp3 collection (of about 100GB), so I have to find a tag program that fits my needs.
What I wish to have:

as much automatized as possible, as intelligent as possible
good handling of big archives and a lot of files
searching and comparing for duplicates (indeed, this can be a own app)
getting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=49&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s time to resort my gigantic mp3 collection (of about 100GB), so I have to find a tag program that fits my needs.</p>
<p>What I wish to have:</p>
<ul>
<li>as much automatized as possible, as intelligent as possible</li>
<li>good handling of big archives and a lot of files</li>
<li>searching and comparing for duplicates (indeed, this can be a own app)</li>
<li>getting album arts from where ever they could be get (amazon as custom sites)</li>
</ul>
<p>Unfortunately there are so many mp3 tag applications out there, but the most of them aren&#8217;t really good. So the first step is to find out which tagger is good and which fits my needs. I got the following suggestions:</p>
<ul>
<li>mp3tag (win)</li>
<li>mediamonkey (player with library and good tag features, win)</li>
<li>easytag (linux)</li>
<li>picard (linux) (looks much better than half a year ago): Missing: Genre (wtf), Albumartist or Composer</li>
<li>Magic MP3</li>
<li><span style="text-decoration:line-through;">kid3 (linux) too bad</span></li>
<li><span style="text-decoration:line-through;">cowbell</span><span style="text-decoration:line-through;"> (linux) too less options<br />
</span></li>
</ul>
<p>more to come</p>
<p>Rippers:</p>
<ul>
<li>gnormalizer (linux)</li>
<li>EAC (windows)</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=49&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/07/19/editing-mp3-tags-its-a-jungle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>Howto: rsync SSH Configuration for backuppc</title>
		<link>http://dedors.wordpress.com/2008/07/19/howto-rsync-ssh-configuration-for-backuppc/</link>
		<comments>http://dedors.wordpress.com/2008/07/19/howto-rsync-ssh-configuration-for-backuppc/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 00:32:14 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[backuppc]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=36</guid>
		<description><![CDATA[It&#8217;s a little diffrent from normal SSH connection, so i post it as stand-alone howto. I use here [LAPTOPUSER] as client username, and has to be replaced in the commands.
Server-Side:
Generate a public/private key on the server machine in /home/backuppc/.ssh/laptop &#38; Generate a public/private key on the client machine in /home/$USER/.ssh/laptop.  Replace [LAPTOPUSER]

sudo su backuppc
cd [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=36&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s a little diffrent from normal SSH connection, so i post it as stand-alone howto. I use here [LAPTOPUSER] as client username, and has to be replaced in the commands.</p>
<p><strong><span style="text-decoration:underline;">Server-Side:</span></strong><br />
Generate a public/private key on the server machine in /home/backuppc/.ssh/laptop &amp; Generate a public/private key on the client machine in /home/$USER/.ssh/laptop.  Replace [LAPTOPUSER]</p>
<blockquote>
<pre>sudo su backuppc
cd ~
ssh-keygen -t dsa -f ~/.ssh/laptop2
scp ~/.ssh/laptop2.pub [LAPTOPUSER]@192.168.0.11:~/</pre>
</blockquote>
<p>Create the folder ‘.ssh’ if it doesn’t exist and configure the public key to OpenSSH’s liking. Replace [LAPTOPUSER]</p>
<blockquote>
<pre>ssh [LAPTOPUSER]@192.168.0.11
if [ ! -d .ssh ]; then mkdir .ssh ; chmod 700 .ssh ; fi ; mv laptop2.pub .ssh/ ; cd .ssh/ ; if [ ! -f authorized_keys ]; then touch authorized_keys ; chmod 600 authorized_keys ; fi ; cat laptop2.pub &gt;&gt; authorized_keys ; rm laptop2.pub;
exit</pre>
</blockquote>
<p>Test if you can connect without being prompted for a password, but you should have to enter the passphrase</p>
<blockquote>
<pre>ssh -i ~/.ssh/laptop2 [LAPTOPUSER]@192.168.0.11</pre>
</blockquote>
<p>Manually Rsync via SSH</p>
<blockquote>
<pre>rsync -avrz   $USER@laptop:/home/$USER/ -i ~/.ssh/laptop2</pre>
</blockquote>
<p>Now you need the ssh-agent,</p>
<blockquote>
<pre>ssh-add laptop2</pre>
</blockquote>
<p>but you will propably get the following error (with user backuppc):</p>
<blockquote>
<pre>Could not open a connection to your authentication agent.</pre>
</blockquote>
<p>then just use this command:</p>
<blockquote>
<pre><code>eval `ssh-agent`</code></pre>
</blockquote>
<p>Edit backuppc settings:</p>
<p>type: rsync<br />
rsyncclientcmd: replace root with [LAPTOPUSERNAME] and add -i ~/.ssh/laptop2</p>
<p>that should work and backup with your clients username</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=36&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/07/19/howto-rsync-ssh-configuration-for-backuppc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>Howto: Connect to SSH Server without entering Password or Passphrase</title>
		<link>http://dedors.wordpress.com/2008/07/18/backup-network-pc-with-backuppcsshrsync-or-howto-connect-ssh-without-entering-passwordpassphrase/</link>
		<comments>http://dedors.wordpress.com/2008/07/18/backup-network-pc-with-backuppcsshrsync-or-howto-connect-ssh-without-entering-passwordpassphrase/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 15:03:30 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=14</guid>
		<description><![CDATA[Client-Side:
Here is assumed that client and server username is the same.
Generate a public/private key on the server machine in ~/.ssh/laptop &#38; Generate a public/private key on the client machine in ~/.ssh/laptop

ssh-keygen -t dsa -f ~/.ssh/laptop
scp ~/.ssh/laptop.pub $USER@192.168.0.2:~

Create the folder ‘.ssh’ if it doesn’t exist and configure the public key to OpenSSH’s liking

ssh $USER@192.168.0.2
if [ ! [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=14&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong><span style="text-decoration:underline;">Client-Side:</span></strong></p>
<p>Here is assumed that client and server username is the same.</p>
<p>Generate a public/private key on the server machine in ~/.ssh/laptop &amp; Generate a public/private key on the client machine in ~/.ssh/laptop</p>
<blockquote>
<pre>ssh-keygen -t dsa -f ~/.ssh/laptop
scp ~/.ssh/laptop.pub $USER@192.168.0.2:~</pre>
</blockquote>
<p>Create the folder ‘.ssh’ if it doesn’t exist and configure the public key to OpenSSH’s liking</p>
<blockquote>
<pre>ssh $USER@192.168.0.2
if [ ! -d .ssh ]; then mkdir .ssh ; chmod 700 .ssh ; fi ; mv laptop.pub .ssh/ ; cd .ssh/ ; if [ ! -f authorized_keys ]; then touch authorized_keys ; chmod 600 authorized_keys ; fi ; cat laptop.pub &gt;&gt; authorized_keys ; rm laptop.pub;
exit</pre>
</blockquote>
<p>Test if you can connect without being prompted for a password, but you should have to enter the passphrase</p>
<blockquote>
<pre>ssh -i ~/.ssh/laptop $USER@192.168.0.2</pre>
</blockquote>
<p>Add passphrase to ssh-agent:</p>
<blockquote>
<pre>ssh-add .ssh/latop</pre>
</blockquote>
<p>Manually Rsync via SSH</p>
<blockquote>
<pre>rsync -avrz   $USER@laptop:~/ .</pre>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=14&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/07/18/backup-network-pc-with-backuppcsshrsync-or-howto-connect-ssh-without-entering-passwordpassphrase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>my linux todo</title>
		<link>http://dedors.wordpress.com/2008/07/18/my-linux-todo/</link>
		<comments>http://dedors.wordpress.com/2008/07/18/my-linux-todo/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 13:49:04 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=7</guid>
		<description><![CDATA[Server
slow KDE4 using nvidia driver, updated from 173 to 177 was a huge improvement (from about 80% cpu usage to 20%) with &#8222;export KWIN_NVIDIA_HACK=1&#8243; in ~/.profile -
using the opensource nv driver gives a giant improvement, see the howto for it
access to /media wakes up hds
global shortcuts
mp3 sort
fast VNC or grep active X session with remote [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=7&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Server</strong></p>
<p><strong>slow KDE4</strong> using nvidia driver, updated from 173 to 177 was a huge improvement (from about 80% cpu usage to 20%) with &#8222;export KWIN_NVIDIA_HACK=1&#8243; in ~/.profile -<br />
using the opensource nv driver gives a giant improvement, see the howto for it</p>
<p><strong>access to /media wakes up hds</strong><br />
<strong>global shortcuts</strong><br />
<strong>mp3 sort</strong><br />
<strong>fast VNC or grep active X session with remote login</strong></p>
<p><strong>Laptop</strong></p>
<p>PAE + modules (wlan) working</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=7&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/07/18/my-linux-todo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
		<item>
		<title>howto: 32bit 4GB+ support with working nvidia binary drivers</title>
		<link>http://dedors.wordpress.com/2008/07/16/howto-32bit-4gb-support-with-working-nvidia-binary-drivers/</link>
		<comments>http://dedors.wordpress.com/2008/07/16/howto-32bit-4gb-support-with-working-nvidia-binary-drivers/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 22:25:30 +0000</pubDate>
		<dc:creator>dedors</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mint ubuntu 32bit 64bit ram nvidia restricted-modules]]></category>

		<guid isPermaLink="false">http://dedors.wordpress.com/?p=5</guid>
		<description><![CDATA[currently the &#62;&#62;UBUNTU&#60;&#60; MODULES DONT WORK THAT WAY!
#Get needed files to compile

sudo apt-get install linux-kernel-devel fakeroot build-essential kernel-package
sudo apt-get build-dep linux-image

#get source to /usr/src/git

cd /usr/src &#38;&#38; sudo mkdir git &#38;&#38; sudo chown $USER:$USER git &#38;&#38; cd git
git clone git://kernel.ubuntu.com/ubuntu/ubuntu-hardy.git linux-source-hardy
cd linux-source-hardy

sudo apt-get source linux-image #get the source
ln -s linux-2.6.XX linux #make new source link
cd linux

#Do [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=5&subd=dedors&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><em>currently the &gt;&gt;UBUNTU&lt;&lt; MODULES DONT WORK THAT WAY!</em></p>
<p><strong>#Get needed files to compile</strong></p>
<blockquote>
<pre>sudo apt-get install linux-kernel-devel fakeroot build-essential kernel-package
sudo apt-get build-dep linux-image</pre>
</blockquote>
<p><strong>#get source to /usr/src/git</strong></p>
<blockquote>
<pre>cd /usr/src &amp;&amp; sudo mkdir git &amp;&amp; sudo chown $USER:$USER git &amp;&amp; cd git<em><strong>
</strong></em>git clone git://kernel.ubuntu.com/ubuntu/ubuntu-hardy.git linux-source-hardy
cd linux-source-hardy<span style="text-decoration:line-through;">
</span>
<span style="text-decoration:line-through;">sudo apt-get source linux-image <em><strong>#get the source
</strong></em></span><span style="text-decoration:line-through;">ln -s linux-2.6.XX linux <em><strong>#make new source link
</strong></em></span><span style="text-decoration:line-through;">cd linux</span></pre>
</blockquote>
<p><strong>#Do the Configuration</strong></p>
<blockquote>
<pre>sudo make oldconfig <em><strong>#get old config in the new source
</strong></em>sudo make menuconfig <em><strong>#now search in the 4. option there you can switch from "4GB" to "64GB".</strong></em></pre>
</blockquote>
<p><strong>#Build it!</strong></p>
<blockquote>
<pre>AUTOBUILD=1 NOEXTRAS=1 fakeroot debian/rules binary-generic

<span style="text-decoration:line-through;">sudo make-kpkg clean</span>
<span style="text-decoration:line-through;">sudo make-kpkg --initrd --append-to-version=-</span><span style="text-decoration:line-through;"><span style="color:red;">custom</span> kernel_image kernel_headers</span></pre>
</blockquote>
<p><strong>#and finally install it</strong></p>
<pre>
<blockquote>
<pre>sudo dpkg -i</pre>
</blockquote>
</pre>
<p><strong>#now about the same for the ubuntu modules</strong></p>
<blockquote>
<pre>cd ../..
<span style="text-decoration:line-through;">git clone git://kernel.ubuntu.com/ubuntu/ubuntu-hardy-lum.git linux-source-hardy-modules<em><strong>
</strong></em></span>sudo apt-get source linux-ubuntu-modules-2.6.24-20-generic
<tt>apt-get source linux-restricted-modules</tt>-2.6.24-20-generic<span style="text-decoration:line-through;">
cd linux-source-hardy-modules</span>
cd linux-ubuntu-modules-2.6.24-20-generic
fakeroot debian/rules binary-modules-generic
cd ../linux-restricted-modules-2.6.24-20-generic
fakeroot debian/rules binary-modules-generic
cd ..
sudo dpkg -i linux-ubuntu-modules-2.6.24-20-generic.deb
sudo dpkg -i linux-restricted-modules-2.6.24-20-generic</pre>
</blockquote>
<p><span style="text-decoration:line-through;">at this point you can reboot and the new nvidia module will be compiled automatically during boot.</span></p>
<p><span style="text-decoration:line-through;">but for my laptop, using a iwl4965 module which is only available as a ubuntu module, the wlan does not work anymore, so i tried the following (<strong>not successfull yet</strong>):</span></p>
<blockquote><p><span style="text-decoration:line-through;">sudo make modules</span></p>
<p><span style="text-decoration:line-through;">sudo make modules install</span></p></blockquote>
<blockquote>
<blockquote><p><span style="text-decoration:line-through;">for the linux-ubuntu-modules i tried also the following found on the web, but it was not working:</span></p>
<p><span style="text-decoration:line-through;"><br />
</span></p>
<p><span style="text-decoration:line-through;">mkdir /tmp/test</span><br />
<span style="text-decoration:line-through;">cd /tmp/test</span></p>
<p><span style="text-decoration:line-through;">apt-get source linux-ubuntu-modules-$(uname -r)</span></p>
<p><span style="text-decoration:line-through;">cd linux-ubuntu-modules*</span></p>
<p><span style="text-decoration:line-through;">sudo aptitude install fakeroot kernel-wedge linux-headers-$(uname -r)</span></p>
<p><span style="text-decoration:line-through;">fakeroot debian/rules binary-arch arch=i386 flavours=&#8220;generic&#8220;</span></p></blockquote>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dedors.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dedors.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dedors.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dedors.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dedors.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dedors.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dedors.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dedors.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dedors.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dedors.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dedors.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dedors.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dedors.wordpress.com&blog=4009284&post=5&subd=dedors&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dedors.wordpress.com/2008/07/16/howto-32bit-4gb-support-with-working-nvidia-binary-drivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/07f9fae391d992c7b051ee2ac80dbcd5?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dedors</media:title>
		</media:content>
	</item>
	</channel>
</rss>