<?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>Everlinux's Blog &#187; Dicas</title>
	<atom:link href="http://everlinux.com/blog/category/dicas/feed" rel="self" type="application/rss+xml" />
	<link>http://everlinux.com/blog</link>
	<description>Sempre vivendo, aprendendo e blogando... :)</description>
	<lastBuildDate>Fri, 30 Jul 2010 18:13:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Como autenticar serviços no LDAP da MS (Active Directory)</title>
		<link>http://everlinux.com/blog/2010/04/13/como-autenticar-servicos-no-ldap-da-ms-active-directory</link>
		<comments>http://everlinux.com/blog/2010/04/13/como-autenticar-servicos-no-ldap-da-ms-active-directory#comments</comments>
		<pubDate>Tue, 13 Apr 2010 14:07:22 +0000</pubDate>
		<dc:creator>Tiago Cruz</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Segurança]]></category>
		<category><![CDATA[Squid]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=1117</guid>
		<description><![CDATA[Imagine o seguinte cenário: Empresa de pequeno porte, com um AD instalado às pressas sem muitos cuidados e um servidor Linux lá no meio servindo de proxy. Se você tiver vontade de autenticar os serviços no AD, aqui vão alguns exemplos práticos e rápidos. Tome como base um Windows 2003, com o domínio chamado &#8220;EverLinux&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Imagine o seguinte cenário: Empresa de pequeno porte, com um AD instalado às pressas sem muitos cuidados e um servidor Linux lá no meio servindo de proxy. Se você tiver vontade de autenticar os serviços no AD, aqui vão alguns exemplos práticos e rápidos.</p>
<p>Tome como base um Windows 2003, com o domínio chamado &#8220;EverLinux&#8221; e um usuário rosca lá chamado &#8220;tcruz&#8221; somente para fazer as buscas no diretório da Microsoft. O Linux seria um Ubuntu ou Debian da vida.</p>
<p><strong>Autenticando o Apache no AD</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>mods-enabled
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> ..<span style="color: #000000; font-weight: bold;">/</span>mods-available<span style="color: #000000; font-weight: bold;">/</span>ldap.load .
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> ..<span style="color: #000000; font-weight: bold;">/</span>mods-available<span style="color: #000000; font-weight: bold;">/</span>authnz_ldap.load .
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;</span>Directory <span style="color: #ff0000;">&quot;/var/www/protegido&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span>
        AuthBasicProvider ldap
        AuthzLDAPAuthoritative off
        AuthName <span style="color: #ff0000;">&quot;Entre com a senha do AD&quot;</span>
        AuthType Basic
        AuthLDAPBindDN tcruz<span style="color: #000000; font-weight: bold;">@</span>everlinux
        AuthLDAPBindPassword senha_do_tcruz
        AuthLDAPURL ldap:<span style="color: #000000; font-weight: bold;">//</span>10.10.20.20:<span style="color: #000000;">3268</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">cn</span>=<span style="color: #c20cb9; font-weight: bold;">users</span>,<span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">dc</span></span>=everlinux?sAMAccountName?one
        require user tcruz cmangini
        Allow from all
<span style="color: #000000; font-weight: bold;">&lt;/</span>Directory<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Autenticando o Squid no AD</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">...
acl bloqueados dstdom_regex <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;/etc/squid/block.txt&quot;</span>
http_access deny bloqueados
&nbsp;
auth_param basic program <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>squid<span style="color: #000000; font-weight: bold;">/</span>ldap_auth <span style="color: #660033;">-R</span> <span style="color: #660033;">-b</span> <span style="color: #ff0000;">&quot;dc=everlinux&quot;</span> <span style="color: #660033;">-D</span> \
<span style="color: #ff0000;">&quot;cn=tiago cruz,cn=users,dc=everlinux&quot;</span> <span style="color: #660033;">-w</span> <span style="color: #ff0000;">&quot;senha_tcruz&quot;</span> <span style="color: #660033;">-f</span> <span style="color: #007800;">sAMAccountName</span>=<span style="color: #000000; font-weight: bold;">%</span>s <span style="color: #660033;">-h</span> 10.10.20.20
auth_param basic children <span style="color: #000000;">5</span>
auth_param basic realm Autenticacao
auth_param basic credentialsttl <span style="color: #000000;">5</span> minutes
acl ldapauth proxy_auth REQUIRED
http_access allow ldapauth
...</pre></div></div>

<p><strong>Autenticando algo em PHP no AD</strong></p>
<p>O exemplo será o software <a href="http://www.oneorzero.com">OneOrZero</a> utilizado Help Desk:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># apt-get install php5-ldap</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>helpdesk<span style="color: #000000; font-weight: bold;">/</span>configuration<span style="color: #000000; font-weight: bold;">/</span>website_settings.php
auth_method = <span style="color: #ff0000;">&quot;AD&quot;</span>
ldap_host = <span style="color: #ff0000;">&quot;10.10.20.20&quot;</span>
ldap_domain = <span style="color: #ff0000;">&quot;everlinux&quot;</span>
ldap_binddn = <span style="color: #ff0000;">&quot;CN=Tiago Cruz,CN=Users,DC=everlinux&quot;</span>
ldap_bindpwd = <span style="color: #ff0000;">&quot;senha_tcruz&quot;</span>
ldap_rootdn = <span style="color: #ff0000;">&quot;CN=Users,DC=everlinux&quot;</span>
ldap_searchattr = <span style="color: #ff0000;">&quot;sAMAccountName&quot;</span>
ldap_fname = <span style="color: #ff0000;">&quot;givenname&quot;</span>
ldap_lname = <span style="color: #ff0000;">&quot;sn&quot;</span>
ldap_uname = <span style="color: #ff0000;">&quot;samaccountname&quot;</span>
ldap_email_add = <span style="color: #ff0000;">&quot;mail&quot;</span>
ldap_office = <span style="color: #ff0000;">&quot;physicaldeliveryofficename&quot;</span>
ldap_phone = <span style="color: #ff0000;">&quot;telephonenumber&quot;</span>
ldap_context = <span style="color: #ff0000;">&quot;sAMAccountName&quot;</span></pre></div></div>

<p><strong>Fazendo uma busca manualmente no diretório</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># ldapsearch -LLL -h 10.10.20.20 -P 3 -x -D &quot;cn=tiago cruz,cn=users,dc=everlinux&quot; -W \</span>
<span style="color: #660033;">-b</span> <span style="color: #ff0000;">&quot;cn=users,dc=everlinux&quot;</span>  <span style="color: #ff0000;">&quot;(&amp;(&amp;(objectClass=user)(objectCategory=person)) <span style="color: #000099; font-weight: bold;">\
</span>(sAMAccountName=tcruz))&quot;</span> 
Enter LDAP Password: 
dn: <span style="color: #007800;">CN</span>=Tiago Cruz,<span style="color: #007800;">CN</span>=Users,<span style="color: #007800;">DC</span>=everlinux
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: user
cn: Tiago Cruz
sn: Cruz
physicalDeliveryOfficeName: EverLinuxs Office
telephoneNumber: <span style="color: #000000;">1234</span>-<span style="color: #000000;">4321</span>
givenName: Tiago
initials: ti
distinguishedName: <span style="color: #007800;">CN</span>=Tiago Cruz,<span style="color: #007800;">CN</span>=Users,<span style="color: #007800;">DC</span>=everlinux
instanceType: <span style="color: #000000;">4</span>
whenCreated: 20090427110042.0Z
whenChanged: 20100406221357.0Z
displayName: Tiago Cruz
uSNCreated: <span style="color: #000000;">555987</span>
memberOf:: <span style="color: #007800;">Q049QWRtaW5zLiBkbyBkb23DrW5pbyxDTj1Vc2VycyxEQz1kb21pbmlvMjAwNw</span>==
memberOf: <span style="color: #007800;">CN</span>=Administradores,<span style="color: #007800;">CN</span>=Builtin,<span style="color: #007800;">DC</span>=everlinux
uSNChanged: <span style="color: #000000;">2331137</span>
name: Tiago Cruz
objectGUID:: <span style="color: #000000;">39</span><span style="color: #007800;">teBl62JUWwzZz36nNICw</span>==
userAccountControl: <span style="color: #000000;">66048</span>
badPwdCount: <span style="color: #000000;">0</span>
codePage: <span style="color: #000000;">0</span>
countryCode: <span style="color: #000000;">0</span>
badPasswordTime: <span style="color: #000000;">129150648344589017</span>
lastLogoff: <span style="color: #000000;">0</span>
lastLogon: <span style="color: #000000;">129150648382871002</span>
pwdLastSet: <span style="color: #000000;">128853036428004858</span>
primaryGroupID: <span style="color: #000000;">513</span>
objectSid:: AQUAAAAAAAUVAAAAR0LCqonS5XyzPF2T+<span style="color: #007800;">AQAAA</span>==
adminCount: <span style="color: #000000;">1</span>
accountExpires: <span style="color: #000000;">9223372036854775807</span>
logonCount: <span style="color: #000000;">0</span>
sAMAccountName: tcruz
sAMAccountType: <span style="color: #000000;">80530263368</span>
userPrincipalName: tcruz<span style="color: #000000; font-weight: bold;">@</span>everlinux
objectCategory: <span style="color: #007800;">CN</span>=Person,<span style="color: #007800;">CN</span>=Schema,<span style="color: #007800;">CN</span>=Configuration,<span style="color: #007800;">DC</span>=everlinux
mail: tiagocruz AT everlinux.com</pre></div></div>

<p>Espero que com estas dicas fique mais fácil para você centralizar a autenticação de seus serviços, caso seja necessário integrar com um LDAP proprietário.</p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2010/04/13/como-autenticar-servicos-no-ldap-da-ms-active-directory/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Balanceamento de carga com Apache e Nginx</title>
		<link>http://everlinux.com/blog/2010/01/19/balanceamento-de-carga-com-apache-e-nginx</link>
		<comments>http://everlinux.com/blog/2010/01/19/balanceamento-de-carga-com-apache-e-nginx#comments</comments>
		<pubDate>Tue, 19 Jan 2010 17:00:29 +0000</pubDate>
		<dc:creator>Tiago Cruz</dc:creator>
				<category><![CDATA[Cluster]]></category>
		<category><![CDATA[Dicas]]></category>
		<category><![CDATA[High Availability]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nerd]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=1026</guid>
		<description><![CDATA[Se você precisa balancear a carga em seu webserver e não tem (ou não pode usar) um hardware dedicado para isso, segue alguns exemplos práticos: Apache httpd: NameVirtualhost *:80 &#60;VirtualHost *:80&#62; ServerName everlinux-homolog.com ServerAlias 200.24.12.34 10.10.23.53 10.10.23.56 ServerAdmin suporte@everlinux.com ErrorLog &#34;&#124;/usr/sbin/rotatelogs /var/log/httpd/error_log.%Y%m%d 86400 -180&#34; CustomLog &#34;&#124;/usr/sbin/rotatelogs /var/log/httpd/access_log.%Y%m%d 86400 -180&#34; combined &#160; &#60;Proxy balancer://everhttp&#62; BalancerMember http://10.10.23.53:80/ [...]]]></description>
			<content:encoded><![CDATA[<p>Se você precisa balancear a carga em seu webserver e não tem (ou não pode usar) um hardware dedicado para isso, segue alguns exemplos práticos:</p>
<p><strong>Apache httpd:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">NameVirtualhost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">80</span>
<span style="color: #000000; font-weight: bold;">&lt;</span>VirtualHost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">80</span><span style="color: #000000; font-weight: bold;">&gt;</span>
    ServerName everlinux-homolog.com
    ServerAlias 200.24.12.34 10.10.23.53 10.10.23.56
    ServerAdmin suporte<span style="color: #000000; font-weight: bold;">@</span>everlinux.com
    ErrorLog <span style="color: #ff0000;">&quot;|/usr/sbin/rotatelogs /var/log/httpd/error_log.%Y%m%d 86400 -180&quot;</span>
    CustomLog <span style="color: #ff0000;">&quot;|/usr/sbin/rotatelogs /var/log/httpd/access_log.%Y%m%d 86400 -180&quot;</span> combined
&nbsp;
        <span style="color: #000000; font-weight: bold;">&lt;</span>Proxy balancer:<span style="color: #000000; font-weight: bold;">//</span>everhttp<span style="color: #000000; font-weight: bold;">&gt;</span>
          BalancerMember http:<span style="color: #000000; font-weight: bold;">//</span>10.10.23.53:<span style="color: #000000;">80</span><span style="color: #000000; font-weight: bold;">/</span> <span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">ping</span></span>=<span style="color: #000000;">10</span>
          BalancerMember http:<span style="color: #000000; font-weight: bold;">//</span>10.10.23.56:<span style="color: #000000;">80</span><span style="color: #000000; font-weight: bold;">/</span> <span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">ping</span></span>=<span style="color: #000000;">10</span>
        <span style="color: #000000; font-weight: bold;">&lt;/</span>Proxy<span style="color: #000000; font-weight: bold;">&gt;</span>
&nbsp;
ProxyPreserveHost on
ProxyPass <span style="color: #000000; font-weight: bold;">/</span> balancer:<span style="color: #000000; font-weight: bold;">//</span>everhttp<span style="color: #000000; font-weight: bold;">/</span>
ProxyPassReverse <span style="color: #000000; font-weight: bold;">/</span>oii balancer:<span style="color: #000000; font-weight: bold;">//</span>everhttp<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;/</span>VirtualHost<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><strong>Nginx</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">http <span style="color: #7a0874; font-weight: bold;">&#123;</span>
    include       mime.types;
    default_type  application<span style="color: #000000; font-weight: bold;">/</span>octet-stream;
    sendfile        on;
    keepalive_timeout  <span style="color: #000000;">50</span>;
&nbsp;
      upstream everbalance <span style="color: #7a0874; font-weight: bold;">&#123;</span>
         ip_hash;
         server 10.10.23.53 <span style="color: #007800;">max_fails</span>=<span style="color: #000000;">3</span> <span style="color: #007800;">fail_timeout</span>=30s;
         server 10.10.23.56 <span style="color: #007800;">max_fails</span>=<span style="color: #000000;">3</span> <span style="color: #007800;">fail_timeout</span>=30s;
         <span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
    server <span style="color: #7a0874; font-weight: bold;">&#123;</span>
         listen  202.34.52.24:<span style="color: #000000;">80</span>;
         server_name  everlinux-homolog.com;
         location <span style="color: #000000; font-weight: bold;">/</span>
           <span style="color: #7a0874; font-weight: bold;">&#123;</span>
            access_log   <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>nginx<span style="color: #000000; font-weight: bold;">/</span>hdig.log;
            proxy_pass   http:<span style="color: #000000; font-weight: bold;">//</span>everbalance;
            proxy_set_header Host <span style="color: #007800;">$host</span>;
           <span style="color: #7a0874; font-weight: bold;">&#125;</span>
         <span style="color: #7a0874; font-weight: bold;">&#125;</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>As linhas &#8220;ProxyPreserveHost on&#8221; (apache) e &#8220;proxy_set_header Host $host;&#8221; (nginx) são importantes caso sua aplicação trabalhe com o nome do domínio da URL para montar alguma coisa dinamicamente. Conteúdo estático geralmente não é necessário estas variáveis.</p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2010/01/19/balanceamento-de-carga-com-apache-e-nginx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guitar Hero on-line</title>
		<link>http://everlinux.com/blog/2009/12/29/guitar-hero-on-line</link>
		<comments>http://everlinux.com/blog/2009/12/29/guitar-hero-on-line#comments</comments>
		<pubDate>Tue, 29 Dec 2009 11:16:21 +0000</pubDate>
		<dc:creator>leandro298</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Diversão]]></category>
		<category><![CDATA[Jogos]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=987</guid>
		<description><![CDATA[O Guitar Master é mais uma versão do on-line do Guitar Hero. Fácil de jogar, para começar, você precisa escolher o nível de dificuldade. Logo em seguida, define que música e que guitarra deseja tocar. A partir daí é com você! Acompanhe as notas e bata seu próprio recorde!]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://everlinux.com/blog/wp-content/uploads/2009/12/guitar.jpg"><img class="size-medium wp-image-989 aligncenter" title="guitar" src="http://everlinux.com/blog/wp-content/uploads/2009/12/guitar-300x85.jpg" alt="" width="300" height="85" /></a></p>
<p>O <a href="http://www.kingjogos.com//jogos_online/guitar-hero/">Guitar Master</a> é mais uma versão do on-line do Guitar Hero.</p>
<p>Fácil de jogar, para começar, você precisa escolher o nível de dificuldade. Logo em seguida, define que música e que guitarra deseja tocar. A partir daí é com você! Acompanhe as notas e bata seu próprio recorde!</p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/12/29/guitar-hero-on-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Porque hoje é Sexta #21</title>
		<link>http://everlinux.com/blog/2009/12/25/porque-hoje-e-sexta-21</link>
		<comments>http://everlinux.com/blog/2009/12/25/porque-hoje-e-sexta-21#comments</comments>
		<pubDate>Fri, 25 Dec 2009 03:07:25 +0000</pubDate>
		<dc:creator>leandro298</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Diversão]]></category>
		<category><![CDATA[Sexta]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=981</guid>
		<description><![CDATA[Jamais diga uma mentira que não possa provar.]]></description>
			<content:encoded><![CDATA[<p>Jamais diga uma mentira que não possa provar.</p>
<p style="text-align: center;">
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09141.jpg"><img src="http://everlinux.com/sexta/six09/09141.jpg" alt="Porque hoje é sexta" width="562" height="458" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09142.jpg"><img src="http://everlinux.com/images/avatar_tux/christmas.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09143.jpg"><img src="http://everlinux.com/images/avatar_tux/noel.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09144.jpg"><img src="http://everlinux.com/images/avatar_tux/santaclaus.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09145.jpg"><img src="http://everlinux.com/images/avatar_tux/et_sa_lune.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09146.jpg"><img src="http://everlinux.com/images/avatar_tux/noel_postman.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09147.jpg"><img src="http://everlinux.com/images/avatar_tux/bouletux.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/12/25/porque-hoje-e-sexta-21/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everlinux adaptada para mobile</title>
		<link>http://everlinux.com/blog/2009/11/10/everlinux-adaptada-para-mobile</link>
		<comments>http://everlinux.com/blog/2009/11/10/everlinux-adaptada-para-mobile#comments</comments>
		<pubDate>Tue, 10 Nov 2009 17:02:57 +0000</pubDate>
		<dc:creator>Tiago Cruz</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=888</guid>
		<description><![CDATA[Senhores(as), Só para constar, agora você aproveitar de todas as (in)utilidades deste humilde blog através do seu celular, pois o plugin WPtouch irá formatar uma página levinha para você economizar tempo e dinheiro Não acredita? Instale o User Agent Switcher em seu Firefox e troque seu &#8216;Default User Agent&#8217; para iPhone =) See you!]]></description>
			<content:encoded><![CDATA[<p>Senhores(as),</p>
<p>Só para constar, agora você aproveitar de todas as (in)utilidades deste humilde blog através do seu celular, pois o plugin WPtouch irá formatar uma página levinha para você economizar tempo e dinheiro <img src='http://everlinux.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Não acredita? Instale o <a href="http://chrispederick.com/work/user-agent-switcher/">User Agent Switcher</a> em seu Firefox e troque seu &#8216;Default User Agent&#8217; para iPhone =)</p>
<p>See you!</p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/11/10/everlinux-adaptada-para-mobile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Porque hoje é Sexta #14</title>
		<link>http://everlinux.com/blog/2009/11/06/porque-hoje-e-sexta-14</link>
		<comments>http://everlinux.com/blog/2009/11/06/porque-hoje-e-sexta-14#comments</comments>
		<pubDate>Fri, 06 Nov 2009 13:44:31 +0000</pubDate>
		<dc:creator>leandro298</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Diversão]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Sexta]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=880</guid>
		<description><![CDATA[O Chiclete Ultraje a Rigor O chiclete que você mastiga não é igual ao meu O chiclete que você mastiga não é igual ao meu O chiclete que você mastiga não é igual ao meu O chiclete que você mastiga não é igual ao meu Enche a boca de ar Depois dá um assoprão Faz [...]]]></description>
			<content:encoded><![CDATA[<p><strong>O Chiclete<br />
<em><a href="http://www.ultraje.com.br/">Ultraje a Rigor</a></em></strong></p>
<p>O chiclete que você mastiga não é igual ao meu<br />
O chiclete que você mastiga não é igual ao meu<br />
O chiclete que você mastiga não é igual ao meu<br />
O chiclete que você mastiga não é igual ao meu</p>
<p>Enche a boca de ar<br />
Depois dá um assoprão<br />
Faz bem pro &#8220;seu&#8221; mané do bar<br />
Mas pra sua dentadura não</p>
<p>O chiclete que você mastiga não é igual ao meu<br />
O chiclete que você mastiga não é igual ao meu<br />
O chiclete que você mastiga não é igual ao meu<br />
O chiclete que você mastiga não é igual ao meu</p>
<p>O meu chiclete faz ploc<br />
O seu chiclete faz bum<br />
O meu chiclete faz ploc<br />
O seu chiclete faz bum</p>
<p><em>Bum bum bundão<br />
Bum bum bundão<br />
Bum bum bundão<br />
Bum bum bundão</em></p>
<p style="text-align: center;">
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09092.jpg"><img src="http://everlinux.com/sexta/six09/09092.jpg" alt="Porque hoje é sexta" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09093.jpg"><img src="http://everlinux.com/images/avatar_tux/batman_la-fouine-du-net_tux2.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09094.jpg"><img src="http://everlinux.com/images/avatar_tux/dragon-tux_gonz34_tux.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09095.jpg"><img src="http://everlinux.com/images/avatar_tux/krilin.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09096.jpg"><img src="http://everlinux.com/images/avatar_tux/naruto.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09097.jpg"><img src="http://everlinux.com/images/avatar_tux/sasuke.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09098.jpg"><img src="http://everlinux.com/images/avatar_tux/bleach_ichigo.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/11/06/porque-hoje-e-sexta-14/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Alta resolução no Diablo 2 com Expansão</title>
		<link>http://everlinux.com/blog/2009/10/26/alta-resolucao-no-diablo-2-com-expansao</link>
		<comments>http://everlinux.com/blog/2009/10/26/alta-resolucao-no-diablo-2-com-expansao#comments</comments>
		<pubDate>Mon, 26 Oct 2009 19:07:25 +0000</pubDate>
		<dc:creator>Carlos Mangini</dc:creator>
				<category><![CDATA[Diablo]]></category>
		<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Diversão]]></category>
		<category><![CDATA[Jogos]]></category>
		<category><![CDATA[Nerd]]></category>
		<category><![CDATA[Não-livre]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=856</guid>
		<description><![CDATA[Estava reunindo o pessoal do trabalho para uma jogatina inciando personagens da expansão à partir do zero. Tudo rolou bem bacana, com o fato que somente metade dos participantes compareceram para jogar. Pensando em incentivar a todos fiz uma pesquisa na internet sobre algumas melhorias que pudessem existir no jogo e descobri que existe a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://everlinux.com/blog/wp-content/uploads/2009/10/diablo2.jpg"><img src="http://everlinux.com/blog/wp-content/uploads/2009/10/diablo2-300x225.jpg" alt="diablo2" title="diablo2" width="300" height="225" class="alignleft size-medium wp-image-860" /></a>Estava reunindo o pessoal do trabalho para uma jogatina inciando personagens da expansão à partir do zero. Tudo rolou bem bacana, com o fato que somente metade dos participantes compareceram para jogar.</p>
<p>Pensando em incentivar a todos fiz uma pesquisa na internet sobre algumas melhorias que pudessem existir no jogo e descobri que existe a possibilidade de aumentar a resolução do game, sem gerar legs ou problemas que atrapalhem a jogabilidade.</p>
<p>Fiz os testes e sucesso!! O game ficou muito bom!! Com um campo de visão bem mais detalhado e agora é possível perceber a diferença de se utilizar &#8220;light radius&#8221;.<br />
.</p>
<p>Aqui, você consegue ter uma idéia de como ficará o game com a nova configuração:<br />
<p><a href="http://everlinux.com/blog/2009/10/26/alta-resolucao-no-diablo-2-com-expansao"><em>Click here to view the embedded video.</em></a></p></p>
<p>O processo de instalação é bem simples. <a href='http://everlinux.com/blog/wp-content/uploads/2009/10/D2MultiRes-v102.zip'>D2MultiRes-v102</a> aqui e depois é só extrair os arquivos para o diretório de instalação do Diablão (D2LOD que estou usando atualmente) e iniciar o game pelo novo executável chamado &#8220;D2MultiResGame.exe&#8221;.</p>
<p>Para finalizar e sair detonando tudo, vá em opções, resolução, Escolha a resolução desejada e boas batalhas contra o Senhor da Destruição!!!</p>
<p>8]</p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/10/26/alta-resolucao-no-diablo-2-com-expansao/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Porque hoje é Sexta #12</title>
		<link>http://everlinux.com/blog/2009/10/23/porque-hoje-e-sexta-12</link>
		<comments>http://everlinux.com/blog/2009/10/23/porque-hoje-e-sexta-12#comments</comments>
		<pubDate>Fri, 23 Oct 2009 04:12:06 +0000</pubDate>
		<dc:creator>leandro298</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Sexta]]></category>
		<category><![CDATA[Diversão]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=849</guid>
		<description><![CDATA[Quem tem azar é azarado e quem tem sorte é sorteiro!]]></description>
			<content:encoded><![CDATA[<p>Quem tem azar é azarado e quem tem sorte é sorteiro!</p>
<p style="text-align: center;">
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09078.jpg"><img src="http://everlinux.com/sexta/six09/09078.jpg" alt="Porque hoje é sexta" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09079.jpg"><img src="http://everlinux.com/images/avatar_tux/hockey-tux_eikichi-onizuka_tux2.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09080.jpg"><img src="http://everlinux.com/images/avatar_tux/holiday-tux_stouffr_tux2.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09081.jpg"><img src="http://everlinux.com/images/avatar_tux/hypnotux_web-fire_tux2.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09082.jpg"><img src="http://everlinux.com/images/avatar_tux/imhotux_blackpearl_tux2.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09083.jpg"><img src="http://everlinux.com/images/avatar_tux/indestructux_overlord59_tux.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
<p><a title="Porque hoje é sexta" rel="lightbox[sexta]" href="http://everlinux.com/sexta/six09/09084.jpg"><img src="http://everlinux.com/images/avatar_tux/indiana-tux_fcys14_tux.png" alt="Porque hoje é sexta" width="80" height="87" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/10/23/porque-hoje-e-sexta-12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retoque Digital</title>
		<link>http://everlinux.com/blog/2009/09/27/retoque-digital</link>
		<comments>http://everlinux.com/blog/2009/09/27/retoque-digital#comments</comments>
		<pubDate>Mon, 28 Sep 2009 01:46:16 +0000</pubDate>
		<dc:creator>leandro298</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Diversão]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=812</guid>
		<description><![CDATA[Calma pessoal, hoje ainda não é sexta! Então não se empolgem. Há uns dias atrás fiz um post falando sobre o GIMP, que é junto com Photoshop um das poderosas ferramentas de editorações e retoques em imagens. Então clique na imagem abaixo e veja alguns milagres feitos por essas ferramentas. [ 1 ] [ 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Calma pessoal, hoje ainda não é sexta! Então não se empolgem.<br />
Há uns dias atrás fiz um post falando sobre o <a href="http://everlinux.com/blog/2009/09/14/the-gimp-gnu-image-manipulation-program">GIMP</a>, que é junto com Photoshop um das poderosas ferramentas de editorações e retoques em imagens.<br />
Então clique na imagem abaixo e veja alguns milagres feitos por essas ferramentas.</p>
<p style="text-align: center;"><a title="Retoque Digital" rel="lightbox[retoque]" href="http://everlinux.com/sexta/retoque0.jpg"><img src="http://everlinux.com/sexta/retoque0.jpg" alt="Retoque Digital" /></a></p>
<p><a title="Retoque Digital" rel="lightbox[retoque]" href="http://everlinux.com/sexta/retoque1.jpg">[ 1 ] </a><br />
<a title="Retoque Digital" rel="lightbox[retoque]" href="http://everlinux.com/sexta/retoque2.jpg">[ 2 ] </a><br />
<a title="Retoque Digital" rel="lightbox[retoque]" href="http://everlinux.com/sexta/retoque3.jpg">[ 3 ] </a><br />
<a title="Retoque Digital" rel="lightbox[retoque]" href="http://everlinux.com/sexta/retoque4.jpg">[ 4 ] </a><br />
<a title="Retoque Digital" rel="lightbox[retoque]" href="http://everlinux.com/sexta/retoque5.jpg">[ 5 ] </a></p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/09/27/retoque-digital/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Novas temporadas de sua série preferida</title>
		<link>http://everlinux.com/blog/2009/09/22/novas-temporadas-de-sua-serie-preferida</link>
		<comments>http://everlinux.com/blog/2009/09/22/novas-temporadas-de-sua-serie-preferida#comments</comments>
		<pubDate>Wed, 23 Sep 2009 00:22:31 +0000</pubDate>
		<dc:creator>Tiago Cruz</dc:creator>
				<category><![CDATA[Dicas]]></category>
		<category><![CDATA[Diversão]]></category>
		<category><![CDATA[Series TV]]></category>
		<category><![CDATA[Nerd]]></category>
		<category><![CDATA[Series]]></category>

		<guid isPermaLink="false">http://everlinux.com/blog/?p=801</guid>
		<description><![CDATA[Se você é tão desavisado quanto eu, sabia que suas séries prediletas já voltaram de férias em novíssimas temporadas, como: Dexter &#8211; 4ª Temporada Fringe &#8211; 2ª Temporada House &#8211; 6ª Temporada Heroes &#8211; 4ª Temporada The Big Bang Theory &#8211; 3ª Temporada Two and a Half Men &#8211; 7ª Temporada Corra e garanta logo [...]]]></description>
			<content:encoded><![CDATA[<p>Se você é tão desavisado quanto eu, sabia que suas séries prediletas já voltaram de férias em novíssimas temporadas, como:</p>
<ul>
Dexter &#8211; 4ª Temporada<br />
Fringe &#8211; 2ª Temporada<br />
House &#8211; 6ª Temporada<br />
Heroes &#8211; 4ª Temporada<br />
The Big Bang Theory &#8211; 3ª Temporada<br />
Two and a Half Men &#8211; 7ª Temporada</ul>
<p>Corra e garanta logo o seu, hahahhaha <img src='http://everlinux.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://everlinux.com/blog/2009/09/22/novas-temporadas-de-sua-serie-preferida/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  everlinux.com/blog/category/dicas/feed ) in 0.88473 seconds, on Jul 30th, 2010 at 8:46 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Jul 30th, 2010 at 9:46 pm UTC -->