<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Ronaldo Richieri &#187; Ubuntu</title>
	<atom:link href="http://www.richieri.com/category/tecnologia/software-livre/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.richieri.com</link>
	<description>Colaboração, software livre, cultura popular, danças, forró e por aí vai!</description>
	<lastBuildDate>Tue, 03 Apr 2012 04:05:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<copyright>2006-2007 </copyright>
	<managingEditor>richieri@gmail.com (Ronaldo Richieri)</managingEditor>
	<webMaster>richieri@gmail.com (Ronaldo Richieri)</webMaster>
	<ttl>1440</ttl>
	<image>
		<url>http://www.richieri.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Ronaldo Richieri</title>
		<link>http://www.richieri.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>Colaboração, software livre, cultura popular, danças, forró e por aí vai!</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>Ronaldo Richieri</itunes:author>
	<itunes:owner>
		<itunes:name>Ronaldo Richieri</itunes:name>
		<itunes:email>richieri@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.richieri.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>A small Web Hosting with OpenPanel + Ubuntu Server 10.04 LTS + some tricks</title>
		<link>http://www.richieri.com/en/2011/10/26/english-a-small-web-hosting-with-openpanel-ubuntu-server-10-04-lts-some-tricks/</link>
		<comments>http://www.richieri.com/en/2011/10/26/english-a-small-web-hosting-with-openpanel-ubuntu-server-10-04-lts-some-tricks/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 13:28:01 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Dicas de Desenvolvimento]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[10.04 lts]]></category>
		<category><![CDATA[apache2-mpm-itk]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[openpanel]]></category>
		<category><![CDATA[ubuntu server]]></category>
		<category><![CDATA[virtual hosts]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=1390</guid>
		<description><![CDATA[Hi, I&#8217;m trying Openpanel, a great new opensource tool that helps developers make a complex server tasks with some mouse clicks. http://www.openpanel.com/ You can create domains, mail accounts, DNS and other stuff in a &#8220;Panel&#8221; way. You can create user accounts and allow them to create their own domains, emails and vhosts. I&#8217;m trying it [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>Hi,</p>
<p>I&#8217;m trying Openpanel, a great new opensource tool that helps developers make a complex server tasks with some mouse clicks.</p>
<p><a href="http://www.openpanel.com/" target="_blank">http://www.openpanel.com/</a></p>
<p>You can create domains, mail accounts, DNS and other stuff in a &#8220;Panel&#8221; way. You can create user accounts and allow them to create their own domains, emails and vhosts.</p>
<p>I&#8217;m trying it on linode</p>
<p><a href="http://www.linode.com" target="_blank">http://www.linode.com</a></p>
<p>With Ubuntu Server 10.04 LTS (You can deploy this image from linode dashboard. You have a virtual machine running after 5 min max)</p>
<p><a href="http://www.openpanel.com/download/openpanel-download/" target="_blank">After a successful OpenPanel install</a>, I need to make my users vhosts run as Apache process of their own user. This way, their php and other apps could write under their directories and make some personal stuff, as also it gets better to my administration tasks.</p>
<p>Unfortunately, this feature is not yet implemented (but it&#8217;s on the roadmap), so I need to create the followin &#8220;hack&#8221;:</p>
<ul>
<li>Install a new MPM apache module:<br />
sudo apt-get install apache2-mpm-itk</li>
<li>Write a script that&#8217;s create the directives which makes every vhost runs under it&#8217;s owner account and put ir under crontab to run every 10 minutes<br />
sudo pico /opt/apacheexec.sh<br />
Put the following content on it:<code></code></li>
</ul>
<pre>#!/bin/bash
for sites in /home/*/sites/*
do
    user=`echo "${sites}"|cut -d'/' -f 3`
    site=`echo "${sites}"|cut -d'/' -f 5`
    arquivo=`echo "/etc/apache2/openpanel.d/${site}.inc/mpmitkUser"`
    if [ -f $arquivo ]; then
        true
    else
        echo "&lt;IfModule mpm_itk_module&gt;" &gt; $arquivo
        echo "AssignUserId ${user} ${user}" &gt;&gt; $arquivo
        echo "&lt;/IfModule&gt;" &gt;&gt; $arquivo
        exec `/usr/sbin/apache2ctl graceful`
    fi
done</pre>
<ul>
<li>Then, make it executable<br />
chmod a+x /opt/apacheexec.sh</li>
<li>Finally, put it to run on crontab<br />
sudo crontab -e -u root</li>
<li>Write it:<br />
*/10 * * * * /opt/apacheexec.sh</li>
</ul>
<p>And we are done!</p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2011/10/26/english-a-small-web-hosting-with-openpanel-ubuntu-server-10-04-lts-some-tricks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Step by Step OTRS 3 on Ubuntu Server 11.04 installation</title>
		<link>http://www.richieri.com/en/2011/09/20/passo-a-passo-para-instalar-um-otrs-3-completo-no-ubuntu-server-11-04/</link>
		<comments>http://www.richieri.com/en/2011/09/20/passo-a-passo-para-instalar-um-otrs-3-completo-no-ubuntu-server-11-04/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 14:33:22 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[OTRS]]></category>
		<category><![CDATA[Ubuntu 11.04]]></category>
		<category><![CDATA[11.04]]></category>
		<category><![CDATA[fresh install]]></category>
		<category><![CDATA[otrs]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=1369</guid>
		<description><![CDATA[This article is only available in portuguese, sorry =\]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>This article is only available in portuguese, sorry =\</p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2011/09/20/passo-a-passo-para-instalar-um-otrs-3-completo-no-ubuntu-server-11-04/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>(Português) Acessando o Internet Banking Santander pelo Ubuntu</title>
		<link>http://www.richieri.com/en/2011/09/06/acessando-o-internet-banking-santander-pelo-ubuntu/</link>
		<comments>http://www.richieri.com/en/2011/09/06/acessando-o-internet-banking-santander-pelo-ubuntu/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 05:37:47 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Ubuntu 11.04]]></category>
		<category><![CDATA[home banking]]></category>
		<category><![CDATA[internet banking]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[módulo de proteção]]></category>
		<category><![CDATA[módulo de segurança]]></category>
		<category><![CDATA[santander]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=1364</guid>
		<description><![CDATA[Sorry, this entry is only available in Português.]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>Sorry, this entry is only available in <a href="http://www.richieri.com/category/tecnologia/software-livre/ubuntu/feed/">Português</a>.</p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2011/09/06/acessando-o-internet-banking-santander-pelo-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 11.04 on Dell Vostro 3450 with Radeon 6330M &#8211; part 2</title>
		<link>http://www.richieri.com/en/2011/08/24/ubuntu-11-04-no-dell-vostro-3450-com-placa-radeon-6330m-parte-2/</link>
		<comments>http://www.richieri.com/en/2011/08/24/ubuntu-11-04-no-dell-vostro-3450-com-placa-radeon-6330m-parte-2/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 03:40:30 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Ubuntu 11.04]]></category>
		<category><![CDATA[6330M HD]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[modeset]]></category>
		<category><![CDATA[radeon]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[vostro 3450]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=1344</guid>
		<description><![CDATA[This post overwrites the tips I gave on this first one. On that post, the tip was start the laptop disabling a featured called &#8220;modeset&#8221;. The problem is that disabling it makes the laptop slower and disable some other interesting features like GPU switching. The second way I found, and the best one, is the [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>This post overwrites the tips I gave on <a title="Ubuntu 11.04 no laptop Vostro 3450 com placa gráfica Radeon 6330M HD" href="http://www.richieri.com/2011/08/09/ubuntu-11-04-no-laptop-dell-vostro-3450-com-placa-grafica-radeon-6330m-hd/">this first one</a>. On that post, the tip was start the laptop disabling a featured called &#8220;modeset&#8221;.</p>
<p>The problem is that disabling it makes the laptop slower and disable some other interesting features like GPU switching.</p>
<p>The second way I found, and the best one, is the following:</p>
<p>After the system is installed, press &#8220;e&#8221; when you get Grub screen when you boot it first time. A boot options editor will open and you should add the line below after the param <strong>quiet splash</strong>:</p>
<p>radeon.modeset=0</p>
<p>Press Crtl+X and the system will boot up.</p>
<p>After that, we need to block the automatic load of radeon module adding it to a blacklist. Open Gnome-terminal and type:</p>
<p>sudo gedit /etc/modprobe.d/blacklist.conf</p>
<p>In the end of the file, type:</p>
<p>blacklist radeon</p>
<p>Save it. After that, we need to make the system load the module in a second moment of the boot process. Type in gnome-terminal:</p>
<p>sudo gedit /etc/rc.local</p>
<p>After the line &#8220;# By default this script does nothing.&#8221; type this:</p>
<pre>modprobe radeon
chown root:plugdev /sys/kernel/debug/vgaswitcheroo/switch
echo OFF &gt; /sys/kernel/debug/vgaswitcheroo/switch
exit 0</pre>
<p>Save the file e reboot the system. This may be sufficient to the system work out without disabling radeon modeser.</p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2011/08/24/ubuntu-11-04-no-dell-vostro-3450-com-placa-radeon-6330m-parte-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Ubuntu 11.04 no laptop Vostro 3450 com placa gráfica Radeon 6330M HD</title>
		<link>http://www.richieri.com/en/2011/08/09/ubuntu-11-04-no-laptop-dell-vostro-3450-com-placa-grafica-radeon-6330m-hd/</link>
		<comments>http://www.richieri.com/en/2011/08/09/ubuntu-11-04-no-laptop-dell-vostro-3450-com-placa-grafica-radeon-6330m-hd/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 04:56:25 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Software Livre]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 11.04]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[vostro 3450]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=1317</guid>
		<description><![CDATA[THIS POST IS DEPRECATED. SEE THIS ONE PLEASE. Um dos problemas de se adquirir um equipamento novo e utilizar o Ubuntu como distribuição, é que geralmente, falta um módulo ou outro que funcione 100% como deveria. Nada grave, a gente contorna e ajuda a desenvolver a integração por completo. Por enquanto, tive algumas dificuldades na [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>THIS POST IS DEPRECATED. <a title="Ubuntu 11.04 no Dell Vostro 3450 com placa Radeon 6330M – parte 2" href="http://www.richieri.com/en/2011/08/24/ubuntu-11-04-no-dell-vostro-3450-com-placa-radeon-6330m-parte-2/">SEE THIS ONE PLEASE.</a></p>
<p>Um dos problemas de se adquirir um equipamento novo e utilizar o Ubuntu como distribuição, é que geralmente, falta um módulo ou outro que funcione 100% como deveria. Nada grave, a gente contorna e ajuda a desenvolver a integração por completo.</p>
<p>Por enquanto, tive algumas dificuldades na utilização do Vostro 3450 com a placa gráfica 6330M HD da AMD (Radeon). Trata-se de uma tecnologia bem recente que utiliza duas placas de vídeo no mesmo laptop, uma de baixo processamento e outra para graficos mais complexos. Este recurso ainda não está super bem resolvido nos kernels atuais.</p>
<p>Enquanto isso, para rodar o ubuntu neste laptop, é necessário desativar um recurso relativo à esta comutação entre as placas.</p>
<p>Para instalar o Ubuntu, logo que você realiza o boot, acesse as opções de Boot navegando com as setas do teclado e escolha a opção &#8220;nomodeset&#8221;.</p>
<p>Depois de instalado, para realizar o primeiro boot com o sistema, na tela de escolha do sistema operacional (o famoso Grub), pressione &#8220;e&#8221;. Uma tela de edição abrirá. Digite no fim da linha onde está o parametro quiet splash (ou algo assim):<br />
radeon.modeset=0</p>
<p>Pressione Crtl+X</p>
<p>O sistema irá bootar. Essa configuração não é permanente. Para torná-la, após iniciar seu sistema pela primeira vez, edite o arquivo de configurações do grub. Abra o terminal e de o comando:</p>
<p>sudo gedit /etc/default/grub</p>
<p>e modifique a linha</p>
<p>GRUB_CMDLINE_LINUX_DEFAULT=&#8221;quiet splash&#8221;<br />
para</p>
<p>GRUB_CMDLINE_LINUX_DEFAULT=&#8221;quiet splash radeon.modeset=0&#8243;</p>
<p>Salva o arquivo, feche o Gedit e rode o seguinte comando:</p>
<p>sudo update-grub</p>
<p>Pronto! Infelizmente, essas modificações diminuem o desempenho da parte gráfica deste laptop. Se algum tiver uma nova dica para habilitar corretamente esta placa de video no Ubuntu, por favor deixe seu comentário! <img src='http://www.richieri.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>O sistema que instalei, foi o Ubuntu 11.04 64 bits.</p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2011/08/09/ubuntu-11-04-no-laptop-dell-vostro-3450-com-placa-grafica-radeon-6330m-hd/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Uma boa maneira de usar o Firefox no Ubuntu 10.10 para netbooks</title>
		<link>http://www.richieri.com/en/2010/09/27/uma-boa-maneira-de-usar-o-firefox-no-ubuntu-10-10-para-netbooks/</link>
		<comments>http://www.richieri.com/en/2010/09/27/uma-boa-maneira-de-usar-o-firefox-no-ubuntu-10-10-para-netbooks/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 12:46:03 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 10.10]]></category>
		<category><![CDATA[10.10]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[maverick meerkat]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[ubuntu 10.10]]></category>
		<category><![CDATA[unity]]></category>
		<category><![CDATA[unr]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=1060</guid>
		<description><![CDATA[O Ubuntu 10.10 netbook vem com um novo conceito de utilização da área da tela. Ainda não entendi bem as vantagens de usabilidade deste novo formato, pois ele mantém fixa na lateral esquerda uma barra de aplicativos que lembra os antigos docks de gerenciadores de janela como o Winwdow Maker. Veja uma captura da tela [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>O Ubuntu 10.10 netbook vem com um novo conceito de utilização da área da tela. Ainda não entendi bem as vantagens de usabilidade deste novo formato, pois ele mantém fixa na lateral esquerda uma barra de aplicativos que lembra os antigos docks de gerenciadores de janela como o Winwdow Maker. Veja uma captura da tela que fiz dele rodando em meu notebook:</p>
<p style="text-align: center;"><a href="http://www.richieri.com/wp-content/uploads/2010/09/11.png"><img class="size-medium wp-image-1061 aligncenter" title="1" src="http://www.richieri.com/wp-content/uploads/2010/09/11-300x175.png" alt="" width="300" height="175" /></a></p>
<p style="text-align: left;">O gerenciamento de janelas é agora feito pelo Unity. Essa barra lateral esquerda ainda não vem com um auto hide, então os software acabam perdendo alguns pixels da tela. Isso é um problema para os navegadores já a maioria dos sites são montados em 1024 pixels atualmente e para ter uma visualização legal deles nesta nova versão do Ubuntu, é necessário utilizá-los em modo tela cheia, pressionado a tecla F11.</p>
<p style="text-align: left;">Com isso temos um outro problema. Em modo tela cheia, os navegadores escondem as barras de abas e ferramentas. Existe no entando uma forma de inibir esse &#8220;auto hide&#8221; de barras no Firefox.</p>
<p style="text-align: left;">Para isso, digite na barro de endereços o seguinte: &#8220;<strong>about:config</strong>&#8221; (sem as aspas)</p>
<p style="text-align: left;">Em seguida, clique em &#8220;Serei cuidadoso, prometo!&#8221;</p>
<p style="text-align: left;">Procure pela chave &#8220;browser.fullscreen.autohide&#8221; e a defina com o valor &#8220;false&#8221;.</p>
<p style="text-align: left;">Você pode também instalar a extensão &#8220;Hide GUI Bars&#8221; para ocultar e voltar a exibir as barras do browser através de uma tecla de atalho que você pode definir.</p>
<p style="text-align: left;">Uma outra sugestão é deixar o firefox com uma cara de Chrome. Para isso você instalar os seguintes complementos:</p>
<p style="text-align: left;">O tema Chromifox Extreme Carbon</p>
<p style="text-align: left;">A extensão Hide Menubar</p>
<p style="text-align: left;">Experimente <img src='http://www.richieri.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2010/09/27/uma-boa-maneira-de-usar-o-firefox-no-ubuntu-10-10-para-netbooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screenshoot do Ubuntu 10.10</title>
		<link>http://www.richieri.com/en/2010/09/21/screenshoot-do-ubuntu-10-10/</link>
		<comments>http://www.richieri.com/en/2010/09/21/screenshoot-do-ubuntu-10-10/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 03:07:17 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=1053</guid>
		<description><![CDATA[Um bocado diferente]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>Um bocado diferente</p>
<p style="text-align: center;"><a href="http://www.richieri.com/wp-content/uploads/2010/09/1.png"><img class="size-medium wp-image-1054 aligncenter" title="1" src="http://www.richieri.com/wp-content/uploads/2010/09/1-300x175.png" alt="" width="300" height="175" /></a></p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2010/09/21/screenshoot-do-ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compartilhamento de arquivos pessoais &#8211; Ubuntu 10.04</title>
		<link>http://www.richieri.com/en/2010/08/13/compartilhamento-de-arquivos-pessoais-ubuntu-10-04/</link>
		<comments>http://www.richieri.com/en/2010/08/13/compartilhamento-de-arquivos-pessoais-ubuntu-10-04/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 17:09:07 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Open Source and Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[compartilhamento]]></category>
		<category><![CDATA[lucid lynx]]></category>
		<category><![CDATA[sharing]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=971</guid>
		<description><![CDATA[Não sei exatamente por que, mas o compartilhamento de arquivos pessoais no Ubuntu vem desabilitado. Para habilitar, é necessário instalar 2 pacotes com o seguinte comando: sudo apt-get install apache2.2-bin libapache2-mod-dnssd Verifiquei isto neste site: http://macpablodesigns.wordpress.com/2010/05/01/enable-personal-file-sharing-in-ubuntu-10-04/]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>Não sei exatamente por que, mas o compartilhamento de arquivos pessoais no Ubuntu vem desabilitado. Para habilitar, é necessário instalar 2 pacotes com o seguinte comando:</p>
<pre>sudo apt-get install apache2.2-bin libapache2-mod-dnssd</pre>
<p>Verifiquei isto neste site:</p>
<p><a href="http://macpablodesigns.wordpress.com/2010/05/01/enable-personal-file-sharing-in-ubuntu-10-04/">http://macpablodesigns.wordpress.com/2010/05/01/enable-personal-file-sharing-in-ubuntu-10-04/</a></p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2010/08/13/compartilhamento-de-arquivos-pessoais-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Como compartilhar internet no Ubuntu 10.04</title>
		<link>http://www.richieri.com/en/2010/08/13/como-compartilhar-internet-no-ubuntu-10-04/</link>
		<comments>http://www.richieri.com/en/2010/08/13/como-compartilhar-internet-no-ubuntu-10-04/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 14:54:10 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[compartilhamento]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[lucid lynx]]></category>
		<category><![CDATA[rede sem fio]]></category>
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=968</guid>
		<description><![CDATA[Vou descrever aqui uma forma simples e sem entrarmos muito na linha de comando (só um pouquinho) para compartilhar a internet no Ubuntu 10.04, usando o aplicativo firestarter. Os tutoriais que havia feito até agora sobre compartilhamento de Internet no Ubuntu através de scripts, conflitavam com o mini aplicativo de gerenciamento de rede nativo do [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p>Vou descrever aqui uma forma simples e sem entrarmos muito na linha de comando (só um pouquinho) para compartilhar a internet no Ubuntu 10.04, usando o aplicativo <a href="http://www.fs-security.com/" target="_blank">firestarter</a>.</p>
<p>Os tutoriais que havia feito até agora sobre compartilhamento de Internet no Ubuntu através de scripts, conflitavam com o mini aplicativo de gerenciamento de rede nativo do Ubuntu. O Firestarter por sua vez, parece não conflitar <img src='http://www.richieri.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>O Firestarter é um aplicativo de firewall, mais precisamente uma interface gráfica para os aplicativos iptables e iprules que são &#8220;nativos&#8221; do linux.</p>
<p><strong>1o passo &#8211; Conecte-se à internet<br />
</strong></p>
<p>A primeira coisa a fazer é se conectar à internet. No meu exemplo, vou me conectar à internet através da minha placa de rede sem fio (wlan0). Isso você faz normalmente através do mini aplicativo de gerenciamento de rede que fica na barra de tarefas ao lado do relógio.</p>
<p><strong>2o passo &#8211; Instale o Firestarter e mais umas coisinhas <img src='http://www.richieri.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </strong></p>
<p>Depois de se conectar na internet, abra um terminal (no Ubuntu é só preciosar Crtl+Alt+T) e instale o firestarter e o servidor de DHCP com o seguinte comando (digite sua senha se solicitada):</p>
<pre>sudo apt-get install firestarter dhcp3-server
</pre>
<p>Se você receber algum erro durante a instalação do pacote dhcp3-server, não se preocupe, ignore.</p>
<p>Infelizmente o firestarter não é um aplicativo mantido no Ubuntu pela Canonical, então não é completamente compatível com o mesmo e precisaremos fazer alguns ajustes para que o firestarter funcione bem nesta distribuição. São apenas dois comandos, para que ele possa identificar o servidor de DHCP:</p>
<pre>sudo ln -s /etc/init.d/dhcp3-server /etc/init.d/dhcpd
sudo ln -s /usr/sbin/dhcpd3 /usr/sbin/dhcpd
</pre>
<p>Pode fechar o terminal agora! Não abra o firestarter ainda!</p>
<p><strong>3o passo &#8211; Configure a interface de rede local</strong></p>
<p>Novamente no mini aplicativo de gerenciamento de rede do Ubuntu, vamos configurar a interface de rede local, ou seja, aquela que está conectada ao(s) computador(es) que se conectarão à internet através do seu.</p>
<p>Clique com o botão direito em cima do mini aplicativo e escolha &#8220;Editar conexões&#8230;&#8221;</p>
<p>Vá para a aba que define o tipo de sua conexão com a rede local (Com fio ou Sem fio). No meu caso, a rede local é com fio, pois estou compartilhando a internet com um computador conectado ao meu através de um cabo crossover.</p>
<p>Clique em Adicionar para criar um novo perfil de conexão para este dispositivo.</p>
<p>No campo &#8220;<strong>Nome da conexão</strong>&#8220;, defina um nome para a mesma. Eu coloquei &#8220;<strong>Conexão local com IP Fixo</strong>&#8220;.</p>
<p>Depois vá para a aba &#8220;<strong>Configurações IPv4</strong>&#8221; e no campo <strong>Método</strong>, escolha<strong> Manual</strong>.</p>
<p>Em <strong>Endereços</strong>, clique em <strong>Adicionar</strong>. No campo <strong>Endereço</strong> digite <strong>192.168.0.1</strong>, no campo <strong>Máscara de rede</strong> digite  <strong>255.255.255.0</strong>. Deixe o campo <strong>Gateway </strong>em branco. A tela ficar assim:</p>
<p><a href="http://www.richieri.com/wp-content/uploads/2010/08/tela1.jpg"><img class="alignnone size-medium wp-image-969" title="tela1" src="http://www.richieri.com/wp-content/uploads/2010/08/tela1-275x300.jpg" alt="" width="275" height="300" /></a></p>
<p><strong>IMPORTANTE: </strong>Se sua conexão de rede local for <strong>Sem fio</strong>,<strong> </strong>será necessário criar uma rede local AdHoc. Para isso, <strong>antes de clicar em Aplicar</strong>, volte à Aba &#8220;<strong>Sem fio</strong>&#8220;. No campo <strong>SSID</strong>, coloque o nome da rede sem fio que você quer criar, pode ser qualquer um! No capo <strong>Modo </strong>escolha <strong>Adhoc</strong>. Pronto! Se você quiser mais tarde, pode colocar senha para sua rede local na Aba <strong>Segunraça sem fio</strong>, mas não vamos fazer isto agora!.</p>
<p>Finalmente, clique em <strong>Aplicar</strong>.</p>
<p>Clique em cima do mini aplicativo de gerenciamento de rede e ative a conexão que você acabou de criar clicando em cima dela.</p>
<p><strong>4o passo &#8211; Configurar o Firestarter.</strong></p>
<p>Inicie o firestarter em Aplicativos -&gt; Sistemas -&gt; Administração -&gt; Firestarter</p>
<p>Você será guiado em um wizard de configuração de rede. Clique em Avançar na tela de boas-vindas.</p>
<p>Na segunda tela, escolha seu dispositivo de rede conectado à internet. No meu caso é a rede sem fio (wlan0). Também no meu caso, o endereço de rede é obtido através de DHCP então marquei a ultima opção da tela. Se você não sabe o que é DHCP ou está em dúvida, marque esta opção! Clique em Avançar novamente.</p>
<p>Clique em &#8220;Habilitar o compartilhamento de conexão a internet&#8221; e escolha seu dispositivo de rede local. No meu caso é o eth0 (rede com fio)</p>
<p>Marque também a opção &#8220;Habilitar DHCP para rede local&#8221; e clique em &#8220;Detalhes do servidor DHCP&#8221;. Marque a opção &#8220;Criar nova configuração de DHCP&#8221; e mantenha os valores sugeridos pelo firestarter. Clique em Avançar!</p>
<p>Marque a opção &#8220;Start firewall now&#8221; e clique em &#8220;Salvar&#8221;.</p>
<p><strong>Pronto!</strong></p>
<p>Toda vez que você quiser compartilhar sua conexão, habilite as conexões envolvidas no mini aplicativo de rede, abra o firestarter e o ative.</p>
<p>Você pode criar outros tipo de compartilhamento no menu Editar -&gt; Preferencias do Firestarter.</p>
<p>O fórum abaixo está aberto para você deixar seu comentário e sanar os de outras pessoas também. Valeu <img src='http://www.richieri.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2010/08/13/como-compartilhar-internet-no-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Modens ZTE mf626 e Giant D301 no Ubuntu 9.04&#124;ZTE mf626 and Giant D301 on Ubuntu 9.04</title>
		<link>http://www.richieri.com/en/2009/05/28/modens-zte-mf626-e-giant-d301-no-ubuntu-904zte-mf626-and-giant-d301-on-ubuntu-904/</link>
		<comments>http://www.richieri.com/en/2009/05/28/modens-zte-mf626-e-giant-d301-no-ubuntu-904zte-mf626-and-giant-d301-on-ubuntu-904/#comments</comments>
		<pubDate>Thu, 28 May 2009 16:48:21 +0000</pubDate>
		<dc:creator>richieri</dc:creator>
				<category><![CDATA[Open Source and Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[9.04]]></category>
		<category><![CDATA[Jaunty Jackalope]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[zte]]></category>

		<guid isPermaLink="false">http://www.richieri.com/?p=619</guid>
		<description><![CDATA[Fiz um pacote deb para facilitar a instalação desses modens, seguindo esse tutorial:I have made a deb package to make easier to configure those modens: http://ubuntuforum-br.org/index.php?topic=50178.0 É UM PACOTE TOTALMENTE EXPERIMENTAL, OK?WARNING! THIS IS AN EXPERIMENTAL PACKAGE! Baixe-o aqui: The Package: mf626-d301.deb Após instalá-lo, insira seu modem no laptop. Depois de uns 10 segundos, deverá [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>



<p><span lang="pt-br">Fiz um pacote deb para facilitar a instalação desses modens, seguindo esse tutorial:</span><span lang="en">I have made a deb package to make easier to configure those modens:</span><span lang="pt-br"><br />
</span></p>
<p><a href="http://ubuntuforum-br.org/index.php?topic=50178.0" target="_blank">http://ubuntuforum-br.org/index.php?topic=50178.0</a></p>
<p><span lang="pt-br"><strong>É UM PACOTE TOTALMENTE EXPERIMENTAL, OK?</strong></span><span lang="en"><strong>WARNING! THIS IS AN EXPERIMENTAL PACKAGE!</strong></span><span lang="pt-br"><br />
</span></p>
<p><span lang="pt-br">Baixe-o aqui: </span><span lang="en">The Package:</span><span lang="pt-br"><br />
</span></p>
<p><a href="http://www.richieri.com/wp-content/uploads/2009/05/mf626-d301.deb">mf626-d301.deb</a></p>
<p><span lang="pt-br">Após instalá-lo, insira seu modem no laptop. Depois de uns 10 segundos, deverá aparecer o assistente de configuração da banda larga.</span><span lang="en">Insert the modem after the package instalation. After some seconds, the network manager assistant should appear <img src='http://www.richieri.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </span><span lang="pt-br"><br />
</span></p>
<p><span lang="pt-br">Tenta aí!</span></p>
<p>[paypal text="Gostou desta solução? Você pode pagar um café pro Ronaldo clicando aqui <img src='http://www.richieri.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> " email="richieri@gmail.com" title="Contribuicao voluntaria para o site Richieri.com" amount="2" currency="USD" /]</p>


<script type="text/javascript"><!--

google_ad_client = "ca-pub-3319159244732904";

/* Richieri so imagem */

google_ad_slot = "0401013356";

google_ad_width = 468;

google_ad_height = 60;

//-->

</script>

<script type="text/javascript"

src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script>]]></content:encoded>
			<wfw:commentRss>http://www.richieri.com/en/2009/05/28/modens-zte-mf626-e-giant-d301-no-ubuntu-904zte-mf626-and-giant-d301-on-ubuntu-904/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

