<?xml version="1.0"?>
<rss version="2.0">
<channel>
  <title>Markus&#039; Blog - os_unix category</title>
  <link>http://www.tower-net.de:80/blog/categories/os_unix/</link>
  <description>Frenzied programming..., tech..., climbing..., sports..., mountain..., nature... and futile notes</description>
  <language>en</language>
  <copyright>Markus Kolb</copyright>
  <lastBuildDate>Wed, 20 Jul 2011 18:43:00 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  
  <image>
    <url>http://www.tower-net.de/blog/favicon.ico</url>
    <title>Markus&#039; Blog (os_unix category)</title>
    <link>http://www.tower-net.de:80/blog/</link>
  </image>
  
  
  <item>
    <title>Amazon EC2 boot script to associate elastic ip</title>
    <link>http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html</link>
    
      
      
        <description>
          After installation of the AWS API tools you can associate an elastic ip address to the instance from the instance itself during boot process.&lt;br /&gt;
&lt;br /&gt;
I&#039;ve written an SysV RC script.&lt;p&gt;&lt;a href=&#034;http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html&#034;&gt;Read more...&lt;/a&gt;&lt;/p&gt;
        </description>
      
    
    
    
    <category>os_unix</category>
    
    <category>tech</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2011/07/20/1311187380000.html</guid>
    <pubDate>Wed, 20 Jul 2011 18:43:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Kernel compiling</title>
    <link>http://www.tower-net.de:80/blog/2011/07/03/1309683454468.html</link>
    
      
      
        <description>
          To build a customized kernel for natty you can follow the outdated wiki article at &lt;br /&gt;
&lt;a href=&#034;https://help.ubuntu.com/community/Kernel/Compile&#034;&gt;https://help.ubuntu.com/community/Kernel/Compile&lt;/a&gt;&lt;br /&gt;
Use the information for &lt;strong&gt;Ubuntu Karmic Koala (9.10) and newer releases!&lt;/strong&gt;&lt;br /&gt;
Follow these additional instructions to get it to work...&lt;p&gt;&lt;a href=&#034;http://www.tower-net.de:80/blog/2011/07/03/1309683454468.html&#034;&gt;Read more...&lt;/a&gt;&lt;/p&gt;
        </description>
      
    
    
    
    <category>tech</category>
    
    <category>os_unix</category>
    
    <comments>http://www.tower-net.de:80/blog/2011/07/03/1309683454468.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2011/07/03/1309683454468.html</guid>
    <pubDate>Sun, 03 Jul 2011 08:57:34 GMT</pubDate>
  </item>
  
  <item>
    <title>X11 recording with ffmpeg</title>
    <link>http://www.tower-net.de:80/blog/2010/10/31/1288544280000.html</link>
    
      
        <description>
          ffmpeg -f x11grab -s wxga -r 25 -i :0.0 -sameq /tmp/out.mpg
        </description>
      
      
    
    
    
    <category>tech</category>
    
    <category>os_unix</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/10/31/1288544280000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/10/31/1288544280000.html</guid>
    <pubDate>Sun, 31 Oct 2010 16:58:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Oneliner to handle file system limitations on file move</title>
    <link>http://www.tower-net.de:80/blog/2010/10/31/1288481460000.html</link>
    
      
        <description>
          A simple oneliner to move files to a file size limited file system (e.g. 2Gb)...&lt;br /&gt;
destdir=/destinationdir/../.. ; for f in * ; do s=$(stat -c %s &amp;quot;$f&amp;quot;) ; if [ $s -ge $((2*1000*1000*1000)) ] ; then 7z a -mx=0 -tzip -v2000m &amp;quot;$destdir&amp;quot;/&amp;quot;$f&amp;quot;.zip&amp;nbsp; &amp;quot;$f&amp;quot; ; else mv -v &amp;quot;$f&amp;quot; &amp;quot;$destdir&amp;quot;/&amp;quot;$f&amp;quot; ; fi ; done
        </description>
      
      
    
    
    
    <category>os_unix</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/10/31/1288481460000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/10/31/1288481460000.html</guid>
    <pubDate>Sat, 30 Oct 2010 23:31:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Java 7 supports creating symbolic links</title>
    <link>http://www.tower-net.de:80/blog/2010/07/06/1278442200000.html</link>
    
      
        <description>
          Just discovered at&lt;br /&gt;
&lt;a href=&#034;http://openjdk.java.net/projects/nio/javadoc/java/nio/file/Path.html#createSymbolicLink%28java.nio.file.Path,%20java.nio.file.attribute.FileAttribute...%29&#034;&gt;http://openjdk.java.net/projects/nio/javadoc/java/nio/file/Path.html#...&lt;/a&gt;&lt;br /&gt;
that Java 7 might support the developer in creating symbolic links to  files and directories.
        </description>
      
      
    
    
    
    <category>os_unix</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/07/06/1278442200000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/07/06/1278442200000.html</guid>
    <pubDate>Tue, 06 Jul 2010 18:50:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Virtualbox USB in Ubuntu Lucid</title>
    <link>http://www.tower-net.de:80/blog/2010/03/10/1268260620000.html</link>
    
      
        <description>
          Although Lucid has replaced HAL you&#039;ll still need it to use USB in Virtualbox.
        </description>
      
      
    
    
    
    <category>tech</category>
    
    <category>os_unix</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/03/10/1268260620000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/03/10/1268260620000.html</guid>
    <pubDate>Wed, 10 Mar 2010 22:37:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Thanks for the memory</title>
    <link>http://www.tower-net.de:80/blog/2010/02/11/1265884800000.html</link>
    
      
        <description>
          &lt;strong&gt;Summary:&lt;/strong&gt;&amp;nbsp; Running out of Java&amp;trade; heap isn&#039;t the only cause of a &lt;code&gt;java.lang.OutOfMemoryError&lt;/code&gt;. If &lt;em&gt;native memory&lt;/em&gt; runs out, &lt;code&gt;OutOfMemoryError&lt;/code&gt;s that your normal debugging techniques won&#039;t be able     to solve can occur. This article explains what native memory is, how the Java runtime     uses it, what running out of it looks like, and how to debug a native &lt;code&gt;OutOfMemoryError&lt;/code&gt; on AIX&amp;reg;.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&#034;http://www.ibm.com/developerworks/aix/library/j-nativememory-aix/index.html&#034;&gt;http://www.ibm.com/developerworks/aix/library/j-nativememory-aix/index.html&lt;/a&gt;
        </description>
      
      
    
    
    
    <category>os_unix</category>
    
    <category>was</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/02/11/1265884800000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/02/11/1265884800000.html</guid>
    <pubDate>Thu, 11 Feb 2010 10:40:00 GMT</pubDate>
  </item>
  
  <item>
    <title>Snoop USB data stream in Linux</title>
    <link>http://www.tower-net.de:80/blog/2010/02/10/1265817780000.html</link>
    
      
        <description>
          Greg Kroah-Hartman provided some older article to use printk in the USB driver of the Linux kernel to output complete data: &lt;a href=&#034;http://www.linuxjournal.com/article/7582?page=0,0&#034;&gt;http://www.linuxjournal.com/article/7582?page=0,0&lt;/a&gt;
        </description>
      
      
    
    
    
    <category>os_unix</category>
    
    <category>programming</category>
    
    <comments>http://www.tower-net.de:80/blog/2010/02/10/1265817780000.html#comments</comments>
    <guid isPermaLink="true">http://www.tower-net.de:80/blog/2010/02/10/1265817780000.html</guid>
    <pubDate>Wed, 10 Feb 2010 16:03:00 GMT</pubDate>
  </item>
  
  </channel>
</rss>

