<?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>Drop By! &#187; ubuntu</title>
	<atom:link href="http://www.rekk.de/bloggy/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rekk.de/bloggy</link>
	<description>Dropping Brain Crumbs ...</description>
	<lastBuildDate>Wed, 09 Jun 2010 16:59:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Netbeans Font Size Settings in Ubuntu</title>
		<link>http://www.rekk.de/bloggy/2009/netbeans-font-size-setting-in-ubuntu/</link>
		<comments>http://www.rekk.de/bloggy/2009/netbeans-font-size-setting-in-ubuntu/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 15:31:57 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=144</guid>
		<description><![CDATA[(ubuntu 9.04 gnome, netbeans 6.5, Java 1.6) I assume you are familiar with: FaqNetbeansConf , Change the Font Size . Setting the font size of your editors is easy : Tools &#8211; Options &#8211; Font and Colors . If you want to change font size of the menues and panels of the GUI and you [...]]]></description>
			<content:encoded><![CDATA[<p>(ubuntu 9.04  gnome, netbeans 6.5, Java 1.6)</p>
<p>I assume you are familiar with: <a href="http://wiki.netbeans.org/FaqNetbeansConf">FaqNetbeansConf</a> , <a href="http://www.netbeans.org/kb/articles/netbeans-hacks-2.html#font-size">Change the Font Size</a> .</p>
<p>Setting the font size of your editors is easy : Tools &#8211; Options &#8211; Font and Colors .</p>
<p>If you want to change font size of the menues and panels of the GUI and you are using startup options<br />
<pre><pre>
--laf javax.swing.plaf.metal.MetalLookAndFeel
</pre></pre><br />
you can set the GUI font size:<br />
<pre><pre>
--fontsize 13
</pre></pre><br />
and it will work without any problems.</p>
<p>In case you are using the default GTK Theme you will find that the last option doesn&#8217;t change the font size of the menues. Here it helps to edit the ~/.gtkrc-2.0 configuration file:<br />
<pre><pre>
# This file was written by KDE
# You can edit it in the KDE control center, under &quot;GTK Styles and Fonts&quot;

include &quot;/usr/share/themes/Qt/gtk-2.0/gtkrc&quot;

style &quot;user-font&quot;
{
&nbsp;&nbsp;font_name=&quot;Verdana 11&quot;
}
widget_class &quot;*&quot; style &quot;user-font&quot;

gtk-theme-name=&quot;Qt&quot;
gtk-font-name=&quot;Verdana 11&quot;
</pre></pre><br />
Change entries like &#8220;Verdana 11&#8243; according to your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2009/netbeans-font-size-setting-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Gnome Application Launcher &#8211; Run Application in Certain Directory</title>
		<link>http://www.rekk.de/bloggy/2009/gnome-application-launcher-run-application-in-certain-directory/</link>
		<comments>http://www.rekk.de/bloggy/2009/gnome-application-launcher-run-application-in-certain-directory/#comments</comments>
		<pubDate>Tue, 12 May 2009 09:20:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=136</guid>
		<description><![CDATA[This would be easy in kde, but in gnome some extra steps are needed. I changed to gnome just recently being impressed by the clarity and simplicity of the user interface. Being used to the &#8220;kde way&#8221; I needed some time to figure that out. This is an example for kdissert: Create a wrapper script [...]]]></description>
			<content:encoded><![CDATA[<p>This would be easy in kde, but in gnome some extra steps are needed. I changed to gnome just recently being impressed by the clarity and simplicity of the user interface. Being used to the &#8220;kde way&#8221; I needed some time to figure that out.</p>
<p>This is an example for kdissert:</p>
<p>Create a wrapper script for example kdissert.sh in ~/bin/launch and make it executable</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash                                                                                                     </span>
<span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>Known
<span style="color: #c20cb9; font-weight: bold;">nohup</span> kdissert <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">&amp;</span>
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></pre></div></div>

<p>Then use the panel menu to create a Custom Application Launcher : Add to panel -> Custom Application Launcher -> Choose Type: Application, Command: /home/yourusername/bin/launch/kdissert.sh </p>
<p>Another way is to use shell directly. But watch out &#8211; you will need to source your .bashrc if needed:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>Desktop Entry<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #007800;">Version</span>=<span style="color: #000000;">1.0</span>
<span style="color: #007800;">Encoding</span>=UTF-<span style="color: #000000;">8</span>
<span style="color: #007800;">Name</span>=netbeans with some environment settings
<span style="color: #007800;">Exec</span>=<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">bash</span> <span style="color: #660033;">-c</span>  <span style="color: #ff0000;">'. ~/.bashrc; ~/workarea/nb_run.sh'</span>
<span style="color: #666666; font-style: italic;"># to run it in a terminal:</span>
<span style="color: #666666; font-style: italic;"># Exec=gnome-terminal --command &quot;/bin/bash -c  '. ~/.bashrc; ~/workarea/nb_run.sh' &quot;</span>
<span style="color: #007800;">Icon</span>=<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>kostja<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>netbeans-6.5rc2<span style="color: #000000; font-weight: bold;">/</span>nb6.5<span style="color: #000000; font-weight: bold;">/</span>netbeans.png
<span style="color: #007800;">Categories</span>=Development;Java;IDE
<span style="color: #007800;">StartupNotify</span>=<span style="color: #c20cb9; font-weight: bold;">true</span>
<span style="color: #007800;">Type</span>=Application</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2009/gnome-application-launcher-run-application-in-certain-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH on Ubuntu , SHH-Agent Is Running per Default</title>
		<link>http://www.rekk.de/bloggy/2008/ssh-on-ubuntu-shh-agent-is-running-per-default/</link>
		<comments>http://www.rekk.de/bloggy/2008/ssh-on-ubuntu-shh-agent-is-running-per-default/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 23:13:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=58</guid>
		<description><![CDATA[This is an addition to my post Convenient SSH on Linux cause I was suprised finding that KDE is run from ssh-agent per default. # ps aux &#124; grep ssh-agent userx&#160;&#160;&#160;&#160;6784&#160;&#160;0.0&#160;&#160;0.0&#160;&#160; 4480&#160;&#160; 816 ?&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Ss&#160;&#160; 19:02&#160;&#160; 0:00 /usr/bin/ssh-agent /usr/bin/gpg-agent --daemon --sh --write-env-file=/home/userx/.gnupg/gpg-agent-info-myhome /usr/bin/startkde So, first, how can you disable this? In /etc/X11/Xsession.options : # cat /etc/X11/Xsession.options [...]]]></description>
			<content:encoded><![CDATA[<p>This is an addition to my post <a href="http://www.rekk.de/bloggy/2007/convenient-ssh-on-linux-kubuntu/">Convenient SSH on Linux</a> cause I was suprised finding that KDE  is run from ssh-agent per default. </p>
<p><pre><code># ps aux | grep ssh-agent
userx&nbsp;&nbsp;&nbsp;&nbsp;6784&nbsp;&nbsp;0.0&nbsp;&nbsp;0.0&nbsp;&nbsp; 4480&nbsp;&nbsp; 816 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ss&nbsp;&nbsp; 19:02&nbsp;&nbsp; 0:00 /usr/bin/ssh-agent /usr/bin/gpg-agent --daemon --sh --write-env-file=/home/userx/.gnupg/gpg-agent-info-myhome /usr/bin/startkde</code></pre></p>
<p>So, first, how can you disable this?</p>
<p>In /etc/X11/Xsession.options :<br />
<pre><code># cat /etc/X11/Xsession.options
# See Xsession.options(5) for an explanation of the available options.
allow-failsafe
allow-user-resources
allow-user-xsession
use-ssh-agent
use-session-dbus</code></pre><br />
you can disable use-ssh-agent. This option will be used by<br />
<code> /etc/X11/Xsession.d/90x11-common_ssh-agent </code><br />
see there for details.</p>
<p>If you want to use the running ssh-agent you can add your keys on startup by putting this script to .kde/Autostart<br />
<pre><code>#!/bin/sh
# set SSH_ASKPASS if not set elsewhere
# export SSH_ASKPASS=/usr/bin/ssh-askpass
for f in /home/userx/.ssh/mykeys/*_dsa ; do ssh-add $f &amp;lt;/dev/null ; done ; </code></pre></p>
<p>Also check the <a href="https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/47958">related ubuntu bugs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/ssh-on-ubuntu-shh-agent-is-running-per-default/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Dual Monitor on Kubuntu 8.04, Dell Latitude D810 with Radeon Mobility M300 (=X300), Dell D/Port Advanced Replicator Docking Station, Ati Linux Driver fglrx</title>
		<link>http://www.rekk.de/bloggy/2008/configuring-dual-monitor-on-kubuntu-804-dell-latitude-d810-with-radeon-mobility-m300-x300-dell-dport-advanced-replicator-docking-station-ati-linux-driver-fglrx/</link>
		<comments>http://www.rekk.de/bloggy/2008/configuring-dual-monitor-on-kubuntu-804-dell-latitude-d810-with-radeon-mobility-m300-x300-dell-dport-advanced-replicator-docking-station-ati-linux-driver-fglrx/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 11:09:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Xorg dual monitor]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=57</guid>
		<description><![CDATA[After spending a day and a night I have got this working. Not perfectly as restarting Xserver by CTRL+ATL+BACKSPACE would show a scrumbled screen (see below for a fix). This is the hardware configuration I tried to get working: The Laptop &#8220;Dell Latitude D810&#8243; ist connected to a docking station &#8220;D/Port Advanced Port Replicator&#8221;, the [...]]]></description>
			<content:encoded><![CDATA[<p>After spending a day and a night I have got this working. Not perfectly as restarting Xserver by CTRL+ATL+BACKSPACE would show a scrumbled screen (see below for a fix).<br />
This is the hardware configuration I tried to get working:<br />
The Laptop &#8220;Dell Latitude D810&#8243; ist connected to a docking station &#8220;D/Port Advanced Port Replicator&#8221;, the external monitor is connected to the DVI-D Port of the docking station. I wanted a big desktop stretched over both monitors, laptop and external, that makes sense cause the laptop can be fixed in a  upright position by the D/View computer stand, the resolution of both monitors is 1680&#215;1050. </p>
<p>The main steps were:</p>
<ol>
<li>Updating the fresh installed system.</li>
<li>Removing the xorg-driver-fglrx driver package if installed.</li>
<li>Downloading the latest ati fglrx driver from <a href="http://ati.amd.com/support/drivers/linux/linux-radeon.html">http://ati.amd.com/support/drivers/linux/linux-radeon.html</a> and installing them by just running the downloaded ati-driver-installer-8-11-x86.x86_64.run as root.</li>
<li>Reading <a href="http://wiki.cchtml.com/index.php/Configuring">Unofficial Ati Linux Driver Wiki</a></li>
<li>Following descriptions in <a href="http://ubuntuforums.org/showthread.php?t=301941">Dual Monitor Support With Binary, ATI-Only Big-Desktop</a></li>
<li>Running aticonfig  according to the descriptions:<br />
<pre><code>root@myhome:# aticonfig --initial --overlay-type=Xv
root@myhome:# aticonfig --desktop-setup=horizontal --sync-vsync=on --add-pairmode=Width0xHeight0+Width1xHeight1</code></pre>
</li>
<li>
Tuning my xorg.conf by adding some options to the device section.
</li>
</ol>
<p>To make this descriptions complete here is my xorg.conf :<br />
<pre><code># xorg.conf (X.Org X Window System server configuration file)

Section &quot;ServerLayout&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp;&nbsp;&nbsp; &quot;Default Layout&quot;
&nbsp;&nbsp;Screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&quot;aticonfig-Screen[0]-0&quot; 0 0
&nbsp;&nbsp;InputDevice&nbsp;&nbsp;&nbsp;&nbsp;&quot;Synaptics Touchpad&quot;
EndSection

Section &quot;Files&quot;
EndSection

Section &quot;Module&quot;
EndSection

Section &quot;InputDevice&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp;&quot;Generic Keyboard&quot;
&nbsp;&nbsp;Driver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;kbd&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;XkbRules&quot; &quot;xorg&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;XkbModel&quot; &quot;pc105&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;XkbLayout&quot; &quot;de&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;XkbOptions&quot; &quot;lv3:ralt_switch&quot;
EndSection

Section &quot;InputDevice&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp;&quot;Configured Mouse&quot;
&nbsp;&nbsp;Driver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;mouse&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;CorePointer&quot;
EndSection

Section &quot;InputDevice&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp;&quot;Synaptics Touchpad&quot;
&nbsp;&nbsp;Driver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;synaptics&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;SendCoreEvents&quot; &quot;true&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Device&quot; &quot;/dev/psaux&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Protocol&quot; &quot;auto-dev&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;HorizEdgeScroll&quot; &quot;0&quot;
EndSection

Section &quot;Monitor&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp; &quot;Configured Monitor&quot;
EndSection

Section &quot;Monitor&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp; &quot;aticonfig-Monitor[0]-0&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;VendorName&quot; &quot;ATI Proprietary Driver&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;ModelName&quot; &quot;Generic Autodetecting Monitor&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;DPMS&quot; &quot;true&quot;
EndSection

Section &quot;Device&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp;&quot;Configured Video Device&quot;
EndSection

Section &quot;Device&quot;
&nbsp;&nbsp;Identifier&nbsp;&nbsp;&quot;aticonfig-Device[0]-0&quot;
&nbsp;&nbsp;Driver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;fglrx&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;VideoOverlay&quot; &quot;on&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;OpenGLOverlay&quot; &quot;off&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp; &quot;Mode2&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;1680x1050&quot; #Resolution for second monitor
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;DesktopSetup&quot; &quot;horizontal&quot;&nbsp;&nbsp;#Enable Big Desktop
&nbsp;&nbsp;Option &quot;DesktopSetup&quot; &quot;LVDS,AUTO&quot; #the types of monitors that is connected LVDS = LCD, CRT, AUTO
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Option &quot;EnablePrivateBackZ&quot; &quot;yes&quot; #Enable 3d support &amp;lt;= May Not Work
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Option &quot;HSync2&quot; &quot;65&quot; #This sets the horizontal sync for the secondary display. 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Option &quot;VRefresh2&quot; &quot;60&quot; #This sets the refresh rate of the secondary display.
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Capabilities&quot; &quot;0x00000800&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;PairModes&quot; &quot;0x0+0x0&quot;
&nbsp;&nbsp;Option&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;EnableMonitor&quot; &quot;lvds,tmds1&quot; # may be you dont need this
&nbsp;&nbsp;BusID&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;PCI:1:0:0&quot;
EndSection

Section &quot;Screen&quot;
&nbsp;&nbsp;Identifier &quot;Default Screen&quot;
&nbsp;&nbsp;Device&nbsp;&nbsp;&nbsp;&nbsp; &quot;Configured Video Device&quot;
&nbsp;&nbsp;Monitor&nbsp;&nbsp;&nbsp;&nbsp;&quot;Configured Monitor&quot;
EndSection

Section &quot;Screen&quot;
&nbsp;&nbsp;Identifier &quot;aticonfig-Screen[0]-0&quot;
&nbsp;&nbsp;Device&nbsp;&nbsp;&nbsp;&nbsp; &quot;aticonfig-Device[0]-0&quot;
&nbsp;&nbsp;Monitor&nbsp;&nbsp;&nbsp;&nbsp;&quot;aticonfig-Monitor[0]-0&quot;
&nbsp;&nbsp;DefaultDepth&nbsp;&nbsp;&nbsp;&nbsp; 24
&nbsp;&nbsp;SubSection &quot;Display&quot;
&nbsp;&nbsp;&nbsp;&nbsp;Viewport&nbsp;&nbsp; 0 0
&nbsp;&nbsp;&nbsp;&nbsp;Depth&nbsp;&nbsp;&nbsp;&nbsp; 24
&nbsp;&nbsp;EndSubSection
EndSection</code></pre></p>
<p>First I could fix the <strong>freezing of X</strong> on logout by disabling <strong>acpi</strong>. But then I found at <a href="http://wiki.cchtml.com/index.php/Troubleshooting">Wiki Troubleshooting</a> some hints and had success with:<br />
File: /etc/kde3/kdm/kdmrc<br />
<code>TerminateServer=true</code><br />
didn&#8217;t work alone. Added<br />
<code>sudo /usr/sbin/update-rc.d -f atieventsd remove</code><br />
with success even with acpi enabled.</p>
<p>Grub menu disabling acpi:</p>
<p><pre><code># set this in /boot/grub/menu.lst
title&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Ubuntu 8.04.1, kernel 2.6.24-21-generic ACPI=off
root&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(hd0,5)
kernel&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/boot/vmlinuz-2.6.24-21-generic root=UUID=45c3fc6b-bbcb-4320-8470-9228582f3115 ro quiet pci=noacpi acpi=off
initrd&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/boot/initrd.img-2.6.24-21-generic
</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/configuring-dual-monitor-on-kubuntu-804-dell-latitude-d810-with-radeon-mobility-m300-x300-dell-dport-advanced-replicator-docking-station-ati-linux-driver-fglrx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Versioning Symlinks with Subversion on Linux</title>
		<link>http://www.rekk.de/bloggy/2008/versioning-symlinks-with-subversion-on-linux/</link>
		<comments>http://www.rekk.de/bloggy/2008/versioning-symlinks-with-subversion-on-linux/#comments</comments>
		<pubDate>Tue, 13 May 2008 16:12:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=50</guid>
		<description><![CDATA[Since Version 1.1 subversion can deal with symlinks (see Does Subversion support symlinks?). There are only a few remarks in the manual Versioned Properties &#8211; svn:special and &#8216;svn add&#8217; command. Actually all handling of the symbolic link is up to the client. Cause in creation of symlinks the used paths do matter and subversion stores [...]]]></description>
			<content:encoded><![CDATA[<p>Since Version 1.1 subversion can deal with symlinks (see <a href="http://subversion.tigris.org/faq.html#symlinks">Does Subversion support symlinks?</a>). There are only a few remarks in the manual <a href="http://svnbook.red-bean.com/en/1.4/svn-book.html#svn.ref.properties.versioned-props">Versioned Properties &#8211; svn:special</a> and <a href="http://svnbook.red-bean.com/en/1.4/svn-book.html#svn.ref.svn.c.add">&#8216;svn add&#8217; command</a>.</p>
<p>Actually all handling of the symbolic link is up to the client. Cause in creation of symlinks the used paths do matter and subversion stores the link target in simple text file with the appropriate relative or absolute path you should choose the way you create your symlinks with care.</p>
<p>Example &#8211; Creating a symlink in your working copy:</p>
<p><pre><code>$ mkdir A
$ ln -s A link
$ svn add --force .
A&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; A
A&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; link
$ svn commit -m &quot;link there&quot;</code></pre></p>
<p>the contents of the link file in svn:<br />
<code>link A</code></p>
<p>Example &#8211; change symlink target<br />
<pre><code>$ svn del --force link
$ svn commit -m &quot;no link&quot;
$ mkdir B
$ ln -s B link
$ svn add --force .
$ svn commit -m &quot;link changed to B&quot;</code></pre></p>
<p>the contents of the link file in svn:<br />
<code>link B</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/versioning-symlinks-with-subversion-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Subversion exclude files by svn:ignore and &#8216;svn add *&#8217;  pitfall</title>
		<link>http://www.rekk.de/bloggy/2008/subversion-exclude-files-by-svnignore-and-svn-add-pitfall/</link>
		<comments>http://www.rekk.de/bloggy/2008/subversion-exclude-files-by-svnignore-and-svn-add-pitfall/#comments</comments>
		<pubDate>Tue, 13 May 2008 14:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=49</guid>
		<description><![CDATA[To exclude certain files and directories from subversion&#8217;s version control you can set the &#8216;svn:ignore&#8217; property as described in Ignoring Unversioned Items. That works fine but nevertheless you might run into problems if you are using svn add * or similiar on linux systems. This is due to the shell expansion of wildcards. The above [...]]]></description>
			<content:encoded><![CDATA[<p>To exclude certain files and directories from subversion&#8217;s version control you can set the &#8216;svn:ignore&#8217; property as described in <a href="http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.ignore.html">Ignoring Unversioned Items</a>.<br />
That works fine but nevertheless you might run into problems if you are using<br />
<code>svn add *</code><br />
or similiar on <strong>linux </strong> systems. This is due to the shell expansion of wildcards. The above command is expanded to explicit files names <code>svn add filename</code> and seems to have the same effect as <code>svn add --no-ignore filename</code>.<br />
<strong>Tip: Use <code>svn add --force .</code> instead!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/subversion-exclude-files-by-svnignore-and-svn-add-pitfall/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox Problem in Ubuntu Feisty &#8211; &#8220;The connection was reset&#8221; on certain sites</title>
		<link>http://www.rekk.de/bloggy/2008/firefox-problem-in-ubuntu-feisty-the-connection-was-reset-on-certain-sites/</link>
		<comments>http://www.rekk.de/bloggy/2008/firefox-problem-in-ubuntu-feisty-the-connection-was-reset-on-certain-sites/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 23:23:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=48</guid>
		<description><![CDATA[Today I faced a strange bug caused by the interaction of the user-agent string of Firefox on ubuntu feisty and some paket filters. A site wouldn&#8217;t load with the error message above in Firefox, but it would load in Opera. Update of firefox package didn&#8217;t fix it. Found this thread Connection Reset in Firefox but [...]]]></description>
			<content:encoded><![CDATA[<p>Today I faced a strange bug caused by the interaction of the user-agent string of Firefox on ubuntu feisty and some paket filters. A site wouldn&#8217;t load with the error message above in Firefox, but it would load in Opera. Update of firefox package didn&#8217;t fix it.</p>
<p>Found this thread <a href="http://ubuntuforums.org/showthread.php?t=430855">Connection Reset in Firefox but not other browsers</a> and one proposed fix worked for me:</p>
<p>Open &#8220;about:config&#8221; , type useragent in filter and change setting &#8220;general.useragent.extra.firefoxComment&#8221; from (Ubuntu fe<b>ist</b>y) to (Ubuntu). The problem seems to be that substring &#8220;ist&#8221; is recognized as a malware signature by some paket filters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/firefox-problem-in-ubuntu-feisty-the-connection-was-reset-on-certain-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kubuntu (Feisty) postscript related Error &#8220;Unknown device: x11&#8243; &#8211; Fix</title>
		<link>http://www.rekk.de/bloggy/2008/kubuntu-feisty-postscript-related-error-unknown-device-x11-fix/</link>
		<comments>http://www.rekk.de/bloggy/2008/kubuntu-feisty-postscript-related-error-unknown-device-x11-fix/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 17:30:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=42</guid>
		<description><![CDATA[If it happens that you see the error message:&#8221;Unknown device: x11&#8243; when you want a print file preview or similar, install the gs-esp-x package. That will fix the problem.]]></description>
			<content:encoded><![CDATA[<p>If it happens that you see the error message:&#8221;Unknown device: x11&#8243; when you want a print file preview or similar, install the gs-esp-x package. That will fix the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/kubuntu-feisty-postscript-related-error-unknown-device-x11-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KDE&#8217;s integrated Subversion Client kdesvn</title>
		<link>http://www.rekk.de/bloggy/2008/kdes-build-in-subversion-client-kdesvn/</link>
		<comments>http://www.rekk.de/bloggy/2008/kdes-build-in-subversion-client-kdesvn/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 20:00:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=35</guid>
		<description><![CDATA[Command line utilities are great for one-pointed tasks or for batch processing, but sometimes you just want to browse around and quickly play with the options. For that purpose I prefer to use GUI-tools. In ubuntu you can use the svn-workbench as an GUI-Client written in python to subversion repositories. I am using KDE, so [...]]]></description>
			<content:encoded><![CDATA[<p>Command line utilities are great for one-pointed tasks or for batch processing, but sometimes you just want to browse around and quickly play with the options. For that purpose I prefer to use GUI-tools.</p>
<p>In ubuntu you can use the svn-workbench as an GUI-Client written in python to subversion repositories. I am using KDE, so installing<a href="http://kdesvn.alwins-world.de/"> kdesvn </a> (also see <a href="http://www.kde-apps.org/content/show.php?content=26589">kde-apps.org</a>) gives me a repository access and management functions right in my Konqueror file browser by using addresses like: <code> ksvn+https://rcs.somehost.de/rep1</code>. In this way you can work in repositories without explicit checkout. The only draw back appears in case you want to copy directories. Due to Konquerors way of copying/moving with KIO you will be asked for log messages for each single subdir or file recursively. To avoid being asked for log messages every time start kdesvn, go to Main Menu Settings &#8211; Configure Kdesvn &#8211; KIO/Commandline &#8211; check KIO operations use standard logmessage .</p>
<p>Kdesvn adds extra functions in Konqueror&#8217;s context menu : RightClick &#8211; Actions &#8211; Subversion . Kate and QuantaPlus Integration is also provided by kdesvn.</p>
<p>BTW: Subclipse is a good svn GUI client implementation as well, but requires an Eclipse installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2008/kdes-build-in-subversion-client-kdesvn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scheduling Video (and Audio) Stream Recording on Linux</title>
		<link>http://www.rekk.de/bloggy/2007/scheduling-stream-recording-on-linux/</link>
		<comments>http://www.rekk.de/bloggy/2007/scheduling-stream-recording-on-linux/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 22:47:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.rekk.de/bloggy/?p=34</guid>
		<description><![CDATA[Say you want to record a video live stream from the internet for example from the Streaming CCC Congress in Berlin 2007. This can be accomplished using the glorious mplayer HOWTO Rip Streams With MPlayer. To stop the recording after a certain amount of time use this simple script (see also my post Finding Child [...]]]></description>
			<content:encoded><![CDATA[<p>Say you want to record a video live stream from the internet for example from the <a href="http://events.ccc.de/congress/2007/Streaming">Streaming CCC Congress in Berlin 2007</a>.</p>
<p>This can be accomplished using the glorious mplayer <a href="http://gentoo-wiki.com/HOWTO_Rip_Streams_With_MPlayer">HOWTO Rip Streams With MPlayer</a>.</p>
<p>To stop the recording after a certain amount of time use this simple script (see also my post <a href="http://www.rekk.de/bloggy/?p=33">Finding Child Process Pids &#8230;</a> ):<br />
<pre><code>#!/bin/bash
URL=$1
FILE=$2
# duration in minutes
DURATION=$3
mplayer -framedrop -autosync 30 -cache 10000 -dumpstream $URL -dumpfile $FILE &amp;amp;amp;
sleep $DURATIONm
kill %+</code></pre></p>
<p>Now you need to start this script at a certain time. For that you could use the linux &#8220;at&#8221; command (see <a href="http://linux.about.com/library/cmd/blcmdl1_at.htm">at</a>). To run it you have to export the DISPLAY variable on ubuntu (see <a href="https://bugs.launchpad.net/ubuntu/+source/at/+bug/94933">Bug #94933</a>):<br />
<code>export DISPLAY=$DISPLAY ; export TERM=$TERM; echo &quot;echo &#039;Hallo&#039;&quot; | at&nbsp;&nbsp;now</code></p>
<p>But I prefer KAlarm from KDE to schedule tasks which should run only once.<br />
Run KAlarm, create New Alarm, choose Action &#8220;Command&#8221;, enter the path to your script with appropriate arguments for stream url, dumpfile and duration in minutes:<br />
<code>/home/myhome/scripts/stream_ripper.sh mms://streaming-internet.fem.tu-ilmenau.de/saal3 test.asf 60</code><br />
, adjust all other settings which are quite self explaining. Use the template feature of KAlarm for similiar tasks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rekk.de/bloggy/2007/scheduling-stream-recording-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

