<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>busybox &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/busybox/</link>
	<description>Feed of posts on WordPress.com tagged "busybox"</description>
	<pubDate>Wed, 10 Feb 2010 07:47:33 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[GPL, The Revenge]]></title>
<link>http://samsungdlna.wordpress.com/2010/01/16/gpl-the-revenge/</link>
<pubDate>Sat, 16 Jan 2010 23:25:35 +0000</pubDate>
<dc:creator>samsungdlna</dc:creator>
<guid>http://samsungdlna.wordpress.com/2010/01/16/gpl-the-revenge/</guid>
<description><![CDATA[So there is an updated Open Source document, disclaimer, on Samsung&#8217;s site. I assume this is a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So there is an updated Open Source document, disclaimer, on Samsung&#8217;s site. I assume this is all about the busybox <a title="Busybox Lawsuit" href="http://www.softwarefreedom.org/news/2009/dec/14/busybox-gpl-lawsuit/" target="_blank">lawsuit</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Solving the BusyBox black screen problem in grub2/Ubuntu9.10]]></title>
<link>http://computergyan.wordpress.com/2009/12/31/solving-the-busybox-black-screen-problem-in-grub2ubuntu9-10/</link>
<pubDate>Thu, 31 Dec 2009 00:07:28 +0000</pubDate>
<dc:creator>Sayantan</dc:creator>
<guid>http://computergyan.wordpress.com/2009/12/31/solving-the-busybox-black-screen-problem-in-grub2ubuntu9-10/</guid>
<description><![CDATA[Have you ever had a situation when Ubuntu was running perfectly fine moments ago and after restartin]]></description>
<content:encoded><![CDATA[Have you ever had a situation when Ubuntu was running perfectly fine moments ago and after restartin]]></content:encoded>
</item>
<item>
<title><![CDATA[Debugging the linux boot process]]></title>
<link>http://scaryreasoner.wordpress.com/2009/08/29/debugging-the-linux-boot-process/</link>
<pubDate>Sat, 29 Aug 2009 02:27:03 +0000</pubDate>
<dc:creator>scaryreasoner</dc:creator>
<guid>http://scaryreasoner.wordpress.com/2009/08/29/debugging-the-linux-boot-process/</guid>
<description><![CDATA[Recently I had to debug some stuff very early in the linux boot process. When linux boots, it loads ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Recently I had to debug some stuff very early in the linux boot process.</p>
<p>When linux boots, it loads the kernel into memory, and you can think of the kernel as a giant program that is the first thing to run, and also an &#8220;initrd&#8221; image is loaded into memory.  The &#8220;initrd&#8221; image, or &#8220;initial RAM disk&#8221; image, is the first filesystem mounted, and it is the filesystem the first hand-crafted process, init, sees.  There&#8217;s an &#8220;init&#8221; script in this initial RAM disk image, which looks sort of like a shell script, but it isn&#8217;t really a &#8220;real&#8221; shell script, in that the shell which interprets it is not a &#8220;real&#8221; shell, such as sh, bash, csh or any of those.  The shell that this script is written for was (in my case, redhat&#8217;s) &#8220;nash,&#8221; short for &#8220;nano-shell,&#8221; so named because of its tiny size.  Nash only has a few commands, almost all of which are built-in &#8212; precompiled into the nash binary &#8212; rather than separately compiled binaries.</p>
<p>When the &#8220;init&#8221; script runs into trouble, maybe because of a misbehaving storage driver, it&#8217;d be nice if you could get an interactive shell.  Well, it turns out you can, though it&#8217;s a bit involved, esp. if it&#8217;s the first time you&#8217;ve done anything like this. </p>
<p>So the initial RAM disk image, the &#8220;initrd&#8221; image is this binary blob of stuff.  How can you change it?  Well, it turns out to be not that difficult.  It&#8217;s just a gzipped cpio archive.</p>
<p>Look in /boot/grub/menu.lst to find which initrd image you&#8217;re using, then copy the initrd image to some working directory.  Use gunzip to unzip it.</p>
<pre>
[root@zuul workdir]# gunzip  unzipped
[root@zuul workdir]# ls
initrd-2.6.26.img  unzipped
[root@zuul workdir]# mkdir tmp
[root@zuul workdir]# cd tmp
[root@zuul tmp]# cpio -imdu &#60; ../unzipped
17555 blocks
[root@zuul tmp]# ls
bin  dev  etc  init  lib  proc  sbin  sys  sysroot  usr
</pre>
<p>So that&#8217;s what&#8217;s in the initrd image.  The &#8220;init&#8221; file is the init script.  So the question is, how can we make this init script give us a real shell?</p>
<p>Well, we need to put a real shell in the bin directory.  You could just copy bash in there.  But then you&#8217;d need all the libraries that bash needs, and bash has some built-in functions, but lots of stuff isn&#8217;t built-in, so you&#8217;d have to start copying other commands you might need &#8212; like vim &#8212; and any libraries they might need, and pretty soon it starts to be a lot of stuff, and a lot of work to figure out just what it is you need.  </p>
<p>My second thought was to try to compile nash.  But nash is distributed as a source rpm, and I started to run into a wall of dependencies, and I just hate rpms in general.  I wanted to modify nash, not just build it from the source rpm.  Source rpms are not programmer friendly.  Source rpms might be considered system administrator friendly, but I&#8217;m not even sure about that.  The whole RPM design seems to me to be rather incompetent.  But that&#8217;s neither here nor there.  Forget about trying to debug nash, there&#8217;s no need (unless you&#8217;re very unlucky.)</p>
<p>There&#8217;s a better way.  Go grab <a href="http://www.busybox.net/">busybox</a>.  Busybox is a shell that&#8217;s meant for use on embedded systems.  It&#8217;s got much of the functionality of a real shell, plus lots of what would normally be external commands built in, and it doesn&#8217;t have a lot of dependencies on libraries. </p>
<p>To build busybox, you run &#8220;make menuconfig&#8221;, then &#8220;make&#8221; (similar to how the kernel is built.)  It&#8217;s done this way because, like the kernel, there are many things you can turn on or off, depending on what commands your &#8220;embedded&#8221; system needs.  For use in debugging nash init scripts and the early kernel booting process, the default configuration which has most everything turned on is fine.</p>
<p>Once busybox compiles, run ldd on it to see what libraries it needs.  Copy busybox and the needed libraries into the bin and lib directories that you unpacked from the initrd image.</p>
<p>Busybox contains all manner of different commands, like &#8220;ls&#8221;, &#8220;vi&#8221;, &#8220;ln&#8221;, &#8220;dd&#8221;, and so on.  You can either invoke busybox as &#8220;busybox&#8221; with the command name as the first argument, or you can make a link from the command name to busybox, and busybox, if invoked as &#8220;ls&#8221;, will perform as &#8220;ls&#8221;, and if invoked as &#8220;vi&#8221;, will perform as (a very stripped down) vi, etc.)</p>
<p>It&#8217;s probably a good idea to make symlinks from bin/ls to bin/busybox and likewise for whatever other commands you know you&#8217;ll need.  If you find you&#8217;ve forgotten some during debugging, you can make new links via</p>
<pre>
        cd bin
        busybox ln -s command busybox
</pre>
<p>So, once busybox, its few needed libraries, and whatever sym links you care to make are done, just edit the init script to invoke &#8220;busybox ash&#8221; (&#8220;ash&#8221; for &#8220;a shell&#8221;) at the point at which you need to debug, and then it&#8217;s time to pack up the initrd image.</p>
<p>To do that, it&#8217;s just</p>
<pre class="brush: plain;">
        find . -print &amp;#124; cpio -Hnewc -o ../myinitrd
        cd ..
        gzip -9 myinitrd
        cp myinitrd.gz /boot
</pre>
<p>Then just edit /boot/grub/menu.lst to use this custome initrd image, and when it boots up, if all has been done correctly, when the init script comes to the line &#8220;busybox ash&#8221;, you should get a shell prompt, at which point you can run whatever commands you set up in bin, or whatever commands are compiled into busybox, and generally commence debugging.</p>
<p>By this means I was able to debug a problem with a storage driver that, as it turned out, wasn&#8217;t allowing the open() call to succeed on the first attempt to read the partition tables, so no partition sysfs entries were being created, so udev never made any partition device files, and so root could not be mounted.  That would have been pretty tough to figure out without some visibility into what was going on with the init script, and without the ability to poke around in /sys during the early stages of booting. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OS Boots In One Second - Embedded Linux Company Rocks !]]></title>
<link>http://vhxnblog.wordpress.com/2009/07/15/os-boots-in-one-second-embedded-linux-company-rocks/</link>
<pubDate>Wed, 15 Jul 2009 14:55:24 +0000</pubDate>
<dc:creator>vhxnblog</dc:creator>
<guid>http://vhxnblog.wordpress.com/2009/07/15/os-boots-in-one-second-embedded-linux-company-rocks/</guid>
<description><![CDATA[MontaVista, as you know it is an embedded Linux Company said its latest system is capable for bringi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>MontaVista, as you know it is an embedded Linux Company said its latest system is capable for bringing one-second boot for you. Besides, it has released a video in which you can see the vehicle dashboard system that goes from cold boot into a &#8220;fully operational&#8221; state in that<a href="http://www.vhxn.com/how-to-fix-scan-disk-error-during-system-boot/"> time</a>.<br />
But, this one second booting is not directly translatable to Linux OS based environment. Nevertheless, you have to launch additional drivers and process for a full-fledged OS.</p>
<p><a href="http://www.vhxn.com/microsoft-announces-web-based-office-tools-for-ms-office-2010/">Click to know</a> about Microsoft Web Based MS Office 2010</p>
<p><a href="http://www.vhxn.com"><img class="alignnone size-full wp-image-10772" title="MonoaVistaEmbeddedLinux" src="http://www.vhxn.com/wp-content/uploads/2009/07/MonoaVistaEmbeddedLinux.jpg" alt="MonoaVistaEmbeddedLinux" width="515" height="349" /></a></p>
<p><!--more--></p>
<p>Normally, you can have the fast booting OS from Intel’s Netbook Linux OS, Moblin. This <a href="http://www.vhxn.com/use-startup-manager-to-edit-boot-menu-in-ubuntu/">chipmaker</a> recently has made a collaboration with Phoenix Technologies that brings a fast boot technology dubbed as HyperSpace.  This recent software features a stripped down Linux environment with a browser, Wi-Fi software in order to boot your system quick.</p>
<p>[ <a href="http://www.vhxn.com">More</a> ]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[C: Múltiplos programas no mesmo binário]]></title>
<link>http://codare.net/2009/06/10/c-multiplos-programas-no-mesmo-binario/</link>
<pubDate>Wed, 10 Jun 2009 12:00:06 +0000</pubDate>
<dc:creator>Thiago Santos</dc:creator>
<guid>http://codare.net/2009/06/10/c-multiplos-programas-no-mesmo-binario/</guid>
<description><![CDATA[Um mesmo aplicativo pode se comportar de forma diferente dependendo da forma como é invocado. No exe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Um mesmo aplicativo pode se comportar de forma diferente dependendo da forma como é invocado. No exemplo a seguir, o mesmo programa é usado para calcular a raiz quadrada e potência de dois de um dado argumento.</p>
<pre>#include &#60;libgen.h&#62;
#include &#60;math.h&#62;
#include &#60;stdio.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;string.h&#62;

int main(int argc, char **argv)
{
    double res;
    char *program = basename(argv[0]);

    if (argc != 2)
        return 1;

    if (!strcmp(program, "sqrt")) {
        res = sqrt(atof(argv[1]));
        printf("%f\n", res);
        return 0;
    }

    if (!strcmp(program, "pow2")) {
        res = pow(atof(argv[1]), 2);
        printf("%f\n", res);
        return 0;
    }

    printf("Invalid program: %s\n", program);

    return 1;
}</pre>
<p>O truque consiste em analisar o primeiro argumento que corresponde ao caminho do binário do programa. No exemplo, decidimos qual ação tomar comparando o nome do programa com &#8220;sqrt&#8221; e &#8220;pow2&#8243;. Para não fazer múltiplas cópias do binário gerado, fazemos links simbólicos.</p>
<pre>$ gcc -Wall -lm -o test test.c
$ ln -s test sqrt
$ ln -s test pow2

$ ./test 5
Invalid program: test

$ ./pow2 5
25.000000

$ ./sqrt 5
2.236068</pre>
<p>A técnica é extensamente utilizada no <a href="http://www.busybox.net/">BusyBox</a> e pode facilmente ser implementada em qualquer outra linguagem de programação.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Instalar busybox en Android 1.5]]></title>
<link>http://an6roi6es.wordpress.com/2009/05/22/instalar-busybox-en-android-15/</link>
<pubDate>Fri, 22 May 2009 06:37:20 +0000</pubDate>
<dc:creator>androidess</dc:creator>
<guid>http://an6roi6es.wordpress.com/2009/05/22/instalar-busybox-en-android-15/</guid>
<description><![CDATA[Ayer quería pasarme una aplicación bajada del mercado Android a la computadora desde un móvil con ro]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="foro">
<p style="text-align:justify;">Ayer quería pasarme una aplicación bajada del mercado Android a la computadora desde un móvil con root y versión 1.5 oficial. Las aplicaciones están en la ruta /data/app del móvil. Intenté hacer un adb pull /data/app/&#60;aplicacion c:/ pero me daba error supongo porqué ese directorio tiene permisos de root.</p>
<p style="text-align:justify;">La segunda opción entrar con terminal con usuario root, probé el comando mv (mover o renombrar) fallo por problemas de linkado. El comando cp (copiar) no existe así que busqué como conseguirlo. Para eso está busybox un compendio de comandos básicos para sobrevivir. Finalmente, con busybox pude copiar el archivo en el directorio de la /sdcard y bajarlo a la computadora. </p>
<p style="text-align:justify;">BusyBox es necesario para hacer cualquier cosa si tienes un firmware oficial.<strong> Instalarlo es muy sencillo con este manual: </strong><a title="Instalar busybox" href="http://and.roid.es/foro/viewtopic.php?f=13&#38;t=193&#38;sid=eaecfba31507e7cbaab4af2522688d32#p1006"><strong>Instalar BusyBox</strong></a></p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[El Sistema Linux mas pequeño del Mundo]]></title>
<link>http://raulespinola.wordpress.com/2009/03/26/el-sistema-linux-mas-pequeno-del-mundo/</link>
<pubDate>Thu, 26 Mar 2009 09:23:51 +0000</pubDate>
<dc:creator>raulespinola</dc:creator>
<guid>http://raulespinola.wordpress.com/2009/03/26/el-sistema-linux-mas-pequeno-del-mundo/</guid>
<description><![CDATA[Impresionante sistema embebido basado en Linux, y aunque no es Hardware Libre, imaginanse lo que se ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" src="http://www.picotux.com/pt112x.jpg" alt="" width="419" height="314" /></p>
<p>Impresionante sistema embebido basado en Linux, y aunque no es Hardware Libre, imaginanse lo que se puede hacer con unos componentes y un gran sistema operativo.</p>
<p><a href="http://www.picotux.com/">PicoTux</a> es el nombre de éste minúscilo ordenador con Linux integrado con unas dimensiones de tan solo 35×19×19 milímetros.</p>
<p>Está basado en un procesador ARM7 corriendo a 55 MHz ejecutando un kernel <a href="http://www.uclinux.org/">uClinux 2.4.27</a> y usa la shell <a href="http://www.busybox.net/">Busybox 1.0</a>. Dispone de una conexión Ethernet 10/100 y un puerto série de hasta 230.400 baudios. Se alimenta con tan solo 3,3 Voltios y necesita unos 250 mA para funcionar. Podeis ver las especificaciones completas <a href="http://www.picotux.com/techdatae.html">aqui</a></p>
<p><strong><em>El Sistema Operativo utilizado para hacer funcionar el hardware es uClinux 2.4.27 big endian. Con respecto a las solicitudes, además del shell  BusyBox 1.0, también está presente un servidor Web y un servicio Telnet. Por el sistema de archivos Picotux 100 utiliza CRAMFS, JFFS2 y NFS (Sistema de archivos de red). Incluso el sistema de desarrollo tiene mucho que ofrecer; GCC 3.4.4 para C / C + + y Fortran compilador, binutils 2.15 y Bibliotecas uClibc 0.9.26.</em></strong></p>
<p><strong><em>Por supuesto que es un sistema muy limitado, pero es que justamente el objetivo es que sea pequeño y eso en algunos lugares y situaciones especiales puede ser una ventaja y con lo que tiene alcanza.<br />
</em></strong></p>
<p>Fuente:</p>
<address><a href="http://www.bricogeek.com/index/cat/8/">http://www.bricogeek.com</a></address>
<address><a href="http://www.kabatology.com/05/29/picotux-the-smallest-linux-computer-in-the-world/">http://www.kabatology.com</a></address>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Slitaz - one heck of a distro!]]></title>
<link>http://firmit.wordpress.com/2009/03/02/slitaz-one-heck-of-a-distro/</link>
<pubDate>Mon, 02 Mar 2009 21:54:06 +0000</pubDate>
<dc:creator>firmit</dc:creator>
<guid>http://firmit.wordpress.com/2009/03/02/slitaz-one-heck-of-a-distro/</guid>
<description><![CDATA[Acer Aspire 3000 &#8211; AMD 2800+ (1.6GHz) , 512 MB ram, 60 GB HD. Yes &#8211; my girlfriends lapto]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Acer Aspire 3000 &#8211; AMD 2800+ (1.6GHz) , 512 MB ram, 60 GB HD. Yes &#8211; my girlfriends laptop &#8211; the Windows fanatic. Some weeks ago I booted a liveCD of Slitaz on her laptop, and she totally freaked! But now &#8211; the tables have turned!</p>
<p>About two weaks ago, she was preparing a presentation in OO. I suggested she should save it in Gmail &#8211; as she did. But she wanted a copy on a usb-stick. Okei &#8211; so plug in a usb stick and copy it! But things did not go as planned. In fact &#8211; the laptop crashed completely, and never recovered&#8230; The system simply froze, and after a reboot and some odd minutes working normal again, it &#8220;stopped time&#8221; again!</p>
<p>So &#8211; after 3,5 years with the same install of Windows (with SP3), a reinstall was in order. But this did not help. The laptop worked for about 5 minutes before the system would freeze again. The mouse was the only thing that worked &#8211; the keyboard did not respond, the powerbutton was dead &#8211; so the only way of killing the system was by taking out the PS and battery.</p>
<h1>Slitaz enters the field</h1>
<p>So &#8211; I found my trusty companion Dell Latitude 2GHz going on 8 years, running GNU/Debian with LXDE. I installed WinXP to keep the peace and give here a known environment. I still need a workable Windows installation to be able to print satisfactory&#8230;</p>
<p>But the Acer was now under my command &#8211; and unbelievably &#8211; Slitaz runs without any trouble! I dual-booted the laptop just to conclude that the computer had gone Anti-Windows and still behaved irrational. To my satisfaction I found a fully workable, <em>surprisingly-fast</em><em> </em>computer running a full distro under 25 MB (liveCD iso)!</p>
<p><a href="http://www.slitaz.org"><img class="alignleft" title="Slitaz logo" src="http://www.slitaz.org/pics/website/logo.png" alt="Slitaz" width="200" height="74" /></a></p>
<p>Slitaz uses Busybox, Xvesa, Openbox, lxpanel and many <em>taz</em>-tools like their own package manager, tazpkg, which works excellent. It runs super fast! It also contains a lot of other lightweight appz like Dropbear, SQLite, lighttp, parcelite etc. A growing community create packages of their favorite FOSS and make it available at <a href="http://www.slitaz.org">http://www.slitaz.org/en</a>. You may install Xorg, if Xvesa does not support your computer resolution, Abiword, Gnumeric, OpenOffice3 (in time) and many other favorites like mpd/mpc. The only big chunk of software on the distro is actually Firefox (Minefield).</p>
<p>I am still quite happy with my GNU/Debian LXDE installation, but I think I will try this on my desktop computer permantly &#8211; not just as a secondary distro &#8211; but as a primary distro. I am already using the greater part of it, but the backbone is completely different <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Kudos to the guys at Slitaz.org!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA["Aaaah - why do I have a spider on my desktop??"]]></title>
<link>http://firmit.wordpress.com/2009/01/21/aaaah-why-do-i-have-a-spider-on-my-desktop/</link>
<pubDate>Wed, 21 Jan 2009 21:25:11 +0000</pubDate>
<dc:creator>firmit</dc:creator>
<guid>http://firmit.wordpress.com/2009/01/21/aaaah-why-do-i-have-a-spider-on-my-desktop/</guid>
<description><![CDATA[I got tempted after reading several posts and reviews about Slitaz the other day. So I decided to tr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I got tempted after reading several posts and reviews about Slitaz the other day. So I decided to try it out. Of course, &#8220;everything&#8221; runs fast in Qemu so I decided to burn a Live CD (my computers did not want to boot my usb-stick) &#8211; put it in my girlfriends &#8220;power-house&#8221; of a Acer Aspire 3000 and boot!</p>
<p>Of course, she got suspicious when she saw I was fiddling with her computer. And when I turned the laptop towards her, she immediately shouted out:</p>
<blockquote><p>&#8220;Aaaah &#8211; why do I have a spider on my desktop! Get rid of that s***!&#8221;</p></blockquote>
<address> <strong>Note</strong>: directly translated from a high-pitched, screaming Norwegian girl!<br />
</address>
<p>Ah &#8211; the joy of a nerd <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I was happy. She saw a working Linux distribution ( yes &#8211; she has seen my desktop and laptop, but won&#8217;t touch it! ), and I managed to boot up one on her computer! And &#8211; it booted faster from the Live CD than from her WinXP install! She has only known Windows &#8211; but the only applications she is using daily, are OpenOffice and Firefox &#8211; so at least she&#8217;s using FOSS! She is halfway there!</p>
<p>But back to Slitaz. It rocks! BusyBox and Xvesa with Openbox, lxpanel and PCManfm &#8211; it&#8217;s almost a LiveCD of a &#8220;semi&#8221; LXDE. Because Slitaz IS a Live Distro &#8211; highly customizable and software which let you create your own &#8220;flavor&#8221; of the distribution. You should really check it out. They have their own package manager called <strong>tazpkg</strong> with the usuall set of packages, and a site with good documentation &#8211; and perhaps the most important thing &#8211; a growing community of users!</p>
<p>I know I am going to keep it with me at all times on a USB stick. Their site: <a href="http://www.slitaz.org/en/">http://www.slitaz.org/en/</a> .</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Debian on the G1 once again]]></title>
<link>http://hackaday.com/2009/01/15/debian-on-the-g1-once-again/</link>
<pubDate>Fri, 16 Jan 2009 03:55:44 +0000</pubDate>
<dc:creator>Eliot Phillips</dc:creator>
<guid>http://hackaday.com/2009/01/15/debian-on-the-g1-once-again/</guid>
<description><![CDATA[[ghostwalker] dropped in on our previous Debian Android post to let us know that he had streamlined ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-5661" title="g1" src="http://hackadaycom.wordpress.com/files/2008/11/g1.jpg" alt="g1" width="450" height="170" /></p>
<p>[ghostwalker] dropped in on our <a title="Running Debian and Android on the G1  - Hack a Day" href="http://hackaday.com/2008/11/11/running-debian-and-android-on-the-g1/">previous Debian Android post</a> to let us know that he had <a title="Debian on Android installer released. - AndroidFanatic Community Forums" href="http://www.androidfanatic.com/cms/community-forums.html?func=view&#38;catid=9&#38;id=251#251">streamlined the install process</a>. The first time around, it quickly became difficult to complete the process because firmware updates had taken away root access. Hackers have since figured out how to <a title="Rooting Procedure for RC30 (US)! - AndroidFanatic Community Forums" href="http://androidfanatic.com/cms/community-forums.html?func=view&#38;id=219&#38;catid=9">downgrade from RC30</a> and <a title="Got root? Need more? Install Busybox! - AndroidFanatic Community Forums" href="http://androidfanatic.com/cms/community-forums.html?func=view&#38;catid=9&#38;id=228">install BusyBox</a>. All you need to do to put <a href="http://www.mahalo.com/Debian">Debian</a> on your phone is download the package from [ghostwalker] and then run the installer script. This isn&#8217;t technically a port since Debian already has ARM EABI support. What would you run on your <a href="http://www.mahalo.com/Telephones">phone</a> if you had access to the entire Debian package tree? A video of Debian starting up is embedded below.</p>
<p><!--more--><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/jl0LSHbUbzE&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/jl0LSHbUbzE&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>[photo: <a title="211020082409 on Flickr - Photo Sharing!" href="http://www.flickr.com/photos/tnkgrl/2963840106/in/set-72157608262752711/">tnkgrl</a>]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cisco and GPL ]]></title>
<link>http://flossexperiences.wordpress.com/2009/01/13/cisco-and-gpl/</link>
<pubDate>Tue, 13 Jan 2009 05:16:03 +0000</pubDate>
<dc:creator>shirishag75</dc:creator>
<guid>http://flossexperiences.wordpress.com/2009/01/13/cisco-and-gpl/</guid>
<description><![CDATA[This post would be talking about Cisco, busybox, GPL and different company strategies for the same. ]]></description>
<content:encoded><![CDATA[This post would be talking about Cisco, busybox, GPL and different company strategies for the same. ]]></content:encoded>
</item>
<item>
<title><![CDATA[Busybox: kotak yang super sibuk]]></title>
<link>http://edwidianto.wordpress.com/2008/12/12/busybox-kotak-yang-super-sibuk/</link>
<pubDate>Fri, 12 Dec 2008 06:15:29 +0000</pubDate>
<dc:creator>edwidianto</dc:creator>
<guid>http://edwidianto.wordpress.com/2008/12/12/busybox-kotak-yang-super-sibuk/</guid>
<description><![CDATA[Sistem Linux tersusun atas kernel (Linux itu sendiri), library dan aplikasi. Library yang dasar adal]]></description>
<content:encoded><![CDATA[Sistem Linux tersusun atas kernel (Linux itu sendiri), library dan aplikasi. Library yang dasar adal]]></content:encoded>
</item>
<item>
<title><![CDATA[iPhone Linux]]></title>
<link>http://hackaday.com/2008/11/28/iphone-linux/</link>
<pubDate>Sat, 29 Nov 2008 03:11:08 +0000</pubDate>
<dc:creator>Eliot Phillips</dc:creator>
<guid>http://hackaday.com/2008/11/28/iphone-linux/</guid>
<description><![CDATA[Embedded above is a demo video of an iPhone running a Linux 2.6 kernel. The iphone-dev team has crea]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><br />
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.vimeo.com/moogaloop.swf?clip_id=2373142&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA"><param name="quality" value="best" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=2373142&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" /></object><br />
</span></p>
<p>Embedded above is a demo video of an <a href="http://linuxoniphone.blogspot.com/2008/11/linux-on-iphone.html" title="Linux on the iPhone!">iPhone running a Linux 2.6 kernel</a>. The iphone-dev team has created a new bootloader called OpeniBoot. The bootloader lets you boot into a Linux console, which you can talk to over a USB serial device. They&#8217;ve got busybox working, but there is no touchscreen support yet. The instructions are not that difficult and include how to back up your settings. It works on first and second gen iPhones and first gen iPod Touch. This is a very early port, but the future is wide open&#8230; Android iPhone?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Debian Time]]></title>
<link>http://brownn.wordpress.com/2008/11/14/debian-time/</link>
<pubDate>Fri, 14 Nov 2008 12:43:53 +0000</pubDate>
<dc:creator>brownn</dc:creator>
<guid>http://brownn.wordpress.com/2008/11/14/debian-time/</guid>
<description><![CDATA[After reading up more on Ubuntu/Xubuntu requirements, I&#8217;ve decided to go with Debian, as Ubunt]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- 	 	 --></p>
<p>After reading up more on Ubuntu/Xubuntu requirements, I&#8217;ve decided to go with Debian, as Ubuntu requires 256M to run , whereas 64M minimum is OK for a Debian desktop install.  My machine has 224M ram, and I was finding Ubuntu wonky after a bit.</p>
<p>After cleaning my machine and the CD-ROM, Debian installed smoothly.  Unfortunately, Debian doesn&#8217;t supply the flash plug-in I used in Ubuntu in it&#8217;s depositories, so I will have to look around.</p>
<p>Oddly enough, the GNU C compiler was not included by default, so I installed it after.  I will be checking if anything else was not installed that I would think should be.  I&#8217;ll also be comparing Debian and Ubuntu.</p>
<p>In the meantime  I downloaded and compiled Busybox, <a href="http://busybox.net/">http://busybox.net</a>.  It&#8217;s billed as &#8216;the Swiss Army Knife of Embedded Linux&#8217;.  It combines small versions of a lot of Linux utilities in a single executable.  When you&#8217;re compiling it, you can specify which utilities to bundle in it.  I tried compiling it in Cygwin/Windows, but couldn&#8217;t.  This will also give me a chance to play with chroot and some other things.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Eigener Root-Server mit FritzBox &amp; Linux]]></title>
<link>http://eleetgeek.wordpress.com/2008/11/06/eigener-root-server-mit-fritzbox-linux/</link>
<pubDate>Thu, 06 Nov 2008 20:41:04 +0000</pubDate>
<dc:creator>eleet</dc:creator>
<guid>http://eleetgeek.wordpress.com/2008/11/06/eigener-root-server-mit-fritzbox-linux/</guid>
<description><![CDATA[Juhu ! Ich habe es geschafft! Meine FritzBox ist nun über eine Telnet-Verbing ansprechbar und es kan]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Juhu !</p>
<p>Ich habe es geschafft! Meine FritzBox ist nun über eine Telnet-Verbing ansprechbar und es kann bei bedarf ein vollwertiges Linux gebootet werden. Hier schon der Tipp für alle die eine FritzBox oder einen Speedport herumliegen haben und ihn nicht weiter gebrauchen können, wie wäre es mit einem eigenen &#8220;Root-Server&#8221; oder gar einer eigenen Datenbank die von überall erreichbar ist und nix kostet ?! Das wäre doch Super oder ? Nunja ein ausführliches Tutorial wird folgen zum &#8220;Bauen&#8221; des eigenen FritzBox-Servers von A-Z wird folgen. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Für einige die es jetzt schon nicht mehr abwarten können , hier die groben Grundschritte.</p>
<p>Zu erst &#8220;baut&#8221;  ihr euch eine Modifizierte Firmware mithilfe von <a href="http://trac.freetz.org/" target="_blank">Freetz</a>. Dadurch wird eure Firmware so modifiziert, dass euch bei Anmeldung über einen Telnet-Clienten eine Bash-Console bereit gestellt wird, die sogenannte &#8220;<a href="http://www.busybox.net/" target="_blank">BusyBox</a>&#8220;. Wenn ihr soweit seid, dass alles funktioniert schnappt ihr euch einen USB-Stick oder eine Netzwerkfestplatte und formatiert diese ins ext2 oder ext3 Format. Wenn das geschehen ist besorgt ihr euch am Anfang diese Debian-Version ( <a href="http://www.ip-phone-forum.de/showthread.php?t=137008" target="_blank">Funktionisfähiges Debian für die FritzBox</a> ) und folgt der dort beschrieben Anleitung und könnt dann schon euren eigenen &#8220;Root-Server&#8221; booten! So schnell ging das <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> .</p>
<p>Wenn euch das unterfordern sollte, versucht es doch mal mit einer eigenen Debian-Version die ihr von Grund neu aufbaut. Hilfe dafür könnte z.B.: <a href="http://bellard.org/qemu/" target="_blank">QEmu</a> sein mit dem ihr auf eurem Rechner das &#8220;Betriebssystem&#8221; aufbaut. Weiteres dazu später in meinem Tutorial.</p>
<p>Jetzt erstmal Vielspaß beim Ausprobieren und bei Fragen/Problem und Erfolgen meldet euch <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p>MfG</p>
<p>Marco M.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Multiple Linux distros on one usb drive: Ttylinux]]></title>
<link>http://aronzak.wordpress.com/2008/08/31/multiple-linux-distros-on-one-usb-drive-ttylinux/</link>
<pubDate>Sun, 31 Aug 2008 08:14:55 +0000</pubDate>
<dc:creator>aronzak</dc:creator>
<guid>http://aronzak.wordpress.com/2008/08/31/multiple-linux-distros-on-one-usb-drive-ttylinux/</guid>
<description><![CDATA[Name :       Tty Linux Website:     http://www.minimalinux.org/ttylinux/ Linux Wiki:  http://linux.w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Name :       Tty Linux<br />
Website:     <a href="http://www.minimalinux.org/ttylinux/" target="_blank">http://www.minimalinux.org/ttylinux/</a><br />
Linux Wiki:  <a href="http://linux.wikia.com/wiki/Ttylinux" target="_blank">http://linux.wikia.com/wiki/Ttylinux<br />
</a>Size:                11M<a href="http://www.minimalinux.org/ttylinux/" target="_blank"></a><br />
*<a href="http://www.minimalinux.org/ttylinux/" target="_blank"> Ttylinux</a> is no longer actively maintained, but I think it&#8217;s definitely worth a mention.</p>
<p>I&#8217;ve been looking for a small, fast text based Linux distribution to add to my usb toolkit, but hadn&#8217;t yet found one. There&#8217;s a host of small distributions that have been around for a while. Unfortuantely, most of them are consigned to the past, lacking SCSI (and therefore SATA and USB) drivers; meaning that they can&#8217;t be started up off usb. Ttylinux works fine.</p>
<p>Ttylinux takes up less than ten megabytes, but has bash, a full featured shell. The default login is &#8220;root&#8221; password &#8220;root&#8221; or &#8220;guest&#8221; &#8220;guest&#8221;. Ttylinux loads its entire filesystem as an initial ram disk (initrd). The filesystem is easily modified (It&#8217;s a loopfile), but the bundled applications are fairly good.</p>
<p>To add it, download the gunzipped disk image (.iso.gz) and extract it to your usb drive (using an iso buster such as winrar or file-roller). Modify syslinux.cfg, adding the entry from isolinux.cfg, changing the directories as required. You should have a working, small bash tool.</p>
<p>To modify the filesysyem, make a backup of the filesystem, then make a directory (we&#8217;ll call mount) then mount it there with the loop type:</p>
<pre>cd tty(whatever... Should contain a file called "filesystem")
cp filesystem filesystem~
mkdir mount</pre>
<p>Then, as root;</p>
<pre>mount -o loop isolinux/filesys mount</pre>
<p>That should mount the filesystem in a folder. You can then add components as root. You might want to copy over some programs like sl (for old time&#8217;s sake). Most programs will need libraries.</p>
<p>NB. To start up properly, edit (mount/)etc/rc.d/rc/sysinit and comment out these lines:</p>
<pre>echo "Starting fsck for root filesystem."
fsck -T -C /
if [ "$?" -gt 2 ]; then
echo "WARNING: Errors found while checking root filesystem."
echo "You can login as root now, the system will reboot after logout."
sulogin
reboot
elif [ "$?" = "2" ]; then
echo "NOTICE: System needs to be rebooted now."
sleep 1
reboot
else
echo -n "Checking root filesystem: "
check_status</pre>
<p>Or else fsck will fail on every boot (modified filesystem) and make you reboot.</p>
<p>You can create scripts in (mount/)etc/rc.d/start.d. I found it convenient to create this mounting script:</p>
<pre>#!/bin/bash

echo "Aronzak's mounting script"

fdisk -l &#124; grep /dev &#124; cut -c 1-21,52-
echo "Enter disk name (Eg. sdb1)"
echo "Press enter to skip"

read mount
# If nothing, exit
[ "$mount" ] &#124;&#124; exit 0

mkdir -p /mnt/$mount

echo "Sorry, please enter fs type (Eg. vfat)"

read fs

# If nothing, exit
[ "$mount" ] &#124;&#124; exit 0

mkdir -p /mnt/$mount

echo "Please enter fs type (Eg. vfat)"

read fs

# If nothing, exit
[ "$fs" ] &#124;&#124; exit 0

mount -t $fs /dev/$mount /mnt/$mount</pre>
<p>The filesystem will automatically update. Start up Tty and you should see your changes. &#8220;Chop wood, carry water.&#8221;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[El ordenador con linux más pequeño del mundo]]></title>
<link>http://hermosodia.wordpress.com/2008/08/29/el-ordenador-con-linux-mas-pequeno-del-mundo/</link>
<pubDate>Fri, 29 Aug 2008 09:10:17 +0000</pubDate>
<dc:creator>LeChuckNorris</dc:creator>
<guid>http://hermosodia.wordpress.com/2008/08/29/el-ordenador-con-linux-mas-pequeno-del-mundo/</guid>
<description><![CDATA[PicoTux con unas dimensiones de 35mm×19mm×19mm se puede considerar como el ordenador con linux más p]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>PicoTux con unas dimensiones de 35mm×19mm×19mm se puede considerar como el ordenador con linux más pequeño del mundo (un poco mayor que un conector RJ45). </p>
<p>Esta provisto de un procesador 32-bit ARM 7 Netsilicon NS7520 a 55MHz y 2 interfaces de comunicación: Ethernet (10/100 Mbit half/full duplex)  y serie. Posee una capacidad de almacenamiento de 2 megas o 4 megas y una RAM de 8 (SDRAM). El &#8220;bichito&#8221; corre un <a href="http://www.uclinux.org/">uClinux</a> y <a href="http://www.busybox.net">Busybox</a> (programa que combina muchas utilidades estándares de Unix en un solo ejecutable pequeño).</p>
<p><a href="http://hermosodia.wordpress.com/files/2008/08/pt112x.jpg"><img src="http://hermosodia.wordpress.com/files/2008/08/pt112x.jpg?w=300" alt="" width="300" height="225" class="aligncenter size-medium wp-image-513" style="border:0;"></a></p>
<p>Si te interesa puedes <a href="http://www.picotux.com/techdatae.html">aquí</a> puedes ver las especificaciones técnicas y la <a href="http://www.picotux.com/ordere.html">lista de precios</a> (desde 99 €)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[An Interview With Tyler Jackson Of Ghost Toast]]></title>
<link>http://linkenfuego.wordpress.com/2008/08/22/an-interview-with-tyler-jackson-of-ghost-toast/</link>
<pubDate>Fri, 22 Aug 2008 09:53:00 +0000</pubDate>
<dc:creator>Bram Pitoyo</dc:creator>
<guid>http://linkenfuego.wordpress.com/2008/08/22/an-interview-with-tyler-jackson-of-ghost-toast/</guid>
<description><![CDATA[On Friday the 9th, Amber (@caseorganic) and I attended Art Comp Live 2008 at Backspace. Joining us w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>On Friday the 9th, <a href="http://oakhazelnut.com">Amber</a> (@<a href="http://twitter.com/caseorganic">caseorganic</a>) and I attended Art Comp Live 2008 at Backspace.</p>
<p><a href="http://linkenfuego.files.wordpress.com/2008/08/art-comp-live.png"><img src="http://linkenfuego.wordpress.com/files/2008/08/art-comp-live.png" alt="Art Comp Live 2008 at Backspace" width="174" height="250" class="size-full wp-image-495" /></a></p>
<p>Joining us were our friends <a href="http://roaminglily.blogspot.com/">Sarah O’Brien</a> (@<a href="http://twitter.com/moneteva">moneteva</a>) and <a href="http://derrekwayne.com">Derrek Wayne</a> (@<a href="http://twitter.com/moneteva">derrekwayne</a>.)</p>
<p><a href="http://linkenfuego.wordpress.com/files/2008/08/waterfront-pedicab.jpg"><img src="http://linkenfuego.wordpress.com/files/2008/08/waterfront-pedicab.jpg" alt="Derrek Wayne, Amber Case and Sarah O'Brien, Pedicabbed On Waterfront" width="174" class="size-medium wp-image-496" /></a></p>
<p>The event was impressive, to say the least, and Sarah <a href="http://roaminglily.blogspot.com/2008/08/art-comp-2008.html">wrote a recap more extensive than what I could hope to capture</a>.</p>
<p>But somewhere along the night, <a href="http://ghost-toast.com">an artist</a> caught our attention.</p>
<p><a href="http://flickr.com/photos/chrisfaulkner/2751389310/"><img src="http://farm4.static.flickr.com/3200/2751389310_b653d249c2_m.jpg"/></a></p>
<p><em>(<strong>Note:</strong> All images of the artist are
<p>uploaded by <a href="http://flickr.com/photos/chrisfaulkner/">Chris Faulkner</a>.)</p>
<p></em></p>
<p>To my regret, he did not finish his work on time nor win the money prize. But the three-hour that he spent working on the toy showed that he was more than a craftsman.</p>
<p><a href="/photos/chrisfaulkner/2751473128/"><img src="http://farm4.static.flickr.com/3087/2751473128_fc0b901d46_m.jpg" border="0"/></a></p>
<p>So we bid him to send pictures of the finished product—</p>
<p><a href="http://linkenfuego.files.wordpress.com/2008/08/img_1921.jpg"><img src="http://linkenfuego.wordpress.com/files/2008/08/img_1921.jpg" alt="Front View Of Wooden Toy Made By Ghost Toast's Tyler Jackson" width="72" height="96" class="size-thumbnail wp-image-500" /></a></p>
<p><a href="http://linkenfuego.files.wordpress.com/2008/08/img_1922.jpg"><img src="http://linkenfuego.wordpress.com/files/2008/08/img_1922.jpg" alt="Side View Of Wooden Toy Made By Ghost Toast's Tyler Jackson" width="72" height="96" class="size-thumbnail wp-image-501" /></a></p>
<p><a href="http://linkenfuego.files.wordpress.com/2008/08/img_1923.jpg"><img src="http://linkenfuego.wordpress.com/files/2008/08/img_1923.jpg" alt="Back View Of Wooden Toy Made By Ghost Toast's Tyler Jackson" width="72" height="96" class="size-thumbnail wp-image-502" /></a></p>
<p>—and then to answer several questions so you, gentle readers, get to know more about him.</p>
<p>Here we go.</p>
<p><strong>About Me:</strong><br />
I am originally from NH but I claim Hendersonville, North Carolina as my hometown because I went to high school there and basically my oldest friends only go back that far. I am the eleventh child in a family of fifteen children (9 boys, 6 girls). I had an amazing childhood and although we were dirt poor I wouldn’t trade it for anything. I moved to Portland in 2003 to finish my degree at the Pacific Northwest College of Art and when I graduated my wife Emily and I just could not leave. We have a great group of friends here and the opportunity to make art was very compelling in our decision not to leave.</p>
<p><a href="/photos/chrisfaulkner/2750632237/"><img src="http://farm4.static.flickr.com/3059/2750632237_ce203ba8a7_m.jpg" border="0"/></a></p>
<p><strong>Q: How did you came into woodworking?<br />
A:</strong> Actually, I started making wooden toys quite recently. My wife and I had a baby in April and I am already really excited about making things for him. I have done quite a bit of casting of plastic figures in the past, but I really wanted to get away from this for several reasons including cost, safety and environmental impact. I wanted to make something that I wouldn’t mind my kid sucking on. I started messing around with some wood shapes, drew up some sketches and created some characters I liked but I never actually made a wooden toy until the night I participated in ArtComp. Since then I have made several more and I am becoming comfortable with the process.</p>
<p><a href="/photos/chrisfaulkner/2751473128/"><img src="http://farm4.static.flickr.com/3087/2751473128_fc0b901d46_m.jpg" border="0"/></a></p>
<p><strong>Q: When you look at a piece of wood, or a dowel, or anything, do you think about what you can build with it?<br />
A:</strong> These things are coming to life in two ways. The first is a very organic process. I have shapes of wood and as I hold and study them something pops into my head. I begin to combine shapes and eventually I have a toy. I sketch out my idea and then I make it. The sketches are not fool-proof. Often things don’t go together like I imagine they will, or they look weird so I improvise a solution.</p>
<p>The second is exactly the opposite of this. I draw a character I like and then find the pieces to make it happen.</p>
<p><a href="/photos/chrisfaulkner/2750570257/"><img src="http://farm4.static.flickr.com/3078/2750570257_a81c1b4911_m.jpg" border="0"/></a></p>
<p><strong>Q: Could you send a list of tools you use? How many different sizes of drill bits? How do you get the pieces to fit together?<br />
A:</strong> The tools are developing just like the process, bit by bit. I have a couple tools that are staples of the work. A miter saw, a drill press, a scroll saw, a drill, a dremel, and a nice big vise. Everything else I generally get as I discover I need it. I live close to a Fred Meyer so I often just ride over to their tool section if I need something.</p>
<p><a href="/photos/chrisfaulkner/2750572499/"><img src="http://farm4.static.flickr.com/3127/2750572499_2559f8514f_m.jpg" border="0"/></a></p>
<p>(Below are questions blatantly ripped off <a href="http://www.portlandonfire.com/participate/">Portland On Fire’s</a>)</p>
<p><strong>Q: What are you up to?<br />
A:</strong> I work as an <a href="http://ghosttoastdesign.com">interactive designer</a> for <a href="http://downstream.com/">Downstream</a> in Portland although I am definitely a little more dreamy and not quite as anal as most great designers are. Personally, I just make stuff. I have a very short attention span so I am working on like fifteen projects at once, which has its ups and downs.</p>
<p>Currently I am working on three big projects including a series of large-scale photos about a fictional character named Sir Bishop Jenkins (who is stranded on an island with a group of men all of whom are all living beyond death hoping to leave the island). I also just finished writing a children’s book about a wrestler named the Incredible Skull and I am working on the illustrations right now. And finally, I am making wooden toys.</p>
<p><a href="/photos/chrisfaulkner/2750606593/"><img src="http://farm4.static.flickr.com/3164/2750606593_e5ab2ff906_m.jpg" border="0"/></a></p>
<p><strong>Q: What are your passions?<br />
A:</strong> Art has always been my biggest passion. I have been drawing and making things for as long as I can remember. I like to play sports. I play soccer, basketball, dodgeball, softball and I also run a lot as well as some snowboarding during the winter. I have a lot of energy to expend. I am passionate about my friends as well. They are a very important part of my life and, since I live so far from my family, they are very much my second family.</p>
<p>This may sound stupid, but I am really into the <a href="http://en.wikipedia.org/wiki/Gabriel_Garcia_Márquez">Gabriel García Márquez</a> book, <a href="http://books.google.com/books?id=J1ZFyiRPG0cC&#38;dq=one+hundred+years+of+solitude&#38;pg=PP1&#38;ots=6hp_cpeAwa&#38;sig=sjPKrnOy2PeMEO6XLyFDO6tzzn8&#38;hl=en&#38;sa=X&#38;oi=book_result&#38;resnum=1&#38;ct=result"><em>One Hundred Years of Solitude</em></a>. I read it at least once a year, sometimes more. I probably have read it between 10-12 times. It is one of my greatest pleasures.</p>
<p>Other than that, I am really into my work. It is always nice to meet people or have people tell me that they like my artwork, or <a href="http://ghost-toast.com">want to buy something I have made</a> but I would still be doing it even if no one cared. I guess that’s passion to me, doing something even if its only reward is what you find in it.</p>
<p><a href="/photos/chrisfaulkner/2751456136/"><img src="http://farm4.static.flickr.com/3146/2751456136_4a4a510fd9_m.jpg" border="0"/></a></p>
<p><strong>Q: Share your thoughts and feelings about Portland.<br />
A:</strong> I love Portland. It is just a great city to live in. I like the size of Portland a lot. I like the fact that I recognize people I don’t even know because they go to the same places, events, and seem to move in the same circle that I do. I like riding my bike, so you can’t really do better than Portland for that. I also feel that politically Portland is well aligned with my personal beliefs, generally open and accepting of people. Plus, the food here is great and I like rain.</p>
<p><a href="/photos/chrisfaulkner/2750625133/"><img src="http://farm4.static.flickr.com/3125/2750625133_9a7069f0b3_m.jpg" border="0"/></a></p>
<p><strong>Q: How can we <a href="mailto:tyler@ghosttoastdesign.com">connect with you</a>?<br />
A:</strong> I have an online portfolio site, <a href="http://ghost-toast.com">ghost-toast.com</a>, which I am currently rebuilding. It has taken me several months to get it going and I still haven’t finished all of the pages. Being on the computer for my job, I am not very motivated to spend time on it when I am home. This means my site never has my latest work up, which is something I really want to be better about.</p>
<p>I don’t spend much time on the internet. I wouldn’t say I am disconnected, but that’s just not how I spend my free time. To me the computer is a tool just like any other. I use it when I need to for finding reference images or whatever, but when that task is done I am off. There is just so much for me to do that doesn’t involve sitting in front of a monitor.</p>
<p>Tyler’s email is <a href="mailto:tyler@ghosttoastdesign.com">tyler@ghosttoastdesign.com</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ABA Open Source Panel in New York]]></title>
<link>http://thinkingopen.wordpress.com/2008/08/15/aba-open-source-panel-in-new-york/</link>
<pubDate>Fri, 15 Aug 2008 16:55:27 +0000</pubDate>
<dc:creator>jasonhaislmaier</dc:creator>
<guid>http://thinkingopen.wordpress.com/2008/08/15/aba-open-source-panel-in-new-york/</guid>
<description><![CDATA[While much of the open source community was in San Francisco last week at the LinuxWorld Expo , I wa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#000000;">While much of the open source community was in San Francisco last week at the <a href="http://www.linuxworldexpo.com/live/12/">LinuxWorld Expo</a> , I was in New York at the <a href="http://annual.abanet.org/annual/default.aspx">2008 Annual Meeting of the American Bar Association (ABA)</a> speaking at the &#8220;<em>Life after GPLv3: New Developments in Open Source Software Licensing</em>&#8221; event organized by the <a href="http://www.abanet.org/intelprop/">ABA Section of Intellectual Property Law</a>. <a href="http://thinkingopen.files.wordpress.com/2008/08/presentation-aba-open-source-litigation-2008-080808.pdf">My presentation</a> covered an update on the lawsuits filed over the past 12 months by the <a href="http://www.softwarefreedom.org/">Software Freedom Law Center (SFLC)</a> on behalf of their clients Erik Andersen and Rob Landley (the two principal developers of the </span><span style="color:#000000;"><a href="http://www.busybox.net/">BusyBox</a></span><span style="color:#000000;"> open source utility) against <a href="../2007/09/20/let-the-games-begin-sflc-files-first-ever-lawsuit-alleging-violation-of-the-gpl-in-the-us/www.monsoonmultimedia.com">Monsoon Multimedia</a>, <a href="http://www.xterasys.com/">Xterasys Corporation</a>, <a href="http://www.highgainantennas.com/">High-Gain Antennas</a>, <a href="http://www22.verizon.com/">Verizon Communications</a>, <a href="https://shop.bellmicro.com/">Bell Microproducts, Inc.</a>, <a href="../www.supermicro.com">Super Micro Computer, Inc.</a> and <a href="http://www.extremenetworks.com/index.aspx">Extreme Networks</a> alleging copyright infringement based on a violation of <a href="http://www.fsf.org/licensing/licenses/info/GPLv2.html"><span>version 2 of the GNU General Public License (GPL)</span></a> in connection with BusyBox.  In addition to discussing the history and resolution of the BusyBox cases (including my involvement with several of the cases), I also highlighted the similarities and differences between these cases and past open source software license enforcement efforts outside of the courts by the <a href="http://www.fsf.org/">Free Software Foundation (FSF) </a>and <a href="http://en.wikipedia.org/wiki/Harald_Welte">Harald Welte</a> of <a href="http://gpl-violations.org/">gpl-violations.org</a>.  The presentation materials are now <a href="http://thinkingopen.files.wordpress.com/2008/08/presentation-aba-open-source-litigation-2008-080808.pdf">available online</a>.  I understand that the ABA will be posting the materials from the other presenters at the event, as well as a podcast of the entire event, on the ABA website in the coming weeks.<br />
</span></p>
<p><span style="color:#000000;">Many thanks to <a href="http://www.klgates.com/professionals/detail.aspx?professional=3858">Mark Wittow</a> and <a href="http://www.fluidinnovation.com/">Gloria Archuleta</a>, co-charis of ABA IP Section for organizing the event and inviting me to speak.  Thanks also to my co-presenters Terry Ilardi of <a href="Sue Ross, Fulbright &#38; Jaworski L.L.P">IBM Corporation</a>, Jim Markwith of <a href="http://www.microsoft.com/en/us/default.aspx">Microsoft Corporation</a>, and Gabe Holloway of <a href="http://www.leonard.com/index.aspx">Leonard, Street and Deinard</a>, as well as the moderator of the panel discussion portion of the event, Sue Ross of <a href="http://www.fulbright.com/">Fulbright &#38; Jaworski L.L.P.</a> </span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Uscito Routertech firmware 2.6]]></title>
<link>http://gorneman.wordpress.com/2008/08/10/uscito-routertech-firmware-26/</link>
<pubDate>Sun, 10 Aug 2008 10:23:36 +0000</pubDate>
<dc:creator>gorneman</dc:creator>
<guid>http://gorneman.wordpress.com/2008/08/10/uscito-routertech-firmware-26/</guid>
<description><![CDATA[E&#8217; uscita la versione 2.6 del firmware Routertech per modem/router. Per maggiori informazioni,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>E&#8217; uscita la versione 2.6 del firmware Routertech per modem/router. Per maggiori informazioni,cliccate <a href="http://www.routertech.org/viewtopic.php?t=2143">qui</a>.</p>
<p>Hanno aggiornato <a href="http://it.wikipedia.org/wiki/BusyBox">BusyBox</a> ed incluso <a href="http://www.linuxfocus.org/Italiano/September2004/article346.shtml">Darkstat</a>, un analizzatore del traffico di rete.</p>
<p>Segui la <a href="http://gorneman.wordpress.com/2008/04/24/how-to-installare-firmware-routertech-25-su-roper-roadsl2p-wg/">guida</a> per installarlo.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[BusyBox Goes Extreme]]></title>
<link>http://thinkingopen.wordpress.com/2008/07/22/busybox-goes-extreme/</link>
<pubDate>Tue, 22 Jul 2008 15:19:55 +0000</pubDate>
<dc:creator>jasonhaislmaier</dc:creator>
<guid>http://thinkingopen.wordpress.com/2008/07/22/busybox-goes-extreme/</guid>
<description><![CDATA[Adding to the already substantial list of lawsuits filed on behalf of its clients Erik Andersen and ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Adding to the already substantial list of lawsuits filed on behalf of its clients Erik Andersen and Rob Landley (the two principal developers of the <span style="color:#0000ff;"><a href="http://www.busybox.net/">BusyBox</a></span> open source utility), the <a href="http://www.softwarefreedom.org/">The Software Freedom Law Center (SFLC)</a> has <a href="http://www.softwarefreedom.org/news/2008/jul/21/busybox/">announced </a>today the filing of yet another suit alleging copyright infringement based on a violation of <a href="http://www.fsf.org/licensing/licenses/info/GPLv2.html"><span style="color:#0000ff;">version 2 of the GNU General Public License (GPL)</span></a> in connection with BusyBox.  The current suit has been filed against Ethernet solutions provider <a href="http://www.extremenetworks.com/index.aspx">Extreme Networks</a>.  As with the previous suits brought by Andersen and Landley (against <a href="../2007/09/20/let-the-games-begin-sflc-files-first-ever-lawsuit-alleging-violation-of-the-gpl-in-the-us/www.monsoonmultimedia.com">Monsoon Multimedia</a>, <a href="http://www.xterasys.com/">Xterasys Corporation</a>, <a href="http://www.highgainantennas.com/">High-Gain Antennas</a>, <a href="http://www22.verizon.com/">Verizon Communications</a>, <a href="https://shop.bellmicro.com/">Bell Microproducts, Inc.</a> and <a href="../www.supermicro.com">Super Micro Computer, Inc.</a>) , the <a href="http://www.softwarefreedom.org/news/2008/jul/21/busybox/extreme-networks.pdf">complaint</a> against Extreme Networks alleges that Extreme makes and sells various products containing firmware in which BusyBox, or a modified version of BusyBox, is included.   Specifically, the complaint names the <a href="http://www.extremenetworks.com/products/summit-x450.aspx">Summit X450 Series network switches</a> as one of the offending products offered by Extreme.  According to the lawsuit, Extreme continues to distribute this product and others with firmware containing BusyBox without making the source code to BusyBox available in accordance with the terms of the GPL.   As the complaint notes, under the terms of the GPL, Extreme is obligated to provide the <a href="http://en.wikipedia.org/wiki/Source_code">source code</a> of the BusyBox software to recipients of products with firmware containing BusyBox.</p>
<p>According to the complaint, Extreme was first notified of the requirements of the GPL as early as July of 2006 by a &#8220;third party&#8221; who requested a copy of the Busy Box source code.  The complaint further alleges that the SFLC later contacted Extreme in February 2008 on behalf of the BusyBox developers and that the parties have had multiple interactions since that time in an attempt to settle the allegations against Extreme.   The complaint continues, however, that Extreme has failed to respond to the latest notice provided by the SFLC on June 26, thus prompting the lawsuit.  As with the complaints in previous cases, the complaint filed against Extreme  requests that an injunction be issued against the defendant and that damages and litigation costs be awarded to the plaintiffs.</p>
<p>The take away from this latest suit is fairly simple.  As the campaign of lawsuits brought by BusyBox continues to roll forward (and it appears safe to now call it a &#8220;campaign&#8221;), and as <a href="../2007/11/21/busy-box-back-for-more/">mentioned in connection with the previous BusyBox suits</a>, product vendors (particularly in the wireless and terrestrial networking space) should take note of whether and to what extent the products distributed by their organizations (including products produced by third parties) contain BusyBox or other open source software.  And, as shown by the timeline in this and the other BusyBox cases, those vendors should take seriously any contact from the SFLC or other organizations inquiring about potential violations of the GPL or other open source licenses.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[BusyBox (uname) local format string exploit]]></title>
<link>http://facusdelacruz.wordpress.com/2008/07/06/busybox-uname-local-format-string-exploit/</link>
<pubDate>Sun, 06 Jul 2008 18:21:33 +0000</pubDate>
<dc:creator>Overclock_Orange</dc:creator>
<guid>http://facusdelacruz.wordpress.com/2008/07/06/busybox-uname-local-format-string-exploit/</guid>
<description><![CDATA[BusyBox (uname) Local Format String Exploit /* * lul-busybox.c copyright (C) 2008 lul-disclosure inc]]></description>
<content:encoded><![CDATA[BusyBox (uname) Local Format String Exploit /* * lul-busybox.c copyright (C) 2008 lul-disclosure inc]]></content:encoded>
</item>
<item>
<title><![CDATA[Viola el GPL bajo tu Propio Riesgo]]></title>
<link>http://entregeeks.wordpress.com/2008/06/11/viola-el-gpl-bajo-tu-propio-riesgo/</link>
<pubDate>Wed, 11 Jun 2008 23:08:35 +0000</pubDate>
<dc:creator>entregeeks</dc:creator>
<guid>http://entregeeks.wordpress.com/2008/06/11/viola-el-gpl-bajo-tu-propio-riesgo/</guid>
<description><![CDATA[Es cierto que el GPL significa libertad y que puedes distribuirlo libremente a quien quieras y cuant]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://entregeeks.files.wordpress.com/2008/06/linux-open-source.jpg"><img class="size-full wp-image-650 aligncenter" src="http://entregeeks.wordpress.com/files/2008/06/linux-open-source.jpg" alt="" width="480" height="338" /></a></p>
<p style="text-align:center;">
<p>Es cierto que el <strong>GPL</strong> significa libertad y que puedes distribuirlo libremente a quien quieras y cuantas veces quieras, pero no puedes distribuirlo diciendo que lo hiciste tu o cobrando por ello tarifas ridiculas sin dar credito a los creadores por que entonces la <a class="external" href="http://www.softwarefreedom.org/">Software Freedom Law Center</a> te seguira, y creeme, son igual que los licensiados del <strong>Software Comercial</strong> o sino es que peor.</p>
<p>Este fue un caso en donde <strong>Bell Microproducts Inc.</strong> y <strong>Super Micro Computer Inc.</strong> usaron el <a href="http://es.wikipedia.org/wiki/Busybox"><strong>BusyBox</strong></a>, el cual es un programa open source, sin dar credito a sus creadores, eliminando los comentarios de autoria, etc. ambas compañias han distribuido ilegalmente este producto sin el codigo fuente completo. Por las reglas de la <a href="http://www.fsf.org/licensing/licenses/info/GPLv2.html"><strong>GPLv2</strong></a>, la cual es el tipo de licensia al cual pertenece el <strong>BusyBox</strong>, dice que cada download point del programa debera de proveer el acceso al codigo fuente, en otras palabras, cada paquete que bajes, consigas, etc debera de tener al menos el link para poder bajar el codigo fuente del mismo. La <strong>Software Freedom Law Center</strong> (<em>SFLC para los compas</em>) contacto a cada una de estas compañias, pero estas lo ignoraron&#8230;.. Una mala jugada, perderan casi lo<a href="http://practical-tech.com/operating-system/linux/biggest-legal-victory-ever-for-gpl/"><strong> mismo que Verizon</strong></a>.</p>
<p>La demanda esta en proceso y creanme que sera una de esas que tienen mas de 6 ceros y de los verdes. El Open Source es libertad, pero por favor no te quieras pasar de listo.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Informando desde <a href="http://practical-tech.com/operating-system/linux/violate-the-gpl-at-your-own-risk/"><strong>PracticalTech</strong></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[BusyBox is Back, Back Again]]></title>
<link>http://thinkingopen.wordpress.com/2008/06/10/busybox-is-back-back-again/</link>
<pubDate>Tue, 10 Jun 2008 21:46:47 +0000</pubDate>
<dc:creator>jasonhaislmaier</dc:creator>
<guid>http://thinkingopen.wordpress.com/2008/06/10/busybox-is-back-back-again/</guid>
<description><![CDATA[The Software Freedom Law Center (SFLC) has announced today that it has filed a new round of lawsuits]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.softwarefreedom.org/">The Software Freedom Law Center (SFLC)</a> has <a href="http://www.softwarefreedom.org/news/2008/jun/10/busybox/">announced</a> today that it has filed a new round of lawsuits on behalf of its clients Erik Andersen and Rob Landley (the two principal developers of the <span style="color:#0000ff;"><a href="http://www.busybox.net/">BusyBox</a></span> open source utility) alleging copyright infringement based on a violation of <a href="http://www.fsf.org/licensing/licenses/info/GPLv2.html"><span style="color:#0000ff;">version 2 of the GNU General Public License (GPL)</span></a>. The defendants in the new lawsuits are <a href="https://shop.bellmicro.com/">Bell Microproducts, Inc.</a> (dba &#8220;<a href="http://www.hammer-storage.com/">Hammer Storage</a>&#8220;) and <a href="www.supermicro.com">Super Micro Computer, Inc.</a>, each well-established distributors of a wide range of storage and other computer hardware products and components.  These two new suits bring the total of lawsuits brought by the SFLC on behalf of the BusyBox developers to six (the previous four having been filed against <span style="color:#0000ff;"><a href="../2007/09/20/let-the-games-begin-sflc-files-first-ever-lawsuit-alleging-violation-of-the-gpl-in-the-us/www.monsoonmultimedia.com">Monsoon Multimedia</a>, </span><a href="http://www.xterasys.com/">Xterasys Corporation</a>, <a href="http://www.highgainantennas.com/">High-Gain Antennas</a>, and <a href="http://www22.verizon.com/">Verizon Communications</a>.</p>
<p>The complaints against Bell Micro and Super Micro were filed on June 10, 2008 in the United States District Court for the Southern District of New York and are available online at — <a href="http://www.softwarefreedom.org/news/2008/jun/10/busybox/bell-complaint.pdf">Erik Andersen and Rob Landley v. Bell Microproducts, Inc. d.b.a. Hammer Storage</a> and <a href="http://www.softwarefreedom.org/news/2007/dec/07/busybox/verizon.pdf">Erik Andersen and Rob Landley v. Super Micro Computer, Inc.</a> The complaints are similar in many respects to the complaints previously filed by filed in the <a href="http://www.softwarefreedom.org/news/2007/sep/20/busybox/complaint.pdf">Monsoon Media</a>, <a href="http://www.softwarefreedom.org/news/2007/nov/20/busybox/xterasys.pdf">Xterasys</a>, <a href="http://www.softwarefreedom.org/news/2007/nov/20/busybox/highgainantennas.pdf">High-Gain</a> and <a href="http://www22.verizon.com/">Verizon</a> suits.  In each case the complaint alleges that the defendant &#8220;makes and sells various communications and hardware devices&#8221; containing firmware that contains BusyBox (either directly or in modified form).  In the case of Bell Micro, the complaint specifically targets the Bell&#8217;s &#8220;<a href="http://www.hammer-storage.com/products/myshare.asp">MyShare HN1200 network attached storage device</a>&#8221; and with Super Micro the complaint specifically names the &#8220;<a href="http://www.supermicro.com/products/accessories/addon/SIM.cfm">AOC-SIM1U+ IPMI 2.0 System Management Card</a>&#8220;.  Under the terms of the GPL, each complaint alleges that the defendant is obligated to provide the <a href="http://en.wikipedia.org/wiki/Source_code">source code</a> of the BusyBox software to recipients of the named products containing the firmware containing BusyBox. According to each lawsuit, Bell Micro and Super Micro continue to distribute products containing firmware containing BusyBox without source code in violation of the GPL, despite having been contacted by SFLC. Each complaints seek an injunction against each company and requests that damages and litigation costs be awarded to the plaintiffs.</p>
<p>It remains to be seen if the current cases will be settled out of court (<a href="http://thinkingopen.wordpress.com/2008/03/18/sflc-settles-with-verizon-why-this-one-matters/">as has happened in each of the prior cases brought by BusyBox to date</a>) or continue on and become the first lawsuit alleging a violation of the GPL ever to go to trial in the U.S.  Regardless, these cases signal that after a brief hiatus Eric Andersen and Rob Landley (and the SFLC) appear again to be interested in enforcing the GPL against alleged violators in court rather than pursuing out of court settlements.  As <a href="../2007/11/21/busy-box-back-for-more/">mentioned in connection with the previous BusyBox suits</a>, now is the time to take steps to identify whether and to what extent your organization is using BusyBox and other open source software and to ensure that you are in compliance with the open source software licenses applicable to that software.</p>
<div class="entry"></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OSBC 2008 Presentations Online]]></title>
<link>http://thinkingopen.wordpress.com/2008/04/05/osbc-2008-presentations-online/</link>
<pubDate>Sat, 05 Apr 2008 18:41:31 +0000</pubDate>
<dc:creator>jasonhaislmaier</dc:creator>
<guid>http://thinkingopen.wordpress.com/2008/04/05/osbc-2008-presentations-online/</guid>
<description><![CDATA[Last week marked the completion of another very successful Open Source Buinsess Conference (OSBC) in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Last week marked the completion of another very successful <a href="http://www.infoworld.com/event/osbc/08/osbc_agenda.html">Open Source Buinsess Conference (OSBC)</a> in San Francsico.  <a href="http://www.infoworld.com/event/osbc/08/index.html">Presentations from OSBC 2008</a> are now online.</p>
<p>Included among those presentations is my presentation on <a href="http://akamai.infoworld.com/event/osbc/08/docs/GC-Haislmaier.pdf"><em>Putting Open Source Compliance to Work (On Your Own Terms)</em></a>.  The presentation covers a lot of ground, but is focused on providing companies that use open source software with tools to deal with the increasing level scrutiny of open source that has arisen with the ever-widening variety of roles in which open source software is being put to work by those companies.  Among the examples of this increased scrutiny, the presentation covers:</p>
<p>&#8211; The <em>BusyBox</em> lawsuits brought by the developers of the <span style="color:#0000ff;"><a href="http://www.busybox.net/">BusyBox</a></span> open source utility against  <a href="http://www.softwarefreedom.org/news/2007/sep/20/busybox/complaint.pdf">Monsoon Media</a>, <a href="http://www.softwarefreedom.org/news/2007/nov/20/busybox/xterasys.pdf">Xterasys</a>, <a href="http://www.softwarefreedom.org/news/2007/nov/20/busybox/highgainantennas.pdf">High-Gain</a> and <a href="http://www22.verizon.com/">Verizon</a> based on alleged violations of <a href="http://www.fsf.org/licensing/licenses/info/GPLv2.html"><span style="color:#0000ff;">version 2 of the GNU General Public License (GPL)</span></a>;</p>
<p>&#8211; Renewed open source license enforcement by <a href="http://gpl-violations.org/">GPL-violations.org Project</a> in Europe against <a href="http://www.skype.com/">Skype</a> and others;</p>
<p>&#8211; Enforcement of software patents against open source software in cases involving <a href="http://www.redhat.com/">RedHat</a> and <a href="http://www.novell.com/home/index.html">Novell</a>; and</p>
<p>&#8211; The increasing trend of disclosures around open source usage and liability made by public companies in their filings with the <a href="http://www.sec.gov/">SEC</a>.</p>
<p>The presentation makes the point that companies that are not taking steps to implement open source compliance measures on their own terms are increasingly finding themselves being required to comply on terms set by one of these other groups.  The presentation discusses tools companies can use to put open source compliance to work on their own terms to address this changing source enforcement landscape, including:</p>
<p>&#8211; Strategies to address increased diligence and scrutiny from customers, investors, shareholders and others;</p>
<p>&#8211; Tools to evaluate the changing risks posed by open source;</p>
<p>&#8211; Current best practices for implementing compliance measures to address open source compliance risks; and</p>
<p>&#8211; Techniques for taking open source compliance efforts beyond merely risk mitigation to help add value to your business.</p>
<p>I encourage you to download a copy of the <a href="http://akamai.infoworld.com/event/osbc/08/docs/GC-Haislmaier.pdf">materials</a>.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
