<?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>cObaia.net &#187; linux</title>
	<atom:link href="http://cobaia.net/categorias/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://cobaia.net</link>
	<description>PHP, Javascript and some code around it!</description>
	<lastBuildDate>Sun, 29 Jan 2012 03:56:40 +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>Facilitar a configuração de projetos PHP</title>
		<link>http://cobaia.net/2009/07/facilitar-a-configuracao-de-projetos-php/</link>
		<comments>http://cobaia.net/2009/07/facilitar-a-configuracao-de-projetos-php/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 17:08:26 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programação]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=580</guid>
		<description><![CDATA[Resolvi criar um simples script para facilitar a configuração de projetos PHP, a cada vez que eu ia começar 1, era necessário eu criar um novo virtual host, adicionar no hosts o alias do ip, restartar apache, etc&#8230; Então fiz um script simples, realmente simples em PHP para executar por linha de comando PHP-CLI, vou [...]]]></description>
			<content:encoded><![CDATA[<p>Resolvi criar um simples script para facilitar a configuração de projetos PHP, a cada vez que eu ia começar 1, era necessário eu criar um novo virtual host, adicionar no hosts o alias do ip, restartar apache, etc&#8230;</p>
<p>Então fiz um script simples, realmente simples em PHP para executar por linha de comando PHP-CLI, vou deixar a disposição para alguém que queria:</p>
<p>create-project.php</p>

<div class="wp_codebox"><table><tr id="p5802"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code" id="p580code2"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php
&nbsp;
	<span style="color: #666666; font-style: italic;">/*
	 * Template of virtual host
	 */</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;VirtualHost *:80&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;ServerName <span style="color: #006699; font-weight: bold;">{$argv[1]}</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;DocumentRoot <span style="color: #006699; font-weight: bold;">{$argv[2]}</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;directory <span style="color: #006699; font-weight: bold;">{$argv[2]}</span>&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;	Options Indexes FollowSymLinks MultiViews<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;	AllowOverride All<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$tempalte</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;	Order allow,deny<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;	allow from all<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;/directory&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;ErrorLog /var/log/apache2/<span style="color: #006699; font-weight: bold;">{$argv[1]}</span>_error.log<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;   LogLevel warn<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;    CustomLog /var/log/apache2/<span style="color: #006699; font-weight: bold;">{$argv[1]}</span>_access.log combined<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>        
	<span style="color: #000088;">$template</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$template</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/fopen"><span style="color: #990000;">fopen</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/etc/apache2/sites-available/<span style="color: #006699; font-weight: bold;">{$argv[1]}</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'x'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<a href="http://www.php.net/fwrite"><span style="color: #990000;">fwrite</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #339933;">,</span> <span style="color: #000088;">$template</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<a href="http://www.php.net/fclose"><span style="color: #990000;">fclose</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<a href="http://www.php.net/exec"><span style="color: #990000;">exec</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;ln -s /etc/apache2/sites-available/<span style="color: #006699; font-weight: bold;">{$argv[1]}</span> /etc/apache2/sites-enabled/<span style="color: #006699; font-weight: bold;">{$argv[1]}</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/fopen"><span style="color: #990000;">fopen</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/etc/hosts&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'a+'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<a href="http://www.php.net/fwrite"><span style="color: #990000;">fwrite</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;127.0.0.1 <span style="color: #006699; font-weight: bold;">{$argv[1]}</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<a href="http://www.php.net/fclose"><span style="color: #990000;">fclose</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<a href="http://www.php.net/exec"><span style="color: #990000;">exec</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/etc/init.d/apache2 restart'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'Created with success the config for: '</span><span style="color: #339933;">,</span> <span style="color: #000088;">$argv</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> 
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Para usar basta executar como root:</p>
<pre>
sudo php create-project.php nome_projeto /var/diretorio/
</pre>
<p>E pronto, ele criara o vhost, insere no hosts o alias, aponta o vhost para o diretório indicado e restarta o apache.</p>
<p>Ele funciona no Ubuntu linux, não testei em outras distros, e provavelmente possa não funcionar.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/07/facilitar-a-configuracao-de-projetos-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 &#8211; Amarok 2 problemas com o som</title>
		<link>http://cobaia.net/2009/04/ubuntu-904-amarok-2-problemas-com-o-som/</link>
		<comments>http://cobaia.net/2009/04/ubuntu-904-amarok-2-problemas-com-o-som/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 13:57:07 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=521</guid>
		<description><![CDATA[Ao atualizar o ubuntu para a versão 9.04, tive problemas com o som no amarok 2, para arrumar o mesmo, tive que: sudo apt-get install phonon-backend-xine sudo apt-get remove phonon-backend-gstreamer vi aqui.]]></description>
			<content:encoded><![CDATA[<p>Ao atualizar o ubuntu para a versão 9.04, tive problemas com o som no amarok 2, para arrumar o mesmo, tive que:</p>
<ol>
<li><code>sudo apt-get install phonon-backend-xine</code></li>
<li><code>sudo apt-get remove phonon-backend-gstreamer</code></li>
</ol>
<p>vi <a href="http://chanweiyee.blogspot.com/2009/04/ubuntu-904-amarok-2-sound-problem.html">aqui</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/04/ubuntu-904-amarok-2-problemas-com-o-som/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 &#8211; o Jaunty Jackalope</title>
		<link>http://cobaia.net/2009/04/ubuntu-904-o-jaunty-jackalope/</link>
		<comments>http://cobaia.net/2009/04/ubuntu-904-o-jaunty-jackalope/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 23:20:35 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=515</guid>
		<description><![CDATA[Primeiras impressões foram boas, o update rolou tranquilamente, nenhum momento houve a necessidades de utilizar o terminal, deixei o mesmo sendo feito download pela madrugada. Logo pela manhã resolvi verificar como foi a atualização nenhuma surpresa, após restartar tudo funcionando, e já era possivel notar as diferenças, apenas mais tarde quando resolvi ativar os efeitos [...]]]></description>
			<content:encoded><![CDATA[<p>Primeiras impressões foram boas, o update rolou tranquilamente, nenhum momento houve a necessidades de utilizar o terminal, deixei o mesmo sendo feito download pela madrugada.</p>
<p>Logo pela manhã resolvi verificar como foi a atualização nenhuma surpresa, após restartar tudo funcionando, e já era possivel notar as diferenças, apenas mais tarde quando resolvi ativar os efeitos gráficos que tive um pequeno problema, pois acho que o driver de vídeo da intel bailou, mas isso não me afeta em nada, logo desabilitei o compiz fusion e tudo voltou a funcionar novamente.</p>
<p>A primeira impressão foi boa, um boot rápido, achei bem legal o indicator-applet que gerência todas as mensagens enviadas pelo sistema, no mais era isso bom upgrade a todos users do ubuntu <img src='http://cobaia.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>e vida longa ao SL.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/04/ubuntu-904-o-jaunty-jackalope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1234567890 amanhã é o dia</title>
		<link>http://cobaia.net/2009/02/1234567890-amanha-e-o-dia/</link>
		<comments>http://cobaia.net/2009/02/1234567890-amanha-e-o-dia/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 05:23:32 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[supimpas]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=452</guid>
		<description><![CDATA[Friday, February 13th 2009, 23:31:30 UTC É data, dia, hora, minuto e segundo, do unix time, que vai chegar na sequência numérica de 1234567890. Unix time que vem sendo contado des de 1970, segundo à segundo.]]></description>
			<content:encoded><![CDATA[<p>Friday, February 13th 2009, 23:31:30 UTC</p>
<p>É data, dia, hora, minuto e segundo, do unix time, que vai chegar na sequência numérica de 1234567890. <a href="http://en.wikipedia.org/wiki/Unix_time">Unix time</a> que vem sendo contado des de 1970, segundo à segundo.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/02/1234567890-amanha-e-o-dia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails 2.2 on Ubuntu 8.10</title>
		<link>http://cobaia.net/2009/01/ruby-on-rails-22-on-ubuntu-810/</link>
		<comments>http://cobaia.net/2009/01/ruby-on-rails-22-on-ubuntu-810/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 01:09:13 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=386</guid>
		<description><![CDATA[Para instalar o rails 2.2 no ubuntu é fácil: sudo apt-get install ruby irb ri rdoc ruby1.8-dev build-essential Baixe a última versão do rubygem aqui: http://rubyforge.org/projects/rubygems/. E logo após de baixar e descompactar rodar o setup.rb. sudo ruby setup.rb Agora é hora de instalar o rails: sudo gem install rails E pronto está instalado o [...]]]></description>
			<content:encoded><![CDATA[<p>Para instalar o rails 2.2 no ubuntu é fácil:<br />
<code><br />
sudo apt-get install ruby irb ri rdoc ruby1.8-dev build-essential<br />
</code></p>
<p>Baixe a última versão do <em>rubygem</em> aqui: <a href="http://rubyforge.org/projects/rubygems/">http://rubyforge.org/projects/rubygems/</a>. E logo após de baixar e descompactar rodar o <em><code>setup.rb</code></em>.<br />
<code><br />
sudo ruby setup.rb<br />
</code></p>
<p>Agora é hora de instalar o rails:<br />
<code><br />
sudo gem install rails<br />
</code></p>
<p>E pronto está instalado o rails 2.2 no ubuntu 8.10.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/01/ruby-on-rails-22-on-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FISL 10 está por vir</title>
		<link>http://cobaia.net/2009/01/fisl-10-esta-por-vir/</link>
		<comments>http://cobaia.net/2009/01/fisl-10-esta-por-vir/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 13:30:49 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=375</guid>
		<description><![CDATA[Ano novo, sinal de FISL. Por horas acompanhe o twitter do fisl.]]></description>
			<content:encoded><![CDATA[<p>Ano novo, sinal de FISL.</p>
<p><img class="aligncenter" title="FISL" src="http://fisl.softwarelivre.org/10.0/www/fisl10banner.png" alt="" width="489" height="349" /></p>
<p>Por horas acompanhe o <a href="http://twitter.com/fisl10">twitter</a> do fisl.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2009/01/fisl-10-esta-por-vir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10 Intrepid Ibex</title>
		<link>http://cobaia.net/2008/10/ubuntu-810-intrepid-ibex/</link>
		<comments>http://cobaia.net/2008/10/ubuntu-810-intrepid-ibex/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 15:28:05 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=302</guid>
		<description><![CDATA[Saio ontem do forno a nova versão do Ubuntu codinome Intrepid Ibex, essa versão trás bastante novidades e atualizações de diversos softwares. Entre alguma das funcionalidades se destaca: Suporte a 3G Instalar o ubuntu a partir de USB Gnome 2.24 Entre outras feautures e novas versões. Você pode fazer o download aqui, ou fazer o [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Ubuntu Desktop" src="http://www.ubuntu.com/files/masthead/810headers/desktop/images/new_ubuntu_desktop.png" alt="" width="427" height="207" /></p>
<p>Saio ontem do forno a nova versão do Ubuntu codinome  <em>Intrepid Ibex,</em> essa versão trás bastante novidades e atualizações de diversos softwares. Entre alguma das funcionalidades se destaca:</p>
<ul>
<li>Suporte a 3G</li>
<li>Instalar o ubuntu a partir de USB</li>
<li>Gnome 2.24</li>
</ul>
<p>Entre outras feautures e novas versões. Você pode fazer o <a href="http://www.ubuntu.com/getubuntu/download">download aqui</a>, ou fazer o <a href="http://www.ubuntu.com/getubuntu/upgrading">upgrade</a> ou <a href="http://www.ubuntu.com/getubuntu/upgrading">pedir um cd</a> do ubuntu 8.10  <em>Intrepid Ibex</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2008/10/ubuntu-810-intrepid-ibex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TUX versão Brasil de Pelotas &#8211; XAVANTE rumo a série &#8220;B&#8221;</title>
		<link>http://cobaia.net/2008/10/tux-versao-brasil-de-pelotas-xavante-rumo-a-serie-b/</link>
		<comments>http://cobaia.net/2008/10/tux-versao-brasil-de-pelotas-xavante-rumo-a-serie-b/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 01:34:33 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tux]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=298</guid>
		<description><![CDATA[Como não achei o TUX versão Xavante resolvi fazer: Acho que para um programador ter feito a camiseta ficou bacana.]]></description>
			<content:encoded><![CDATA[<p>Como não achei o TUX versão Xavante resolvi fazer:</p>
<p style="text-align: center;"><a href="http://cobaia.net/wp-content/uploads/2008/10/tux.png"><img class="size-medium wp-image-299 aligncenter" title="tux" src="http://cobaia.net/wp-content/uploads/2008/10/tux.png" alt="" width="244" height="249" /></a></p>
<p style="text-align: left;">Acho que para um programador ter feito a camiseta ficou bacana.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2008/10/tux-versao-brasil-de-pelotas-xavante-rumo-a-serie-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 players de música para o seu linux</title>
		<link>http://cobaia.net/2008/10/5-players-de-musica-para-o-seu-linux/</link>
		<comments>http://cobaia.net/2008/10/5-players-de-musica-para-o-seu-linux/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 00:53:59 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=242</guid>
		<description><![CDATA[Para o linux temos uma grande gama de software, para todas as áreas, inclusive para multimídia, especificamente players de música. Segue uma lista de players para todos os gostos, desde os simples aos com diversas funcionalidades. Amarok Ótimo player que integra o KDE, possuí inúmeras funcionalidades, e é expansível através de seus plugins, além de [...]]]></description>
			<content:encoded><![CDATA[<p>Para o linux temos uma grande gama de software, para todas as áreas, inclusive para multimídia, especificamente players de música. Segue uma lista de players para todos os gostos, desde os simples aos com diversas funcionalidades.</p>
<ol>
<li><a title="Amarok" href="http://amarok.kde.org/"><strong>Amarok</strong></a><br />
Ótimo player que integra o KDE, possuí inúmeras funcionalidades, e é expansível através de seus plugins, além de ser possível customizar. Atualmente é o player que utilizo, alguns fatores que me chamam a atenção nele é a integração com o last.fm, a transição suave de musicas e as listas inteligentes de músicas.<strong></strong></p>
<p><strong>Algumas de suas funcionalidades:</strong></p>
<ul>
<li> Criação de listas de reprodução com drag and drop;</li>
<li> Equalizador de 10 bandas;</li>
<li> Download automático da imagem da capa do disco;</li>
<li> Estatísticas de execução de músicas;</li>
<li> Download de letras de músicas;</li>
<li> Crossfade;</li>
<li> Suporte a podcast;</li>
<li> Suporte a OSD;</li>
<li> Integração com o K3B (gravação de CDs);</li>
<li> Integração com o KDE;</li>
<li>Reproduz MP3 streams de sites como o Last.FM.http://www.xmms.org/</li>
<li> Suporte a banco de dados SQL para agilizar a busca de  arquivos na coleção;</li>
<li> Possui uma interface de scripts;</li>
<li>Expansível com plugins;</li>
<li>Suporte a temas;</li>
<li> Acesso a DCOP;</li>
<li>Suporte a dispositivos de músicas (iPod, MP3);</li>
<li> Traduzido para mais de 35 idiomas.</li>
</ul>
<p><strong>Para instalar o mesmo no ubuntu:</strong> <code>sudo apt-get install amarok</code></p>
<p><div class="wp-caption aligncenter" style="width: 138px"><a title="Screenshots do Amarok" href="http://amarok.kde.org/screenshots"><img title="Amarok" src="http://amarok.kde.org/files/amarok14/shot1_thumb.png" alt="Amarok 1.4" width="128" height="96" /></a><p class="wp-caption-text">Amarok 1.4</p></div></li>
<li><strong><a title="Rhythmbox" href="http://www.gnome.org/projects/rhythmbox/">Rhythmbox<br />
</a></strong>Music Player, integrado ao ambiente desktop Gnome, seu desenvolvimento foi inspirado no Itunes. Com diversas funcionalidades, e sua interface simples, fazem dele um ótimo player de música. Esse é o player que já acompanha o ubuntu.<strong> </strong><strong></strong></p>
<p><strong>Algumas de suas funcionalidades:<br />
</strong></p>
<ul>
<li>Fácil utilização e navegação nas músicas;</li>
<li>Search de músicas e sort de músicas;</li>
<li>Utiliza o framework Gstreamer, dando uma melhor qualidade nas músicas;</li>
<li>Suporte a rádio;</li>
<li>Suporte ao last.fm;</li>
<li>Playlists;</li>
<li>Playlists inteligentes;</li>
<li>Exapansível com plugins;</li>
<li>Suporte a dispositivos de músicas (iPod, MP3);</li>
<li> Download automático da imagem da capa do disco;</li>
</ul>
<p><div class="wp-caption aligncenter" style="width: 210px"><img title="Rhythmbox" src="http://www.gnome.org/projects/rhythmbox/screenshots/rhythmbox-main-small.png" alt="Screenshots do Rhythmbox" width="200" height="150" /><p class="wp-caption-text">Screenshots do Rhythmbox</p></div></li>
<li><a title="Banshee" href="http://banshee-project.org/"><strong>Banshee</strong></a><br />
Banshee é um player com diversas funcionalidade, é escrito em C# utilizando o projeto MONO, utiliza o GTK# e GStreamer, por isso se integra perfeitamente ao Gnome.<strong><br />
</strong><strong><br />
Algumas de suas funcionalidades são:<br />
</strong></p>
<ul>
<li>Playlist inteligente;</li>
<li>Integração com o last.fm;</li>
<li>Suporte a podcast;</li>
<li>Suporte a dispositívos de áudio (MP3, Ipod);</li>
<li>Reproduz vídeos;</li>
<li>Download automática da imagem da capa do disco;</li>
<li>Filtro por artistas e ou álbums;</li>
<li>Diversos recursos para busca.
<p><div class="wp-caption aligncenter" style="width: 460px"><a href="http://banshee-project.org/"><img title="Banshee" src="http://banshee-project.org/theme/images/slides/scaled/banshee-slide-podcasts.png" alt="Banshee" width="450" height="329" /></a><p class="wp-caption-text">Banshee</p></div></li>
</ul>
</li>
<li><strong><a title="XMMS" href="http://www.xmms.org/">XMMS</a></strong><br />
XMMS pode se dizer que é um fork do Winamp para Windows, possuí diversas funcionalidades, porém mantém a característica de ser simples, e que deve fazer o que é proposto, tocar músicas. Possuí suporte à skins, podendo assim deixa-lo com a roupa que você quiser.</p>
<p><div class="wp-caption aligncenter" style="width: 285px"><a title="XMMS" href="http://www.xmms.org/"><img title="XMMS" src="http://www.xmms.org/screenshots/playlist.png" alt="Screenshots do XMMS" width="275" height="232" /></a><p class="wp-caption-text">Screenshots do XMMS</p></div></li>
<li><a title="Audacios" href="http://audacious-media-player.org/index.php?title=Main_Page"><strong>Audaucios<br />
</strong></a>Audaucios é outro que busca a característica da simplicidade, seu desenvolvimento se deu baseado no Beep Media Player e no XMMS. Possuí suporte aos skins tanto do Winamp como do XMMS. Porém além de sua simplicidade, a uma grande gama de possibilidades de configurações, como de tu configurar sua playlist, a visualização e efeitos de som. Possuí suporte a plugins, que com eles é possível adicionar novas funcionalidades ao player.</p>
<p><div class="wp-caption aligncenter" style="width: 310px"><a href="http://audacious-media-player.org/index.php?title=Screenshots"><img title="Audaucios" src="http://audacious-media-player.org/images/thumb/e/e6/Screencap2691.png/300px-Screencap2691.png" alt="Audacios" width="300" height="225" /></a><p class="wp-caption-text">Audaucios</p></div></li>
</ol>
<p>Além dos players citados, existem diversos outros para serem utilizados no Linux, como sempre no linux as opções são grandes.</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2008/10/5-players-de-musica-para-o-seu-linux/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Como ter organização de cabos e servidores</title>
		<link>http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/</link>
		<comments>http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 18:02:58 +0000</pubDate>
		<dc:creator>Vinícius Krolow</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[informática]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://cobaia.net/?p=192</guid>
		<description><![CDATA[Ou melhor como não ter organização, muito engraçado!]]></description>
			<content:encoded><![CDATA[<p>Ou melhor como <strong>não</strong> ter organização, muito engraçado!</p>
<p style="text-align: center;">
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image001/' title='185373image001'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image001-150x150.jpg" class="attachment-thumbnail" alt="185373image001" title="185373image001" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image002/' title='185373image002'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image002-150x150.jpg" class="attachment-thumbnail" alt="185373image002" title="185373image002" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image003/' title='185373image003'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image003-150x150.jpg" class="attachment-thumbnail" alt="185373image003" title="185373image003" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image004/' title='185373image004'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image004-150x150.jpg" class="attachment-thumbnail" alt="185373image004" title="185373image004" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image006/' title='185373image006'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image006-150x150.jpg" class="attachment-thumbnail" alt="185373image006" title="185373image006" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image007/' title='185373image007'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image007-150x150.jpg" class="attachment-thumbnail" alt="185373image007" title="185373image007" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image008/' title='185373image008'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image008-150x150.jpg" class="attachment-thumbnail" alt="185373image008" title="185373image008" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image009/' title='185373image009'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image009-150x150.jpg" class="attachment-thumbnail" alt="185373image009" title="185373image009" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image010/' title='185373image010'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image010-150x150.jpg" class="attachment-thumbnail" alt="185373image010" title="185373image010" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image011/' title='185373image011'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image011-150x150.jpg" class="attachment-thumbnail" alt="185373image011" title="185373image011" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image012/' title='185373image012'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image012-150x150.jpg" class="attachment-thumbnail" alt="185373image012" title="185373image012" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image013/' title='185373image013'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image013-150x150.jpg" class="attachment-thumbnail" alt="185373image013" title="185373image013" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image014/' title='185373image014'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image014-150x150.jpg" class="attachment-thumbnail" alt="185373image014" title="185373image014" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image015/' title='185373image015'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image015-150x150.jpg" class="attachment-thumbnail" alt="185373image015" title="185373image015" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image016/' title='185373image016'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image016-150x150.jpg" class="attachment-thumbnail" alt="185373image016" title="185373image016" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image017/' title='185373image017'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image017-150x150.jpg" class="attachment-thumbnail" alt="185373image017" title="185373image017" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image018/' title='185373image018'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image018-150x150.jpg" class="attachment-thumbnail" alt="185373image018" title="185373image018" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image019/' title='185373image019'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image019-150x150.jpg" class="attachment-thumbnail" alt="185373image019" title="185373image019" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image020/' title='185373image020'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image020-150x150.jpg" class="attachment-thumbnail" alt="185373image020" title="185373image020" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image021/' title='185373image021'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image021-150x150.jpg" class="attachment-thumbnail" alt="185373image021" title="185373image021" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/185373image022/' title='185373image022'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/185373image022-150x150.jpg" class="attachment-thumbnail" alt="185373image022" title="185373image022" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/image3243453245/' title='image3243453245'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/image3243453245-150x150.jpg" class="attachment-thumbnail" alt="image3243453245" title="image3243453245" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/imagephp/' title='imagephp'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/imagephp-150x150.jpg" class="attachment-thumbnail" alt="imagephp" title="imagephp" /></a>
<a href='http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/image123123123123/' title='image123123123123'><img width="150" height="150" src="http://cobaia.net/wp-content/uploads/2008/09/image123123123123-150x150.jpg" class="attachment-thumbnail" alt="image123123123123" title="image123123123123" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://cobaia.net/2008/09/como-ter-organizacao-de-cabos-e-servidores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

