<?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>Cosu &#187; Linux</title>
	<atom:link href="http://cosu.ro/blog/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://cosu.ro/blog</link>
	<description>"I'm even greater than I thought I was", Bender Bending Rodríguez , Futurama, S05E01</description>
	<lastBuildDate>Wed, 12 Oct 2011 13:35:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Color that manpage!</title>
		<link>http://cosu.ro/blog/2009/06/28/color-tha-manpage/</link>
		<comments>http://cosu.ro/blog/2009/06/28/color-tha-manpage/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 21:44:19 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/?p=913</guid>
		<description><![CDATA[Manpages are the last line of defence when it comes to unix troubleshooting. After you&#8217;ve tried everything you could have think of and it still doesn&#8217;t work you know it&#8217;s time to read the manual. By default linuxes use the less command to display the man page requested by the user. The manpage is displayed [...]]]></description>
			<content:encoded><![CDATA[<p>
Manpages are the last line of defence when it comes to unix troubleshooting. After you&#8217;ve tried everything you could have think of and it still doesn&#8217;t work you know  it&#8217;s time to read the manual.
</p>
<p>
By default linuxes use the less command to display the man page requested by the user.  The manpage is displayed as plain text and because of that it can be sometimes hard to find what you&#8217;re looking for. Keywords and special parameters are printed with a bold face to ease document navigation but sometimes this is not enough.
</p>
<p>
Navigation is done by using the up and down arrows , page up/ page down and the space key.<br />
Searching through  the  document is done by typing the / character followed by the word or phrase to search for.
</p>
<p>One useful hack is to color the manpage so that keywords parameters and so on are highlighted.  </p>
<p>
To do this you we have to set some environment variables:
</p>
<p><code></p>
<p>export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking<br />
export LESS_TERMCAP_md=$'\E[01;31m' # begin bold<br />
export LESS_TERMCAP_me=$'\E[0m' # end mode<br />
export LESS_TERMCAP_se=$'\E[0m' # end standout-mode<br />
export LESS_TERMCAP_so=$'\E[01;44;33m' # begin standout-mode - info box<br />
export LESS_TERMCAP_ue=$'\E[0m' # end underline<br />
export LESS_TERMCAP_us=$'\E[01;32m' # begin underline<br />
</code></p>
<p>
The strange &#8216;\E0 strings stand for color codes used by the bash shell. You can check out some info about that on the <a href="http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html">bash-prompt-howto</a>
</p>
<p>
After you have customized your colors you can save the above commands in your <strong>.bashrc</strong> file (the one in your home folder) so that the variables are set every time  you logon.</p>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/06/28/color-tha-manpage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickie: Wrap to 80 columns</title>
		<link>http://cosu.ro/blog/2009/06/19/quickie-wrap-to-80-columns/</link>
		<comments>http://cosu.ro/blog/2009/06/19/quickie-wrap-to-80-columns/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 20:20:27 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/?p=909</guid>
		<description><![CDATA[I got a complaint that my submitted text file is not wrapped to 80 columns. Rather than work my butt to mix and match the text lines until i get to the bastard&#8217;s requirement I used the neat little tool called fold cosu@cosu-desktop:~/Desktop$ cat file &#124; fold -s my monitor resolution is soooooooooooooooooo small that [...]]]></description>
			<content:encoded><![CDATA[<p>I got a complaint that my submitted text file is not wrapped to 80 columns. Rather than work my butt to mix and match the text lines until i get to the bastard&#8217;s requirement I used the neat little tool called <b>fold</b> </p>
<pre>
cosu@cosu-desktop:~/Desktop$ cat file | fold -s
my monitor resolution is soooooooooooooooooo small that more than 80 colums of
text give me a segfault.
</pre>
<p><b>-s </b> stands for break at spaces. man fold for more options.</p>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/06/19/quickie-wrap-to-80-columns/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Donez</title>
		<link>http://cosu.ro/blog/2009/05/04/donez/</link>
		<comments>http://cosu.ro/blog/2009/05/04/donez/#comments</comments>
		<pubDate>Mon, 04 May 2009 19:04:07 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Politehnica]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/?p=884</guid>
		<description><![CDATA[Donez 4 stickere 1 sticker cu Ubuntu (4cmx1cm) si 1 cd cu ubuntu desktop 9.04 si 1 cd cu Ubuntu Server 9.04. Doritorii sa se prezinte in EG101.]]></description>
			<content:encoded><![CDATA[<p>Donez <del datetime="2009-05-05T19:00:13+00:00">4 stickere</del> 1 sticker cu Ubuntu (4cmx1cm) si 1 cd cu ubuntu desktop 9.04 si 1 cd cu Ubuntu Server 9.04.</p>
<p>Doritorii sa se prezinte in EG101.</p>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/05/04/donez/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Silverlight pe linux</title>
		<link>http://cosu.ro/blog/2009/03/07/silverlight-pe-linux/</link>
		<comments>http://cosu.ro/blog/2009/03/07/silverlight-pe-linux/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 19:48:19 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mic]]></category>
		<category><![CDATA[Politehnica]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/?p=861</guid>
		<description><![CDATA[Dupa o vizita pe http://www.go-mono.com/moonlight/ si un restart de firefox obtinem asta:]]></description>
			<content:encoded><![CDATA[<p>Dupa o vizita pe <a href="http://www.go-mono.com/moonlight/">http://www.go-mono.com/moonlight/</a> si un restart de firefox obtinem asta:</p>
<div id="attachment_862" class="wp-caption alignnone" style="width: 310px"><a href="http://cosu.ro/blog/wp-content/uploads/2009/03/slilverlight.png" rel="lightbox[861]"><img src="http://cosu.ro/blog/wp-content/uploads/2009/03/slilverlight-300x225.png" alt="Silverlight on linux" title="slilverlight" width="300" height="225" class="size-medium wp-image-862" /></a><p class="wp-caption-text">Silverlight on linux</p></div>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/03/07/silverlight-pe-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Richard Stallman in Romania</title>
		<link>http://cosu.ro/blog/2009/03/07/richard-stallman-in-romania/</link>
		<comments>http://cosu.ro/blog/2009/03/07/richard-stallman-in-romania/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 17:02:27 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Politehnica]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/2009/03/07/richard-stallman-in-romania/</guid>
		<description><![CDATA[RMS vine in Romania! Daca esti fan foss sau doar fan emacs atunci vino sa il vezi pe tatal proiectului gnu la eliberatica! http://www.eliberatica.ro/2009/conference/speakers Anul trecut prezenta din partea UPB a fost destul de strong. Si putin fun cu utilitarul meu favorit: vrms! (virtual richard m stallman) cosu@roadwarrior:~$ vrms Non-free packages installed on roadwarrior gdb-doc [...]]]></description>
			<content:encoded><![CDATA[<p>RMS vine in Romania! Daca esti fan foss sau doar fan emacs atunci vino sa il vezi pe tatal proiectului gnu la eliberatica!</p>
<p><a href="http://www.eliberatica.ro/2009/conference/speakers" target="_blank">http://www.eliberatica.ro/2009/conference/speakers</a></p>
<p>Anul trecut prezenta din partea UPB a fost destul de strong.<br />
Si putin fun cu utilitarul meu favorit: vrms! (virtual richard m stallman)</p>
<pre>
cosu@roadwarrior:~$ vrms
            Non-free packages installed on roadwarrior

gdb-doc                   The GNU Debugger Documentation
human-icon-theme          Human Icon theme
linux-generic             Complete Generic Linux kernel
linux-restricted-modules- Non-free Linux 2.6.22 modules on x86/x86_64
linux-restricted-modules- Non-free Linux 2.6.24 modules on x86/x86_64
linux-restricted-modules- Non-free Linux 2.6.24 modules on x86/x86_64
linux-restricted-modules- Non-free Linux 2.6.24 modules on x86/x86_64
linux-restricted-modules- Non-free Linux 2.6.24 modules on x86/x86_64
linux-restricted-modules- Non-free Linux 2.6.24 modules on x86/x86_64
linux-restricted-modules- Non-free Linux 2.6.24 modules on x86/x86_64
linux-restricted-modules- Non-free Linux 2.6.24 modules helper script
linux-restricted-modules- Restricted Linux modules for generic kernels
opera                     The Opera Web Browser
picasa                    Image management application from Google
rar                       Archiver for .rar files
sun-java6-bin             Sun Java(TM) Runtime Environment (JRE) 6 (architecture
sun-java6-jdk             Sun Java(TM) Development Kit (JDK) 6
sun-java6-jre             Sun Java(TM) Runtime Environment (JRE) 6 (architecture
sun-java6-plugin          The Java(TM) Plug-in, Java SE 6
tangerine-icon-theme      Tangerine Icon theme
unrar                     Unarchiver for .rar files (non-free version)
  Reason: Modifications problematic

  21 non-free packages, 1.1% of 1914 installed packages.
</pre>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/03/07/richard-stallman-in-romania/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Find script path</title>
		<link>http://cosu.ro/blog/2009/02/21/find-script-path/</link>
		<comments>http://cosu.ro/blog/2009/02/21/find-script-path/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 13:50:44 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/2009/02/21/find-script-path/</guid>
		<description><![CDATA[Azi am avut nevoie sa gasesc calea in care sa gaseste un script chiar din scriptul respectiv. Fiserul se plimba prin diverse locuri si eu am nevoie de cai absolute ( hint java classpaths) Solutie MYPATH=&#8221;$(readlink -f $(dirname &#8220;$0&#8243;))&#8221; hints: man readlink, man dirname]]></description>
			<content:encoded><![CDATA[<p>Azi am avut nevoie sa gasesc calea in care sa gaseste un script chiar din scriptul respectiv. Fiserul se plimba prin diverse locuri si eu am nevoie de cai absolute ( hint java classpaths)</p>
<p>Solutie</p>
<blockquote><p>MYPATH=&#8221;$(readlink -f $(dirname &#8220;$0&#8243;))&#8221; </p>
</blockquote>
<p>hints: man readlink, man dirname</p>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/02/21/find-script-path/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On screen</title>
		<link>http://cosu.ro/blog/2009/02/01/on-screen/</link>
		<comments>http://cosu.ro/blog/2009/02/01/on-screen/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 12:46:56 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/2009/02/01/on-screen/</guid>
		<description><![CDATA[Screen este o scula foarte utila atunci cand ai multe de facut si putine terminale la dispozitie. Practic screen este un multiplexor de terminal, cam cum e gnome terminal sau yakuake in varianta lor cu taburi, doar ca totul e facut direct in consola. Pe langa multiplexarea mai sus amintita screen ofera si un feature [...]]]></description>
			<content:encoded><![CDATA[<p>Screen este o scula foarte utila atunci cand ai multe de facut si putine terminale la dispozitie. Practic screen este un multiplexor de terminal, cam cum e gnome terminal sau yakuake in varianta lor cu taburi, doar ca totul e facut direct in consola. </p>
<p>Pe langa multiplexarea mai sus amintita screen ofera si un feature foarte util. programul este imun la semnalele de tipul sighup. Mai pe romaneste screen ramane pornit pe masina chiar daca ai inchis conexiunea ssh/fizica cu terminalul in care lucra. Utilitatea chestiei asteia se dovedeste atunci cand ai de facut un task peste o legatura la internet foarte proasta. De regula procesele pornite din un shell au ca parinte respectivul shell. In clipa in care legatura peste ssh moare, moare si shellul si cu el procesele copil. Foarte urat. Porinite din screen procesele raman active chiar si dupa terminarea legaturii remote. Deja ne vin in minte utilizari foarte productive: client de torenti in screen, download masiv cu wget si prietenii, stat pe irc cu irssi (sau alt irc client in mod text) compilari fara sfarsit si multe altele. </p>
<p>Utilizarea lui screen necesita putina acomodare. Pornirea lui se face direct ruland screen.    <br />Comenzile se activeaza folosind shortcuturi de tipul Ctrl+A urmate de o litera(case sensitive) /cifra/simbol. Ctrl+A este cunoscut ca escape sequence (cine a lucrat cu minicom stie).     <br />Combinatia Ctrl+A urmata de ? afiseaza pe ecran toate comenzile suportate de screen.     <br />Cateva combinatii utile: </p>
<blockquote><p>Ctrl+A c –&gt; creeaza un terminal nou      </p>
<p>Ctrl+A “ –&gt; afiseaza o lista cu toate terminalele</p>
<p>Ctrl+A &lt;cifra&gt; trece la terminalul cu id-ul respectiv</p>
<p>Ctrl+A d –&gt; detasare de screen (practic un fel de exit)</p>
<p>Ctrl+A n –&gt; next</p>
<p>Ctrl+A p –&gt; previous</p>
<p>Ctrl+A ESC –&gt; copy mode</p>
</blockquote>
<p>Personal am renuntat la Ctrl+A pentru caracterul `. Avand in vedere ca folosesc rar caracterul (si doar cand e vorba de scripturi bash. </p>
<p>Reatasarea la screen se poate face ruland <strong>screen –r –d</strong>. Putem avea mai multe procese screen ce ruleaza si putem da ca parametru sesiunea la care vrem sa ne atasam. </p>
<p>Screen se poate customiza folosind fisierul .screenrc</p>
<p>Al meu arata asa:</p>
<blockquote><pre>escape ``
hardstatus alwayslastline &quot;%{= KW}%-w%{= wk}%50&gt;%n %t%{-}%+w%&lt;&quot;
hardstatus string '%{gk}[ %{G}%H %{g}][%= %{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}][%{Y}%l%{g}]%{=b C}[ %m/%d %c ]%{W}'
startup_message off
vbell off
msgminwait 0
msgwait 10</pre>
</blockquote>
<p><font style="background-color: #070707" color="#ffffff">Si rezultatul este asta </font></p>
<p><a href="http://cosu.ro/blog/wp-content/uploads/2009/02/image.png" rel="lightbox"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://cosu.ro/blog/wp-content/uploads/2009/02/image-thumb.png" width="244" height="176" /></a></p>
<p>Se observa in partea de jos 5 terminale deschise, fiecare fiind denumit dupa procesul executat (ifstat, htop, links). </p>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/02/01/on-screen/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>umount: device is busy</title>
		<link>http://cosu.ro/blog/2009/02/01/umount-device-is-busy/</link>
		<comments>http://cosu.ro/blog/2009/02/01/umount-device-is-busy/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 11:50:58 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/2009/02/01/umount-device-is-busy/</guid>
		<description><![CDATA[Uneori cand vreau sa fac umount unui volum se mai intampla sa primesc mesaje de genul “device is busy”. Solutiile sunt multiple si foarte complexe. A doua solutie est este mai brutala: fortarea procesului de umount cu ajutorul parametrului –f : umount –f /path/to/mount In prima instanta aflam procesul care tine lucrurile pe loc cu [...]]]></description>
			<content:encoded><![CDATA[<p>Uneori cand vreau sa fac umount unui volum se mai intampla sa primesc mesaje de genul “device is busy”. </p>
<p>Solutiile sunt multiple si foarte complexe.</p>
<p>A doua solutie est este mai brutala: fortarea procesului de umount cu ajutorul parametrului –f : </p>
<blockquote><p>umount –f /path/to/mount</p>
</blockquote>
<p>In prima instanta aflam procesul care tine lucrurile pe loc cu ajutorul comenzii </p>
<blockquote><p>fuser : fuser –m /path/to/mount/</p>
</blockquote>
<p>Urmeaza o inspectie a procesului cu pidul returnat de fuser si un eventual SIGKILL si un umount bine meritat.</p>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/02/01/umount-device-is-busy/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cpuset</title>
		<link>http://cosu.ro/blog/2009/01/02/cpuset/</link>
		<comments>http://cosu.ro/blog/2009/01/02/cpuset/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 12:46:50 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/2009/01/02/cpuset/</guid>
		<description><![CDATA[Cpuset este un wrapper scris in python ce permite rularea anumitor procese pe anume procesoare. Scula este utila cand stii ca ai un proces care rupe sistemul in doua si nu vrei sa pierzi total controlul masinii. Astfel limitezi procesul ala sa puna stapanire doar pe un anumite procesorare (sau core-uri ) si iti vezi&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Cpuset este un wrapper scris in python ce permite rularea anumitor procese pe anume procesoare. Scula este utila cand stii ca ai un proces care rupe sistemul in doua si nu vrei sa pierzi total controlul masinii. Astfel limitezi procesul ala sa puna stapanire doar pe un anumite procesorare (sau core-uri <img src='http://cosu.ro/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) si iti vezi&nbsp; mai departe de treaba. O alta utilizare ar putea fi rezervarea unoui proc/core pentru taskuri critice pentru sistem &#8211; loguri,kernel threads, alte balarii. </p>
<p>Exemplu de utilizare:</p>
<blockquote><p>cset set &#8211;cpu=3-4 &#8211;set=mycpus<br />cset proc &#8211;set=mycpus &#8211;exec /home/cosu/bin/eatprocessor<br />cset proc &#8211;list mycpus</p>
</blockquote>
<pre>&nbsp;</pre>
<p>Pentru download <a href="http://developer.novell.com/wiki/index.php/Cpuset" target="_blank">click aici</a> iar pentru documentatie <a href="http://rt.wiki.kernel.org/index.php/Cpuset_management_utility" target="_blank">click aici</a></p>
<blockquote dir="ltr" style="margin-right: 0px"></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2009/01/02/cpuset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playdeb</title>
		<link>http://cosu.ro/blog/2008/10/05/playdeb/</link>
		<comments>http://cosu.ro/blog/2008/10/05/playdeb/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 08:53:12 +0000</pubDate>
		<dc:creator>Cosu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://cosu.ro/blog/?p=597</guid>
		<description><![CDATA[Playdeb este un proiect ce vrea sa puna impreuna cat mai multe jocuri ce ruleaza pe platforma linux, toate in format deb. Distributia tinta este (din pacate doar) Ubuntu. Lista completa de jocuri e aici: http://www.playdeb.net/available_games.html Instalarea e cea obisnuita, fiind nevoie sa adaugam in sources.list linia: deb mirror://www.getdeb.net/playdeb-mirror/hardy/// hardy/ Recomandarile mele sunt Warsaw, Alien [...]]]></description>
			<content:encoded><![CDATA[<p>Playdeb este un proiect ce vrea sa puna impreuna cat mai multe jocuri ce ruleaza pe platforma linux, toate in format deb. Distributia tinta este (din pacate doar) Ubuntu. Lista completa de jocuri e aici:</p>
<p><a href="http://www.playdeb.net/available_games.html" target="_blank">http://www.playdeb.net/available_games.html</a></p>
<p>Instalarea e cea obisnuita, fiind nevoie sa adaugam in sources.list linia:</p>
<pre>deb mirror://www.getdeb.net/playdeb-mirror/hardy/// hardy/</pre>
<p>Recomandarile mele sunt Warsaw, Alien Arena si Warzone 2100.</p>
]]></content:encoded>
			<wfw:commentRss>http://cosu.ro/blog/2008/10/05/playdeb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

