<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for ciberterminal</title>
	<atom:link href="http://blog.ciberterminal.net/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ciberterminal.net</link>
	<description>Welcome, connect your terminal</description>
	<lastBuildDate>Thu, 02 Feb 2012 10:23:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Oferta de trabajo by AcidBurn</title>
		<link>http://blog.ciberterminal.net/index.php/2011/09/27/oferta-de-trabajo/comment-page-1/#comment-93</link>
		<dc:creator>AcidBurn</dc:creator>
		<pubDate>Thu, 02 Feb 2012 10:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=566#comment-93</guid>
		<description>pa fliparrrrr</description>
		<content:encoded><![CDATA[<p>pa fliparrrrr</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Script de copia y restauración de un sistema windows by irraz</title>
		<link>http://blog.ciberterminal.net/index.php/2012/01/20/script-de-copia-y-restauracion-de-un-sistema-windows/comment-page-1/#comment-89</link>
		<dc:creator>irraz</dc:creator>
		<pubDate>Tue, 24 Jan 2012 08:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=602#comment-89</guid>
		<description>friki usa una windows unattended de esas que rulan por torrent y ya esta!
Los datos del &quot;amigo&quot; en un disco/partición aparte y ya esta!</description>
		<content:encoded><![CDATA[<p>friki usa una windows unattended de esas que rulan por torrent y ya esta!<br />
Los datos del &#8220;amigo&#8221; en un disco/partición aparte y ya esta!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The easiest way to start X by dodger</title>
		<link>http://blog.ciberterminal.net/index.php/2011/09/27/the-easiest-way-to-start-x/comment-page-1/#comment-81</link>
		<dc:creator>dodger</dc:creator>
		<pubDate>Wed, 28 Sep 2011 08:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=572#comment-81</guid>
		<description>I&#039;ve improved a bit the start script:

[cc lang=&quot;bash&quot;]#!/bin/bash
LOGDIR=/var/log/autofluxbox
[ ! -d $LOGDIR ] &amp;&amp; mkdir $LOGDIR
USER=dodger
STARTX=&quot;/usr/bin/startx&quot;
SCREENID=0

getpid()
{
        SCREENID=$(while read LINE ; do [[ &quot;$LINE&quot; =~ ^([0-9]{2,})\.Fluxbox_startup.*$ ]] &amp;&amp; echo ${BASH_REMATCH[1]} ; done &lt; &lt;(sudo -u dodger screen -ls))
}

mystart()
{
        su - ${USER} -c &quot;screen -S Fluxbox_startup -d -m ${STARTX}&quot;
        echo &quot;$(date) - Autofluxbox started with screen pid $SCREENID&quot; &#124; tee -a $LOGDIR/autofluxbox.$(date +%Y%m%d).log
}
mystop()
{
        getpid
        [ $SCREENID -gt 10 ] &amp;&amp; kill $SCREENID &#124;&#124; echo &quot;No X pid found&quot;
        for i in $(ps waux &#124; grep ^${USER} &#124; grep xinitrc &#124; awk &#039;{print $2}&#039;) ; do kill $i ; done
        echo &quot;$(date) - Autofluxbox stoped&quot; &#124; tee -a $LOGDIR/autofluxbox.$(date +%Y%m%d).log
}
usage()
{
        echo &quot;$0 {stop&#124;start&#124;status}&quot;
}
mystatus()
{
        getpid
        if [ $SCREENID -gt 10 ]
        then   
                echo &quot;$(date) - Autofluxbox running with screen pid $SCREENID&quot; &#124; tee -a $LOGDIR/autofluxbox.$(date +%Y%m%d).log
        else   
                echo &quot;$(date) - No X pid found&quot; &#124; tee -a $LOGDIR/autofluxbox.$(date +%Y%m%d).log
        fi
}


case $1 in
start) 
        mystart
;;
stop)  
        mystop
;;
restart)
        mystop
        sleep 3
        mystart
;;
status)
        mystatus
;;
*)
        usage
;;
esac
[/cc]</description>
		<content:encoded><![CDATA[<p>I&#8217;ve improved a bit the start script:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#!/bin/bash</span><br />
<span style="color: #007800;">LOGDIR</span>=<span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>autofluxbox<br />
<span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-d</span> <span style="color: #007800;">$LOGDIR</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #007800;">$LOGDIR</span><br />
<span style="color: #007800;">USER</span>=dodger<br />
<span style="color: #007800;">STARTX</span>=<span style="color: #ff0000;">&quot;/usr/bin/startx&quot;</span><br />
<span style="color: #007800;">SCREENID</span>=<span style="color: #000000;">0</span><br />
<br />
getpid<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #007800;">SCREENID</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> LINE ; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$LINE</span>&quot;</span> =~ ^<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span>-<span style="color: #000000;">9</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #000000;">2</span>,<span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>\.Fluxbox_startup.<span style="color: #000000; font-weight: bold;">*</span>$ <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${BASH_REMATCH[1]}</span> ; <span style="color: #000000; font-weight: bold;">done</span> <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000; font-weight: bold;">&lt;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #660033;">-u</span> dodger <span style="color: #c20cb9; font-weight: bold;">screen</span> -ls<span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#125;</span><br />
<br />
mystart<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">su</span> - <span style="color: #800000;">${USER}</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">&quot;screen -S Fluxbox_startup -d -m <span style="color: #007800;">${STARTX}</span>&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(date)</span> - Autofluxbox started with screen pid <span style="color: #007800;">$SCREENID</span>&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #660033;">-a</span> <span style="color: #007800;">$LOGDIR</span><span style="color: #000000; font-weight: bold;">/</span>autofluxbox.$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #000000; font-weight: bold;">%</span>Y<span style="color: #000000; font-weight: bold;">%</span>m<span style="color: #000000; font-weight: bold;">%</span>d<span style="color: #7a0874; font-weight: bold;">&#41;</span>.log<br />
<span style="color: #7a0874; font-weight: bold;">&#125;</span><br />
mystop<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; getpid<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$SCREENID</span> <span style="color: #660033;">-gt</span> <span style="color: #000000;">10</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">kill</span> <span style="color: #007800;">$SCREENID</span> <span style="color: #000000; font-weight: bold;">||</span> <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;No X pid found&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">ps</span> waux <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> ^<span style="color: #800000;">${USER}</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> xinitrc <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{print $2}'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> ; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">kill</span> <span style="color: #007800;">$i</span> ; <span style="color: #000000; font-weight: bold;">done</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(date)</span> - Autofluxbox stoped&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #660033;">-a</span> <span style="color: #007800;">$LOGDIR</span><span style="color: #000000; font-weight: bold;">/</span>autofluxbox.$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #000000; font-weight: bold;">%</span>Y<span style="color: #000000; font-weight: bold;">%</span>m<span style="color: #000000; font-weight: bold;">%</span>d<span style="color: #7a0874; font-weight: bold;">&#41;</span>.log<br />
<span style="color: #7a0874; font-weight: bold;">&#125;</span><br />
usage<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$0 {stop|start|status}&quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#125;</span><br />
mystatus<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #7a0874; font-weight: bold;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; getpid<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$SCREENID</span> <span style="color: #660033;">-gt</span> <span style="color: #000000;">10</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">then</span> &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(date)</span> - Autofluxbox running with screen pid <span style="color: #007800;">$SCREENID</span>&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #660033;">-a</span> <span style="color: #007800;">$LOGDIR</span><span style="color: #000000; font-weight: bold;">/</span>autofluxbox.$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #000000; font-weight: bold;">%</span>Y<span style="color: #000000; font-weight: bold;">%</span>m<span style="color: #000000; font-weight: bold;">%</span>d<span style="color: #7a0874; font-weight: bold;">&#41;</span>.log<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">else</span> &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(date)</span> - No X pid found&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #660033;">-a</span> <span style="color: #007800;">$LOGDIR</span><span style="color: #000000; font-weight: bold;">/</span>autofluxbox.$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #000000; font-weight: bold;">%</span>Y<span style="color: #000000; font-weight: bold;">%</span>m<span style="color: #000000; font-weight: bold;">%</span>d<span style="color: #7a0874; font-weight: bold;">&#41;</span>.log<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">fi</span><br />
<span style="color: #7a0874; font-weight: bold;">&#125;</span><br />
<br />
<br />
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #007800;">$1</span> <span style="color: #000000; font-weight: bold;">in</span><br />
start<span style="color: #7a0874; font-weight: bold;">&#41;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; mystart<br />
<span style="color: #000000; font-weight: bold;">;;</span><br />
stop<span style="color: #7a0874; font-weight: bold;">&#41;</span> &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; mystop<br />
<span style="color: #000000; font-weight: bold;">;;</span><br />
restart<span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; mystop<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">3</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; mystart<br />
<span style="color: #000000; font-weight: bold;">;;</span><br />
status<span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; mystatus<br />
<span style="color: #000000; font-weight: bold;">;;</span><br />
<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; usage<br />
<span style="color: #000000; font-weight: bold;">;;</span><br />
<span style="color: #000000; font-weight: bold;">esac</span></div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Strange feature in bash script by dodger</title>
		<link>http://blog.ciberterminal.net/index.php/2011/09/22/strange-feature-in-bash-script/comment-page-1/#comment-80</link>
		<dc:creator>dodger</dc:creator>
		<pubDate>Thu, 22 Sep 2011 18:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=553#comment-80</guid>
		<description>This remember me a lot the nginx&#039;s wiki page &quot;&lt;a href=&quot;http://wiki.nginx.org/IfIsEvil&quot; rel=&quot;nofollow&quot;&gt;if is evil&lt;/a&gt;&quot;:

The question is why sometimes bash calls a new sub-shell and other times it works as the common way?</description>
		<content:encoded><![CDATA[<p>This remember me a lot the nginx&#8217;s wiki page &#8220;<a href="http://wiki.nginx.org/IfIsEvil" rel="nofollow">if is evil</a>&#8220;:</p>
<p>The question is why sometimes bash calls a new sub-shell and other times it works as the common way?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Strange feature in bash script by Dani</title>
		<link>http://blog.ciberterminal.net/index.php/2011/09/22/strange-feature-in-bash-script/comment-page-1/#comment-79</link>
		<dc:creator>Dani</dc:creator>
		<pubDate>Thu, 22 Sep 2011 16:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=553#comment-79</guid>
		<description>sub shells are evil!

Try this way.
[cc lang=&quot;bash&quot;]
#!/bin/bash
let x=0
while read LINE
do
[[ &quot;${LINE}&quot; =~ ^(a&#124;c&#124;d)$ ]] &amp;&amp; AUX[$x]=${BASH_REMATCH[1]} &amp;&amp; let x++

done&lt; &lt;(echo -e &quot;a\nb\nc\nd&quot;)

echo ${AUX[@]}
[/cc]
</description>
		<content:encoded><![CDATA[<p>sub shells are evil!</p>
<p>Try this way.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#!/bin/bash</span><br />
<span style="color: #7a0874; font-weight: bold;">let</span> <span style="color: #007800;">x</span>=<span style="color: #000000;">0</span><br />
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> LINE<br />
<span style="color: #000000; font-weight: bold;">do</span><br />
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${LINE}</span>&quot;</span> =~ ^<span style="color: #7a0874; font-weight: bold;">&#40;</span>a<span style="color: #000000; font-weight: bold;">|</span>c<span style="color: #000000; font-weight: bold;">|</span>d<span style="color: #7a0874; font-weight: bold;">&#41;</span>$ <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> AUX<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #007800;">$x</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>=<span style="color: #800000;">${BASH_REMATCH[1]}</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">let</span> x++<br />
<br />
<span style="color: #000000; font-weight: bold;">done</span><span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000; font-weight: bold;">&lt;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;a<span style="color: #000099; font-weight: bold;">\n</span>b<span style="color: #000099; font-weight: bold;">\n</span>c<span style="color: #000099; font-weight: bold;">\n</span>d&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${AUX[@]}</span></div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New adventures with CH3HNAS by dodger</title>
		<link>http://blog.ciberterminal.net/index.php/2011/07/05/new-adventures-with-ch3hnas/comment-page-1/#comment-78</link>
		<dc:creator>dodger</dc:creator>
		<pubDate>Fri, 09 Sep 2011 09:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=360#comment-78</guid>
		<description>Hi again,
Finally i get cross compiling working with buildroot.
Some apps didnot work (i think i did something wrong...) but other one&#039;s like strace works really fine.
I&#039;m trying to build mediatomb but is really hard, I will publish the package asap I get it working :-)
Thanks</description>
		<content:encoded><![CDATA[<p>Hi again,<br />
Finally i get cross compiling working with buildroot.<br />
Some apps didnot work (i think i did something wrong&#8230;) but other one&#8217;s like strace works really fine.<br />
I&#8217;m trying to build mediatomb but is really hard, I will publish the package asap I get it working :-)<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New adventures with CH3HNAS by dodger</title>
		<link>http://blog.ciberterminal.net/index.php/2011/07/05/new-adventures-with-ch3hnas/comment-page-1/#comment-77</link>
		<dc:creator>dodger</dc:creator>
		<pubDate>Tue, 30 Aug 2011 11:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=360#comment-77</guid>
		<description>Good morning!

At the end I didn&#039;t get it working (Conceptronic&#039;s SDK).
This post was the last time I tried to build it and after 2+hours building, it fails with a very strange error (and I use to build app&#039;s from source).

Then I tried to build apps with scratchbox2 but it didn&#039;t work, I mean, sb2 build the application in the correct ARM format but CH3 didn&#039;t run it.

I think the solution is to use the same linux version Henkjan &amp; conceptronic use to build it.
As I was using a virtualbox machine to build it, if I get it working, I will upload it so you can download&amp;use it easily.
I will send you an email in that case :)
Thanks</description>
		<content:encoded><![CDATA[<p>Good morning!</p>
<p>At the end I didn&#8217;t get it working (Conceptronic&#8217;s SDK).<br />
This post was the last time I tried to build it and after 2+hours building, it fails with a very strange error (and I use to build app&#8217;s from source).</p>
<p>Then I tried to build apps with scratchbox2 but it didn&#8217;t work, I mean, sb2 build the application in the correct ARM format but CH3 didn&#8217;t run it.</p>
<p>I think the solution is to use the same linux version Henkjan &#038; conceptronic use to build it.<br />
As I was using a virtualbox machine to build it, if I get it working, I will upload it so you can download&#038;use it easily.<br />
I will send you an email in that case :)<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New adventures with CH3HNAS by erik</title>
		<link>http://blog.ciberterminal.net/index.php/2011/07/05/new-adventures-with-ch3hnas/comment-page-1/#comment-75</link>
		<dc:creator>erik</dc:creator>
		<pubDate>Tue, 30 Aug 2011 10:39:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciberterminal.net/?p=360#comment-75</guid>
		<description>Hi dodger, 

Did you already get cross compiled packages? 

I&#039;m using cross compiled packages,from henkjan, but like to get mediatomb working. Until now I haven&#039;t got a working solution. Do you have this? 


Erik</description>
		<content:encoded><![CDATA[<p>Hi dodger, </p>
<p>Did you already get cross compiled packages? </p>
<p>I&#8217;m using cross compiled packages,from henkjan, but like to get mediatomb working. Until now I haven&#8217;t got a working solution. Do you have this? </p>
<p>Erik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ley Sinde express by dodger</title>
		<link>http://blog.ciberterminal.net/index.php/2010/12/17/ley-sinde-express/comment-page-1/#comment-70</link>
		<dc:creator>dodger</dc:creator>
		<pubDate>Mon, 20 Dec 2010 13:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.ciberterminal.net/blog/?p=252#comment-70</guid>
		<description>Claro que hay que comprar!!!
Políticos hay que comprar, es el único modo de llegar a algún sitio, mira sino toda la Comunitat Valenciana ¬¬</description>
		<content:encoded><![CDATA[<p>Claro que hay que comprar!!!<br />
Políticos hay que comprar, es el único modo de llegar a algún sitio, mira sino toda la Comunitat Valenciana ¬¬</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ley Sinde express by 667</title>
		<link>http://blog.ciberterminal.net/index.php/2010/12/17/ley-sinde-express/comment-page-1/#comment-69</link>
		<dc:creator>667</dc:creator>
		<pubDate>Mon, 20 Dec 2010 12:37:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.ciberterminal.net/blog/?p=252#comment-69</guid>
		<description>Si no estás de acuerdo con tu gobierno estas navidades no compres.</description>
		<content:encoded><![CDATA[<p>Si no estás de acuerdo con tu gobierno estas navidades no compres.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

