<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sa fie cu folos ...</title>
	<atom:link href="http://www.rbenea.ro/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rbenea.ro</link>
	<description>Sper sa fie cu folos ...</description>
	<lastBuildDate>Sun, 14 Feb 2010 21:15:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to disable cache on Google Chrome</title>
		<link>http://www.rbenea.ro/2010/02/14/how-to-disable-cache-on-google-chrome/</link>
		<comments>http://www.rbenea.ro/2010/02/14/how-to-disable-cache-on-google-chrome/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 20:16:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2010/02/14/how-to-disable-cache-on-google-chrome/</guid>
		<description><![CDATA[After searching the net a while I found this: call the executable with the arguments

1
--disk-cache-size=1 --media-cache-size=1

]]></description>
			<content:encoded><![CDATA[<p>After searching the net a while I found this: call the executable with the arguments</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">--disk-cache-size</span>=<span style="color: #000000;">1</span> <span style="color: #660033;">--media-cache-size</span>=<span style="color: #000000;">1</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2010/02/14/how-to-disable-cache-on-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install PHP5 Xdebug for use with Eclipse PDT on Ubuntu 8.10</title>
		<link>http://www.rbenea.ro/2009/05/27/install-php5-xdebug-for-use-with-eclipse-pdt-on-ubuntu-810/</link>
		<comments>http://www.rbenea.ro/2009/05/27/install-php5-xdebug-for-use-with-eclipse-pdt-on-ubuntu-810/#comments</comments>
		<pubDate>Wed, 27 May 2009 06:45:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programare]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xdebug]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2009/05/27/install-php5-xdebug-for-use-with-eclipse-pdt-on-ubuntu-810/</guid>
		<description><![CDATA[If you use Eclipse PDT and you want to debug your PHP code using Xdebug just do this:
1. Install xdebug

1
apt-get install php5-xdebug

2. Append to /etc/php5/conf.d/xdebug.ini

1
2
3
4
5
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1  ; if debugging on remote server, put client IP here
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=0

3. Restast Apache

1
/etc/init.d/apache2 restart

4.  Check to see if xdebug is working with phpinfo(). Create a php file and access it

1
&#60;php phpinfo&#40;&#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>If you use Eclipse PDT and you want to debug your PHP code using Xdebug just do this:</p>
<p>1. Install xdebug</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> php5-xdebug</pre></td></tr></table></div>

<p>2. Append to /etc/php5/conf.d/xdebug.ini</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">xdebug.remote_enable=<span style="color: #c20cb9; font-weight: bold;">true</span>
xdebug.remote_host=127.0.0.1  ; <span style="color: #000000; font-weight: bold;">if</span> debugging on remote server, put client IP here
xdebug.remote_port=<span style="color: #000000;">9000</span>
xdebug.remote_handler=dbgp
xdebug.profiler_enable=<span style="color: #000000;">0</span></pre></td></tr></table></div>

<p>3. Restast Apache</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></td></tr></table></div>

<p>4.  Check to see if xdebug is working with phpinfo(). Create a php file and access it</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>php <span style="color: #990000;">phpinfo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2009/05/27/install-php5-xdebug-for-use-with-eclipse-pdt-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto setup timezone on OpenWRT &#8211; Whiterussian RC2</title>
		<link>http://www.rbenea.ro/2009/05/23/howto-setup-timezone-on-openwrt-whiterussian-rc2/</link>
		<comments>http://www.rbenea.ro/2009/05/23/howto-setup-timezone-on-openwrt-whiterussian-rc2/#comments</comments>
		<pubDate>Sat, 23 May 2009 09:00:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2009/05/23/howto-setup-timezone-on-openwrt-whiterussian-rc2/</guid>
		<description><![CDATA[Add in /etc/profile the line:

1
export TZ=&#34;EET-2EEST,M3.5.0/3,M10.5.0/4&#34;

You can get the full list of timezones here: http://luci.freifunk-halle.net/UserDocs/TimeZones
Links:  http://forum.openwrt.org/viewtopic.php?id=2591
]]></description>
			<content:encoded><![CDATA[<p>Add in /etc/profile the line:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">TZ</span>=<span style="color: #ff0000;">&quot;EET-2EEST,M3.5.0/3,M10.5.0/4&quot;</span></pre></td></tr></table></div>

<p>You can get the full list of timezones here: <a href="http://luci.freifunk-halle.net/UserDocs/TimeZones" target="_blank">http://luci.freifunk-halle.net/UserDocs/TimeZones</a></p>
<p>Links:  <a href="http://forum.openwrt.org/viewtopic.php?id=2591" target="_blank">http://forum.openwrt.org/viewtopic.php?id=2591</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2009/05/23/howto-setup-timezone-on-openwrt-whiterussian-rc2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find all large files on a Linux</title>
		<link>http://www.rbenea.ro/2008/04/18/find-all-large-files-on-a-linux/</link>
		<comments>http://www.rbenea.ro/2008/04/18/find-all-large-files-on-a-linux/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 07:17:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux find big files]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2008/04/18/find-all-large-files-on-a-linux/</guid>
		<description><![CDATA[Taken from: http://snippets.dzone.com/posts/show/1491
Finds all files over 20,000KB (roughly 20MB) in size and presents their names and size in a human readable format:

1
find / -type f -size +20000k -exec ls -lh &#123;&#125; \; &#124; awk '{ print $9 &#34;: &#34; $5 }'

]]></description>
			<content:encoded><![CDATA[<p>Taken from: <a href="http://snippets.dzone.com/posts/show/1491" target="_blank">http://snippets.dzone.com/posts/show/1491</a></p>
<p>Finds all files over 20,000KB (roughly 20MB) in size and presents their names and size in a human readable format:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">-type</span> f <span style="color: #660033;">-size</span> +20000k <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-lh</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \; <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{ print $9 &quot;: &quot; $5 }'</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2008/04/18/find-all-large-files-on-a-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl inarray  function</title>
		<link>http://www.rbenea.ro/2008/04/18/perl-inarray-function/</link>
		<comments>http://www.rbenea.ro/2008/04/18/perl-inarray-function/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 07:15:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programare]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2008/04/18/perl-inarray-function/</guid>
		<description><![CDATA[Taken from: http://assasiner.wordpress.com/2006/12/03/is-in-array/trackback/
You can use grep for this task like this: if(grep $_ eq $string, @array)
or  if you want regular expressions: if(grep /$string/, @array)
As an example:

1
2
3
4
5
6
7
#!/usr/bin/perl
my $string = &#34;in_helm&#34;;
my @array = qw/full_plate manteau boots two_handed_sword fin_helm/;
if&#40;grep $_ eq $string, @array&#41;
&#123;
print &#34;$string is in the array&#34;;
&#125;

]]></description>
			<content:encoded><![CDATA[<p>Taken from: <a href="http://assasiner.wordpress.com/2006/12/03/is-in-array/trackback/">http://assasiner.wordpress.com/2006/12/03/is-in-array/trackback/</a></p>
<p>You can use grep for this task like this: if(grep $_ eq $string, @array)<br />
or  if you want regular expressions: if(grep /$string/, @array)</p>
<p>As an example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$string</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;in_helm&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">@array</span> <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">qw/full_plate manteau boots two_handed_sword fin_helm/</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000066;">grep</span> <span style="color: #0000ff;">$_</span> <span style="color: #b1b100;">eq</span> <span style="color: #0000ff;">$string</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">@array</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;$string is in the array&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2008/04/18/perl-inarray-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenWRT remote logging cu syslog</title>
		<link>http://www.rbenea.ro/2008/02/03/openwrt-remote-loging-cu-syslog/</link>
		<comments>http://www.rbenea.ro/2008/02/03/openwrt-remote-loging-cu-syslog/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 22:12:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux syslog openwrt remote]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2008/02/03/openwrt-remote-loging-cu-syslog/</guid>
		<description><![CDATA[Daca aveti un router pe care ati instalat OpenWRT (probabil ca aveti un router Linksys)  si doriti sa trimiteti toate mesajele de log la un server distant, tot ce trebuie sa faceti:
1.  pe router

1
2
nvram set log_ipaddr=&#34;adresa ip server distant&#34;
nvram commit

2.  pe server
trebuie sa porniti syslog-ul cu opiunea &#8220;-r&#8221;. In cazul meu, un [...]]]></description>
			<content:encoded><![CDATA[<p>Daca aveti un router pe care ati instalat OpenWRT (probabil ca aveti un router Linksys)  si doriti sa trimiteti toate mesajele de log la un server distant, tot ce trebuie sa faceti:</p>
<p><strong>1.  pe router</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">nvram <span style="color: #000000; font-weight: bold;">set</span> <span style="color: #007800;">log_ipaddr</span>=<span style="color: #ff0000;">&quot;adresa ip server distant&quot;</span>
nvram commit</pre></td></tr></table></div>

<p><strong>2.  pe server</strong><br />
trebuie sa porniti syslog-ul cu opiunea &#8220;-r&#8221;. In cazul meu, un server Debian, am adagat parametrul syslog=&#8221;-r&#8221; in fisierul /etc/default/syslog</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2008/02/03/openwrt-remote-loging-cu-syslog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MP3-urile nu sunt redate bine in Flash Player</title>
		<link>http://www.rbenea.ro/2008/01/21/mp3-urile-nu-sunt-redate-bine-in-flash-player/</link>
		<comments>http://www.rbenea.ro/2008/01/21/mp3-urile-nu-sunt-redate-bine-in-flash-player/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 18:27:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2008/01/21/mp3-urile-nu-sunt-redate-bine-in-flash-player/</guid>
		<description><![CDATA[Lucrez la un proiect in care trebuie sa fac play, din pagina web, la un fisier mp3  generat automat. Problema este ca pe anumite configuratii acest fisier nu era redat sau era redat la viteze aiurea.
Dupa cum am gasit pe net, cauza este Flash Playerul carestie sa redea doar fisiere cu o rata de [...]]]></description>
			<content:encoded><![CDATA[<p>Lucrez la un proiect in care trebuie sa fac play, din pagina web, la un fisier mp3  generat automat. Problema este ca pe anumite configuratii acest fisier nu era redat sau era redat la viteze aiurea.</p>
<p>Dupa cum am gasit pe net, cauza este Flash Playerul carestie sa redea doar fisiere cu o rata de esantionare multiplu de 11.025khz si anume: 44.1khz, 22.05khz, 11.025khz.</p>
<p>In cazul meu solutia a fost sa folosesc lame cu urmatorul parametru:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">lame</span> <span style="color: #660033;">--resample</span> <span style="color: #000000;">11.025</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2008/01/21/mp3-urile-nu-sunt-redate-bine-in-flash-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice fara icoane in E17 pe Ubuntu 7.10</title>
		<link>http://www.rbenea.ro/2008/01/21/openoffice-fara-icoane-in-e17-ubuntu-710/</link>
		<comments>http://www.rbenea.ro/2008/01/21/openoffice-fara-icoane-in-e17-ubuntu-710/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 18:18:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/2008/01/21/openoffice-fara-icoane-in-e17-ubuntu-710/</guid>
		<description><![CDATA[Dupa ce am instalat E17 peste Ubuntu 7.10 totul a fost perfect mai putin ca OpenOffice nu mai avea iconite la meniuri, fiind trecut doar textul optiunilor.
Cu toate ca in strace nu aparea nimic suspect, Calin a intuit ca modulul FileManager din E17 s-ar putea sa fie de vina si asa a si fost.
In concluzie, [...]]]></description>
			<content:encoded><![CDATA[<p>Dupa ce am instalat E17 peste Ubuntu 7.10 totul a fost perfect mai putin ca OpenOffice nu mai avea iconite la meniuri, fiind trecut doar textul optiunilor.</p>
<p>Cu toate ca in strace nu aparea nimic suspect, Calin a intuit ca modulul FileManager din E17 s-ar putea sa fie de vina si asa a si fost.</p>
<p>In concluzie, daca ati pierdut icoanele de la OpenOffice dezactivati modului FileManager  din Configuration -&gt; Modules, dati un Enlightement -&gt; Restart ca sa fiti siguri si incercati sa vedeti daca totul ii ok.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2008/01/21/openoffice-fara-icoane-in-e17-ubuntu-710/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalare Enlightenment E17 pe Ubuntu 7.10 Gutsy</title>
		<link>http://www.rbenea.ro/2008/01/20/instalare-enlightenment-e17-pe-ubuntu-710-gutsy/</link>
		<comments>http://www.rbenea.ro/2008/01/20/instalare-enlightenment-e17-pe-ubuntu-710-gutsy/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 22:53:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Enlightenment E17]]></category>
		<category><![CDATA[Ubuntu 7.10 Gutsy]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/?p=3</guid>
		<description><![CDATA[Introducere
Ca pagina de referinta vizitati  HOWTO: installation of E17 from CVS (UPDATED)
Ce mi-a placut la aceasta metoda este faptul ca E17 este instalat in /opt/e17/ fara a intoxica sistemul cu tot felul de fisiere. Nu va mai place Enlightenment stergeti /opt/e17 si gata. Toata treaba este facuta cu ajutorul unui script easy_e17.sh care
descarca ultima [...]]]></description>
			<content:encoded><![CDATA[<h3>Introducere</h3>
<p>Ca pagina de referinta vizitati  <a href="http://ubuntuforums.org/showthread.php?t=546746" title="HOWTO: installation of E17 from CVS (UPDATED)" target="_blank">HOWTO: installation of E17 from CVS (UPDATED)</a></p>
<p>Ce mi-a placut la aceasta metoda este faptul ca E17 este instalat in /opt/e17/ fara a intoxica sistemul cu tot felul de fisiere. Nu va mai place Enlightenment stergeti /opt/e17 si gata. Toata treaba este facuta cu ajutorul unui script easy_e17.sh care<br />
descarca ultima versiune de E17 din CVS in directorul ~/e17_cvs/ si compileaza codul rezultat fiind pus in /opt/e17/ .</p>
<p>Instalarea am facut-o peste un fresh install de Ubuntu 7.10 Desktop.</p>
<p><strong>Avantajele acestei metode sunt:</strong><br />
- beneficiati de tot ce Ubuntu are de oferit pt. ca E17 in sine e cam chior<br />
- E17 e ca un fulg (merge si pe PC-uri mai slabute) fata de Gnome care se cam ingrasa de la o zi la alta<br />
- Se instaleaza ultima versiune de E17. Din pacate in repository la Ubuntu gasiti doar E16 iar ce gasiti pe net gata compilat s-ar putea sa fie cam vechi.<br />
- Updatarea lui E17 e foarte simpla, rerulati scriptul cu optiunea -u si totul se recompileaza. Sa aveti grija aici, daca aveti ceva stabil mai bine stati locului pentru ca nu tot ce-i nou ii bun<br />
- In orice moment puteti da inapoi</p>
<p>Cu toate ca E17 e in stadiul beta nu am avut probleme majore pana acum si consider ca e destul de stabil. Oricum daca se blocheaza va apare o fereastra de atentionare dupa care E17 se restarteaza. In 2 secunde E17 este repornit cu toate ferestrele la locul lor fara sa pierdeti nici un fel de date.</p>
<h3>Pasul 1: Instalati cele trebuincioase pentru compilare</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> build-essential <span style="color: #c20cb9; font-weight: bold;">cvs</span> libtool libltdl3-dev automake1.9 autotools-dev libpopt-dev libcurl3-dev libx11-dev x11proto-xext-dev libbz2-dev libid3tag0-dev libpng12-dev libtiff4-dev libungif4-dev libjpeg62-dev libssl-dev libfreetype6-dev <span style="color: #c20cb9; font-weight: bold;">bison</span> <span style="color: #c20cb9; font-weight: bold;">flex</span> xlibs-dev <span style="color: #c20cb9; font-weight: bold;">gettext</span> libimlib2-dev libxml2-dev libxcursor-dev libgtk1.2-dev <span style="color: #c20cb9; font-weight: bold;">autoconf</span> pkg-config libpng3-dev libxine-dev libxkbfile-dev libsqlite3-dev giblib-dev libxmu-dev libxdamage-dev libxcomposite-dev libtag1-dev libtagc0-dev giblib-dev libasound2-dev libxslt-dev</pre></td></tr></table></div>

<h3>Pasul 2: Mergeti in home si descarcati scriptul easy_e17.sh</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>omicron.homeip.net<span style="color: #000000; font-weight: bold;">/</span>projects<span style="color: #000000; font-weight: bold;">/</span>easy_e17<span style="color: #000000; font-weight: bold;">/</span>easy_e17.sh</pre></td></tr></table></div>

<p>In cazul ca acest script nu se mai gaseste la acesta adresa cautati pe google dupa easy_e17.sh</p>
<h3>Pasul 3: Rulati scriptul pentru a descarca si compila Enlightenment E17</h3>
<p>Deoarece E17 este in stadiul beta si in continua dezvoltare sa nu va mire faptul ca nu o sa se compileze toate modulele mai ales ca unele module au nevoie de pachete aditionale pentru a fi instalate. Aceasta este comanda care a mers pana la urma pentru mine:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> +x .<span style="color: #000000; font-weight: bold;">/</span>easy_e17.sh
.<span style="color: #000000; font-weight: bold;">/</span>easy_e17.sh <span style="color: #660033;">-i</span> <span style="color: #660033;">--skip</span>=evolve,enthrall,screenshot</pre></td></tr></table></div>

<p>Rabdare, descarcarea din CSV o sa dureze ceva iar compilarea&#8230; dupa procesorul fiecaruia. Cel mai bine ii dati drumu si va uitati la un film aruncand din cand in cand ochiu pe ecran. Scriptul o sa va anunte daca va lipseste vreun pachet. Dupa ce instalati pachetul puteti relua compilarea cu parametrul -s pentru a sari peste descarcarea din nou din CVS:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>easy_e17.sh <span style="color: #660033;">-i</span> <span style="color: #660033;">-s</span> <span style="color: #660033;">--skip</span>=evolve,enthrall,screenshot</pre></td></tr></table></div>

<h3>Pasul 4: Daca totul merge bine spunem X-ului unde gaseste E17</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gedit <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>xsessions<span style="color: #000000; font-weight: bold;">/</span>e17.desktop</pre></td></tr></table></div>

<p>si copy/paste in fisier:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>Desktop Entry<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #007800;">Encoding</span>=UTF-<span style="color: #000000;">8</span>
<span style="color: #007800;">Name</span>=E-<span style="color: #000000;">17</span>
<span style="color: #007800;">Comment</span>=
<span style="color: #007800;">Exec</span>=<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>e17<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>enlightenment
<span style="color: #007800;">Icon</span>=
<span style="color: #007800;">Type</span>=Application</pre></td></tr></table></div>

<p>Adauga calea catre E17 in path</p>
<pre>
sudo gedit /etc/environment</pre>
<p>si adaugati</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">:<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>e17<span style="color: #000000; font-weight: bold;">/</span>bin</pre></td></tr></table></div>

<p>la sfarsitul linie PATH=</p>
<p>O sa aveti ceva de genul:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">PATH</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>sbin:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin:<span style="color: #000000; font-weight: bold;">/</span>sbin:<span style="color: #000000; font-weight: bold;">/</span>bin:<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>e17<span style="color: #000000; font-weight: bold;">/</span>bin</pre></td></tr></table></div>

<p>Nu copiati linia asta ci doar adaugati ce trebuie la final!</p>
<h3>Pasul 5: Gata, sa testam</h3>
<p>- Dati logout (nu trebuie sa rebootati)<br />
- Din coltul din stanga-jos Options-&gt;Select session-&gt;E17<br />
- In GDM intro user/parola de la contul tau si logheaza-te</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2008/01/20/instalare-enlightenment-e17-pe-ubuntu-710-gutsy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Era cazul sa scriu si eu Dupa atata timp de tot citit pe forumuri si &#8230;</title>
		<link>http://www.rbenea.ro/2008/01/20/hello-world/</link>
		<comments>http://www.rbenea.ro/2008/01/20/hello-world/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 22:29:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Diverse]]></category>

		<guid isPermaLink="false">http://www.rbenea.ro/?p=1</guid>
		<description><![CDATA[Stiti vorba ceea &#8220;Croitorul n-are haine, pantofarul pantofi &#8230; &#8221; uite asa nu aveam nici eu un site.
Dupa cate am citit  si invatat din site-urile altora, forumuri etc. cred ca ar fi cazul sa dau si eu inapoi.
Sa fie intr-un ceas bun si de folos!
]]></description>
			<content:encoded><![CDATA[<p>Stiti vorba ceea &#8220;Croitorul n-are haine, pantofarul pantofi &#8230; &#8221; uite asa nu aveam nici eu un site.</p>
<p>Dupa cate am citit  si invatat din site-urile altora, forumuri etc. cred ca ar fi cazul sa dau si eu inapoi.</p>
<p>Sa fie intr-un ceas bun si de folos!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rbenea.ro/2008/01/20/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
