<?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>pra não esquecer...</title>
	<atom:link href="http://www.republicavirtual.com.br/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.republicavirtual.com.br/blog</link>
	<description></description>
	<lastBuildDate>Mon, 28 Nov 2011 14:31:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>285 livros grátis sobre internet, redes sociais, comunicação, TICs, educação, SEO, jornalismo e cultura digital &#124; TecnoArteNews</title>
		<link>http://www.republicavirtual.com.br/blog/2011/11/03/285-livros-gratis-sobre-internet-redes-sociais-comunicacao-tics-educacao-seo-jornalismo-e-cultura-digital-tecnoartenews/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/11/03/285-livros-gratis-sobre-internet-redes-sociais-comunicacao-tics-educacao-seo-jornalismo-e-cultura-digital-tecnoartenews/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 00:49:36 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/11/03/285-livros-gratis-sobre-internet-redes-sociais-comunicacao-tics-educacao-seo-jornalismo-e-cultura-digital-tecnoartenews/</guid>
		<description><![CDATA[http://www.tecnoartenews.com/285-livros-gratis-sobre-internet-redes-sociais-comunicacao-tics-educacao-seo-jornalismo-e-cultura-di Dica do bruno]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tecnoartenews.com/285-livros-gratis-sobre-internet-redes-sociais-comunicacao-tics-educacao-seo-jornalismo-e-cultura-di">http://www.tecnoartenews.com/285-livros-gratis-sobre-internet-redes-sociais-comunicacao-tics-educacao-seo-jornalismo-e-cultura-di</a></p>
<p>Dica do bruno</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/11/03/285-livros-gratis-sobre-internet-redes-sociais-comunicacao-tics-educacao-seo-jornalismo-e-cultura-digital-tecnoartenews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux ht, 2 proc, cpu affinit</title>
		<link>http://www.republicavirtual.com.br/blog/2011/11/03/linux-ht-2-proc-cpu-affinit/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/11/03/linux-ht-2-proc-cpu-affinit/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 11:13:15 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=757</guid>
		<description><![CDATA[In linux Servers there is always difficulty in finding the server is multi-processor, multi-core or Hyperthreading is enabled or not. Let&#8217;s check this, but first keep in mind the following points: 1) Physical ID = Number assigned to each Processor on MotherBoard 2) Sibling ID = Number of logical processor provided by each Physical Processor [...]]]></description>
			<content:encoded><![CDATA[<p>In linux Servers there is always difficulty in finding the server is multi-processor, multi-core or Hyperthreading is enabled or not.</p>
<p>Let&#8217;s check this, but first keep in mind the following points:</p>
<p>1) Physical ID = Number assigned to each Processor on MotherBoard  </p>
<p>2) Sibling ID =  Number of logical processor provided by each Physical Processor</p>
<p>3) Core ID  = Number of core in the Physical Processor</p>
<p>Note: If core Id is equal to sibling ID it means there is no Hyperthreading</p>
<p>If sibling ID is double that of core ID it supports Hyperthreading</p>
<p>Command:  cat /proc/cpuinfo</p>
<p>Case 1:</p>
<p>Single-processor, Single-core, HT</p>
<p>processor       0 1<br />
physical id     0 0<br />
siblings        2 2<br />
core id         0 0<br />
cpu cores       1 1</p>
<p>The cpu cores value is &#8220;1&#8243;, so this system uses single-core processors.<br />
The cpu cores value does not match the siblings value, so this system has hyperthreading.<br />
There is one physical id listed, so this is a single-processor, single-core system with hyperthreading.</p>
<p>Case 2:</p>
<p>Single-processor, Dual-core, non-HT</p>
<p>processor       0 1<br />
physical id     0 0<br />
siblings        2 2<br />
core id         0 1<br />
cpu cores       2 2</p>
<p>The cpu cores value is &#8220;2&#8243; so the system uses dual-core processors.<br />
The cpu cores value matches the siblings value, so this system does not have hyperthreading.<br />
There is one physical id listed, so this is a single-processor, dual-core system without hyperthreading.</p>
<p>Case 3:</p>
<p>Dual-processor, Dual-core, HT</p>
<p>processor       0 1 2 3 4 5 6 7<br />
physical id     0 0 0 0 1 1 1 1<br />
siblings        4 4 4 4 4 4 4 4<br />
core id         0 0 1 1 0 0 1 1<br />
cpu cores       2 2 2 2 2 2 2 2</p>
<p>The cpu cores value is &#8220;2&#8243; so this system uses dual-core processors.<br />
The cpu cores value does not match the siblings value, so this system has hyperthreading.<br />
There are two physical IDs listed, so this is a dual-processor, dual-core machine with hyperthreading</p>
<p>Case 4:</p>
<p>Dual-processor, Quad-core, non-HT</p>
<p>processor       0 1 2 3 4 5 6 7<br />
physical id     0 1 0 1 0 1 0 1<br />
siblings        4 4 4 4 4 4 4 4<br />
core id         0 0 1 1 2 2 3 3<br />
cpu cores       4 4 4 4 4 4 4 4</p>
<p>The cpu cores value is &#8220;4&#8243;, so the system uses quad-core processors.<br />
The cpu cores value matches the siblings value, so this system does not have hyperthreading.<br />
There are two physical IDs listed, so this is a dual-processor, quad-core system without hyperthreading</p>
<p>Case 5:</p>
<p>Dual-processor, Quad-core, HT</p>
<p>processor       0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15<br />
physical id     0  0  0  0  0  0  0  0  1  1  1  1  1  1  1  1<br />
siblings        8  8  8  8  8  8  8  8  8  8  8  8  8  8  8  8<br />
core id         0  0  1  1  2  2  3  3  0  0  1  1  2  2  3  3<br />
cpu cores       4  4  4  4  4  4  4  4  4  4  4  4  4  4  4  4</p>
<p>The cpu cores value is &#8220;4&#8243;, so the system uses quad-core processors.<br />
The cpu cores value does not match the siblings value, so this system has hyperthreading.<br />
There are two physical IDs listed, so this is a dual-processor, quad-core system with hyperthreading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/11/03/linux-ht-2-proc-cpu-affinit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wap &#8211; wireless so para routers &#8211; dd-wrt.com/</title>
		<link>http://www.republicavirtual.com.br/blog/2011/10/24/wap-wireless-so-para-routers-dd-wrt-com/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/10/24/wap-wireless-so-para-routers-dd-wrt-com/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 14:22:15 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=751</guid>
		<description><![CDATA[http://www.dd-wrt.com/]]></description>
			<content:encoded><![CDATA[<p>http://www.dd-wrt.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/10/24/wap-wireless-so-para-routers-dd-wrt-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>configuração de bond / link agregation / lacp</title>
		<link>http://www.republicavirtual.com.br/blog/2011/10/19/configuracao-de-bond-link-agregation-lacp/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/10/19/configuracao-de-bond-link-agregation-lacp/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 01:55:13 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=752</guid>
		<description><![CDATA[em tudo que é distro e alguns hw http://backdrift.org/howtonetworkbonding muito bom]]></description>
			<content:encoded><![CDATA[<p>em tudo que é distro e alguns hw</p>
<p>http://backdrift.org/howtonetworkbonding</p>
<p>muito bom</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/10/19/configuracao-de-bond-link-agregation-lacp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ser nerd é</title>
		<link>http://www.republicavirtual.com.br/blog/2011/09/17/ser-nerd-e/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/09/17/ser-nerd-e/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 16:33:05 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/09/17/ser-nerd-e/</guid>
		<description><![CDATA[Ir para praia e levar todos cacarecos digitais e um servidor para estudar oracle rac]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-17-13.26.02.jpg" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-17-13.25.48.jpg" /></p>
<p>Ir para praia e levar todos cacarecos digitais e um servidor para estudar oracle rac</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/09/17/ser-nerd-e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ringtones para nerds</title>
		<link>http://www.republicavirtual.com.br/blog/2011/09/12/ringtones-para-nerds/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/09/12/ringtones-para-nerds/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 03:22:25 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/09/12/ringtones-para-nerds/</guid>
		<description><![CDATA[http://www.maximumpc.com/article/features/20_musthave_geek_ringtones_and_text_message_alerts_and_10_avoid?page=0%2C0]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.maximumpc.com/article/features/20_musthave_geek_ringtones_and_text_message_alerts_and_10_avoid?page=0%2C0">http://www.maximumpc.com/article/features/20_musthave_geek_ringtones_and_text_message_alerts_and_10_avoid?page=0%2C0</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/09/12/ringtones-para-nerds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>77 milhoes</title>
		<link>http://www.republicavirtual.com.br/blog/2011/09/11/77-milhoes/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/09/11/77-milhoes/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 00:00:10 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/09/11/77-milhoes/</guid>
		<description><![CDATA[http://idgnow.uol.com.br/internet/2011/09/11/ibope-confirma-alcance-do-facebook-foi-maior-que-o-do-orkut-em-agosto/]]></description>
			<content:encoded><![CDATA[<p><a href="http://idgnow.uol.com.br/internet/2011/09/11/ibope-confirma-alcance-do-facebook-foi-maior-que-o-do-orkut-em-agosto/">http://idgnow.uol.com.br/internet/2011/09/11/ibope-confirma-alcance-do-facebook-foi-maior-que-o-do-orkut-em-agosto/</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/09/11/77-milhoes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Galeria da fama de segurança do Google – Empresa</title>
		<link>http://www.republicavirtual.com.br/blog/2011/09/11/galeria-da-fama-de-seguranca-do-google-%e2%80%93-empresa/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/09/11/galeria-da-fama-de-seguranca-do-google-%e2%80%93-empresa/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 18:01:41 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/09/11/galeria-da-fama-de-seguranca-do-google-%e2%80%93-empresa/</guid>
		<description><![CDATA[http://www.google.com/about/corporate/company/halloffame.html]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/about/corporate/company/halloffame.html">http://www.google.com/about/corporate/company/halloffame.html</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/09/11/galeria-da-fama-de-seguranca-do-google-%e2%80%93-empresa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>N2 king</title>
		<link>http://www.republicavirtual.com.br/blog/2011/09/09/n2-king/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/09/09/n2-king/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 15:28:23 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/09/09/n2-king/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-09-11.42.21.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/09/09/n2-king/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Niver kinghost</title>
		<link>http://www.republicavirtual.com.br/blog/2011/09/09/niver-kinghost/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/09/09/niver-kinghost/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 15:26:24 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/09/09/niver-kinghost/</guid>
		<description><![CDATA[Andreia organizando a festa]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-09-12.23.09.jpg" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-1315581965277.jpg" /></p>
<p>Andreia organizando a festa</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/09/09/niver-kinghost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aniversario kinghost</title>
		<link>http://www.republicavirtual.com.br/blog/2011/09/09/aniversario-kinghost/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/09/09/aniversario-kinghost/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 14:48:58 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>
		<category><![CDATA[CYBERWEB]]></category>
		<category><![CDATA[kinghost]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/2011/09/09/aniversario-kinghost/</guid>
		<description><![CDATA[Grande festa]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-09-11.41.37.jpg" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-09-11.07.04.jpg" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-09-11.13.46.jpg" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-09-11.02.59.jpg" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.republicavirtual.com.br/blog/wp-content/uploads/2011/09/wpid-2011-09-09-11.04.40.jpg" /></p>
<p>Grande festa</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/09/09/aniversario-kinghost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bpm</title>
		<link>http://www.republicavirtual.com.br/blog/2011/08/15/bpm/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/08/15/bpm/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 21:16:00 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=722</guid>
		<description><![CDATA[Business Process Management (BPM)]]></description>
			<content:encoded><![CDATA[<p>Business Process Management (BPM)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/08/15/bpm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>aeuhaeuhe toma fdp</title>
		<link>http://www.republicavirtual.com.br/blog/2011/08/10/aeuhaeuhe-toma-fdp/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/08/10/aeuhaeuhe-toma-fdp/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 02:38:21 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=725</guid>
		<description><![CDATA[história é a seguinte: um cara, alterado, vinha em alta velocidade pela rua de um condomínio em Pinhais (PR), quando teve o carro danificado por uma lombada estrategicamente colocada no local. Revoltado, resolveu gritar, xingar porteiros e chamar moradores para a briga]]></description>
			<content:encoded><![CDATA[<p>história é a seguinte: um cara, alterado, vinha em alta velocidade pela rua de um condomínio em Pinhais (PR), quando teve o carro danificado por uma lombada estrategicamente colocada no local. Revoltado, resolveu gritar, xingar porteiros e chamar moradores para a briga<br />
<iframe width="640" height="390" src="http://www.youtube.com/embed/CsIkSaG54ww" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/08/10/aeuhaeuhe-toma-fdp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>esxi instalado no usb</title>
		<link>http://www.republicavirtual.com.br/blog/2011/08/10/esxi-instalado-no-usb/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/08/10/esxi-instalado-no-usb/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 16:13:45 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=723</guid>
		<description><![CDATA[install &#8211;firstdisk=usb-storage &#8211;overwritevmfs ou install &#8211;firstdisk=usb-storage,hpsa,local &#8211;overwritevmfs]]></description>
			<content:encoded><![CDATA[<p>install &#8211;firstdisk=usb-storage &#8211;overwritevmfs<br />
ou<br />
install &#8211;firstdisk=usb-storage,hpsa,local &#8211;overwritevmfs</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/08/10/esxi-instalado-no-usb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>virtualizando o esxi dentro esxi</title>
		<link>http://www.republicavirtual.com.br/blog/2011/08/10/virtualizando-o-esxi-dentro-esxi/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/08/10/virtualizando-o-esxi-dentro-esxi/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 16:12:44 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=718</guid>
		<description><![CDATA[* Shut down the virtual ESX VM * Click Edit Settings * Click the Options tab * Click Advanced / General / Configuration Parameters… * Click Add Row * For the Name/Value enter: monitor_control.restrict_backdoor / TRUE]]></description>
			<content:encoded><![CDATA[<p>    * Shut down the virtual ESX VM<br />
    * Click Edit Settings<br />
    * Click the Options tab<br />
    * Click Advanced / General / Configuration Parameters…<br />
    * Click Add Row<br />
    * For the Name/Value enter: monitor_control.restrict_backdoor / TRUE</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/08/10/virtualizando-o-esxi-dentro-esxi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>parser html</title>
		<link>http://www.republicavirtual.com.br/blog/2011/07/27/parser-html/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/07/27/parser-html/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 13:45:19 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=719</guid>
		<description><![CDATA[http://www.crummy.com/software/BeautifulSoup/]]></description>
			<content:encoded><![CDATA[<p>http://www.crummy.com/software/BeautifulSoup/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/07/27/parser-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>p/ nerds</title>
		<link>http://www.republicavirtual.com.br/blog/2011/07/27/p-nerds/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/07/27/p-nerds/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 13:34:13 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=715</guid>
		<description><![CDATA[ele chamou de /dev/null, mas está mais para /dev/rand heauhaeuhae http://www.portalaces.com/dev/]]></description>
			<content:encoded><![CDATA[<p>ele chamou de /dev/null, mas está mais para /dev/rand heauhaeuhae</p>
<p>http://www.portalaces.com/dev/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/07/27/p-nerds/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>kingamigos</title>
		<link>http://www.republicavirtual.com.br/blog/2011/07/20/kingamigos/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/07/20/kingamigos/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 18:07:50 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=713</guid>
		<description><![CDATA[ação com os colaboradores da kinghost! =)]]></description>
			<content:encoded><![CDATA[<p>ação com os colaboradores da kinghost! =)</p>
<p><iframe src="http://www.youtube.com/embed/SjwHWijf7aU" frameborder="0" width="560" height="349"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/07/20/kingamigos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>thunderbird muito lento</title>
		<link>http://www.republicavirtual.com.br/blog/2011/07/06/thunderbird-muito-lento/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/07/06/thunderbird-muito-lento/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 01:57:44 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=711</guid>
		<description><![CDATA[depois de usar algum tempo o thunderbird vai ficando cada vez mais lento&#8230; ficava muito irritado, procurando alguma saída, mas nada funcionava. Achei numa noite ThunderFix, ficou muiiiito mais rápido. removendo uns .msf que ficam no profile.]]></description>
			<content:encoded><![CDATA[<p>depois de usar algum tempo o thunderbird vai ficando cada vez mais lento&#8230;</p>
<p>ficava muito irritado, procurando alguma saída, mas nada funcionava.</p>
<p>Achei numa noite ThunderFix, ficou muiiiito mais rápido.</p>
<p>removendo uns .msf que ficam no profile.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/07/06/thunderbird-muito-lento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wireless repeater</title>
		<link>http://www.republicavirtual.com.br/blog/2011/07/03/wireless-repeater/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/07/03/wireless-repeater/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 03:07:25 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=709</guid>
		<description><![CDATA[wds wireless]]></description>
			<content:encoded><![CDATA[<p>wds wireless</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/07/03/wireless-repeater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>md5 virus search</title>
		<link>http://www.republicavirtual.com.br/blog/2011/07/02/md5-virus-search/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/07/02/md5-virus-search/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 02:12:57 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=707</guid>
		<description><![CDATA[http://www.hackerwatch.org/library/app/description/pt-br/0/1105.htm?md5=]]></description>
			<content:encoded><![CDATA[<p>http://www.hackerwatch.org/library/app/description/pt-br/0/1105.htm?md5=</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/07/02/md5-virus-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>repositório de scripts esx</title>
		<link>http://www.republicavirtual.com.br/blog/2011/06/30/repositorio-de-scripts-esx/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/06/30/repositorio-de-scripts-esx/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 16:34:46 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=705</guid>
		<description><![CDATA[http://communities.vmware.com/community/vmtn/server/vi?view=documents#/?per_page=50]]></description>
			<content:encoded><![CDATA[<p>http://communities.vmware.com/community/vmtn/server/vi?view=documents#/?per_page=50</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/06/30/repositorio-de-scripts-esx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vmktree</title>
		<link>http://www.republicavirtual.com.br/blog/2011/06/30/vmktree/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/06/30/vmktree/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 16:22:06 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=703</guid>
		<description><![CDATA[monitoramento esx http://vmktree.org/]]></description>
			<content:encoded><![CDATA[<p>monitoramento esx</p>
<p>http://vmktree.org/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/06/30/vmktree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>clone</title>
		<link>http://www.republicavirtual.com.br/blog/2011/06/30/clone/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/06/30/clone/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 15:22:17 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=701</guid>
		<description><![CDATA[Friday, May 20, 2011 Cloning virtual machine on vmware esx using vmware-cmd Below are the steps: 1. List down all the virtual machines that you have # /usr/bin/vmware-cmd -l /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-1/server-1.vmx /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-2/server-2.vmx /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-3/server-3.vmx 2. Shutdown the machine that you are going to clone. Let say the machine is server-1 # /usr/bin/vmware-cmd /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-1/server-1.vmx stop 3. Use hard [...]]]></description>
			<content:encoded><![CDATA[<p>Friday, May 20, 2011<br />
Cloning virtual machine on vmware esx using vmware-cmd</p>
<p>Below are the steps:</p>
<p>1. List down all the virtual machines that you have</p>
<p># /usr/bin/vmware-cmd -l<br />
/vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-1/server-1.vmx<br />
/vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-2/server-2.vmx<br />
/vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-3/server-3.vmx</p>
<p>2. Shutdown the machine that you are going to clone. Let say the machine is server-1</p>
<p># /usr/bin/vmware-cmd /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-1/server-1.vmx stop</p>
<p>3. Use hard stop if you cannot stop it using above command</p>
<p># /usr/bin/vmware-cmd /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-1/server-1.vmx stop hard</p>
<p>4. Make sure the vm is shutdown by viewing the state</p>
<p># /usr/bin/vmware-cmd /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-1/server-1.vmx getstate</p>
<p>5. Copy the whole directory</p>
<p># cp /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/server-1/ /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/newserver/</p>
<p>6. Once done, rename all the files to new name</p>
<p># rename server-1 newserver /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/newserver/*</p>
<p>7. Change all occurrence of &#8220;server-1&#8243; to &#8220;newserver&#8221; in .vmx, .vmdk and .vmxf</p>
<p># cd /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/newserver/<br />
# sed -i &#8216;s/server-1/newserver/g&#8217; {newserver.vmdk,newserver.vmx,newserver.vmxf}</p>
<p>8. Edit newserver.vmx file and remove below lines</p>
<p>ethernet0.generatedAddress = &#8220;&#8230;..&#8221;<br />
ethernet0.generatedAddressOffset = &#8220;&#8230;..&#8221;<br />
uuid.location = &#8220;&#8230;..&#8221;<br />
uuid.bios = &#8220;&#8230;..&#8221;</p>
<p>9. Add below line to newserver.vmx</p>
<p>uuid.action = &#8220;keep&#8221;</p>
<p>10. Register your newly cloned virtual machine. Please use the full path to register as below</p>
<p># vmware-cmd -s register /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/newserver/newserver.vmx</p>
<p>11. Start your new vm after registration.</p>
<p># /usr/bin/vmware-cmd /vmfs/volumes/47971de9-34657d96-8ac4-001d09068c0c/newserver/newserver.vmx start</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/06/30/clone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>segurança</title>
		<link>http://www.republicavirtual.com.br/blog/2011/06/27/seguranca/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/06/27/seguranca/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 15:58:40 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=698</guid>
		<description><![CDATA[&#8220;The Suricata Engine is an Open Source Next Generation Intrusion Detection and Prevention Engine&#8221; http://www.openinfosecfoundation.org/index.php/download-suricata PArece interessante a ferramenta: http://www.ossec.net/main/getting-started-with-ossec Pelo que vi faz coisas como detecção de rootkit, bloqueio de webscanners, bloqueio contra tentativas de intrusao repetitivas, logs de alterações de arquivos, etc. http://blog.alexos.com.br/?p=2650&#038;lang=pt-br http://blog.alexos.com.br/?p=2625&#038;lang=pt-br]]></description>
			<content:encoded><![CDATA[<p>&#8220;The Suricata Engine is an Open Source Next Generation Intrusion Detection and Prevention Engine&#8221;</p>
<p>http://www.openinfosecfoundation.org/index.php/download-suricata</p>
<p>PArece interessante a ferramenta:</p>
<p>http://www.ossec.net/main/getting-started-with-ossec</p>
<p>Pelo que vi faz coisas como detecção de rootkit, bloqueio de webscanners, bloqueio contra tentativas de intrusao repetitivas, logs de alterações de arquivos, etc.</p>
<p>http://blog.alexos.com.br/?p=2650&#038;lang=pt-br</p>
<p>http://blog.alexos.com.br/?p=2625&#038;lang=pt-br</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/06/27/seguranca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux, informações sobre falhas em disco</title>
		<link>http://www.republicavirtual.com.br/blog/2011/06/22/linux-informacoes-sobre-falhas-em-disco/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/06/22/linux-informacoes-sobre-falhas-em-disco/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 13:37:59 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=695</guid>
		<description><![CDATA[hdparm smartctl &#8211;all /dev/sda]]></description>
			<content:encoded><![CDATA[<p>hdparm<br />
smartctl &#8211;all /dev/sda</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/06/22/linux-informacoes-sobre-falhas-em-disco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>random em shell script</title>
		<link>http://www.republicavirtual.com.br/blog/2011/06/17/random-em-shell-script/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/06/17/random-em-shell-script/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 12:26:29 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=691</guid>
		<description><![CDATA[echo &#8220;$((RANDOM % 60))&#8221; dica do #cifali]]></description>
			<content:encoded><![CDATA[<p>echo &#8220;$((RANDOM % 60))&#8221;</p>
<p>dica do #cifali</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/06/17/random-em-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>expressões regulares</title>
		<link>http://www.republicavirtual.com.br/blog/2011/06/07/expressoes-regulares/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/06/07/expressoes-regulares/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 17:16:05 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=686</guid>
		<description><![CDATA[http://www.spaweditor.com/scripts/regex/index.php dica do braz]]></description>
			<content:encoded><![CDATA[<p>http://www.spaweditor.com/scripts/regex/index.php</p>
<p>dica do braz</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/06/07/expressoes-regulares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gerenciando guest por ssh/console esxi</title>
		<link>http://www.republicavirtual.com.br/blog/2011/05/17/gerenciando-guest-por-sshconsole-esxi/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/05/17/gerenciando-guest-por-sshconsole-esxi/#comments</comments>
		<pubDate>Tue, 17 May 2011 08:10:51 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[vmware]]></category>
		<category><![CDATA[esxi]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=683</guid>
		<description><![CDATA[# vim-cmd vmsvc/getallvms # vim-cmd vmsvc/power.getstate 624 # vim-cmd vmsvc/power.on 624]]></description>
			<content:encoded><![CDATA[<p># vim-cmd vmsvc/getallvms<br />
# vim-cmd vmsvc/power.getstate 624<br />
# vim-cmd vmsvc/power.on 624</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/05/17/gerenciando-guest-por-sshconsole-esxi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>esxi versions</title>
		<link>http://www.republicavirtual.com.br/blog/2011/05/03/esxi-versions/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/05/03/esxi-versions/#comments</comments>
		<pubDate>Tue, 03 May 2011 16:45:02 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[vmware]]></category>
		<category><![CDATA[esxi]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=681</guid>
		<description><![CDATA[ESXi, 4.0.0, 208167 (ESXi 4.0 update 1) ESXi, 4.1.0, 260247 (ESXi 4.1) ESXi, 4.1.0, 348481 (ESXi 4.1 update 1)]]></description>
			<content:encoded><![CDATA[<p>ESXi, 4.0.0, 208167 (ESXi 4.0 update 1)</p>
<p>ESXi, 4.1.0, 260247 (ESXi 4.1)<br />
ESXi, 4.1.0, 348481 (ESXi 4.1 update 1)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/05/03/esxi-versions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ESXi &#8211; 4.1 to 4.1 update1</title>
		<link>http://www.republicavirtual.com.br/blog/2011/05/03/esxi-4-1-to-4-1-update1/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/05/03/esxi-4-1-to-4-1-update1/#comments</comments>
		<pubDate>Tue, 03 May 2011 14:07:36 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[vmware]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=678</guid>
		<description><![CDATA[entrar em modo de manutenção e: vihostupdate.pl &#8211;server (host name/IP address) &#8211;username (username) &#8211;password (senha) -i -b (location of the ESXi upgrade ZIP bundle) -B ESXi410-GA-esxupdate vihostupdate.pl &#8211;server (host name/IP address) &#8211;username (username) &#8211;password (senha) -i -b (location of the ESXi upgrade ZIP bundle) -B ESXi410-GA vihostupdate.pl &#8211;server (host name/IP address) &#8211;username (username) &#8211;password (senha) [...]]]></description>
			<content:encoded><![CDATA[<p>entrar em modo de manutenção e:</p>
<p>vihostupdate.pl &#8211;server (host name/IP address) &#8211;username (username) &#8211;password (senha) -i -b (location of the ESXi upgrade ZIP bundle) -B ESXi410-GA-esxupdate<br />
vihostupdate.pl &#8211;server (host name/IP address) &#8211;username (username) &#8211;password (senha) -i -b (location of the ESXi upgrade ZIP bundle) -B ESXi410-GA<br />
vihostupdate.pl &#8211;server (host name/IP address) &#8211;username (username) &#8211;password (senha) &#8211;query</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/05/03/esxi-4-1-to-4-1-update1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tcpdump</title>
		<link>http://www.republicavirtual.com.br/blog/2011/04/19/tcpdump/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/04/19/tcpdump/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 18:51:00 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=675</guid>
		<description><![CDATA[tcpdump -i %ETH% -n host %IP%]]></description>
			<content:encoded><![CDATA[<p>tcpdump -i %ETH% -n host %IP%</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/04/19/tcpdump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql performance &#8211; MaatKit</title>
		<link>http://www.republicavirtual.com.br/blog/2011/03/29/mysql-performance-maatkit/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/03/29/mysql-performance-maatkit/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 15:58:04 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[tuning]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=673</guid>
		<description><![CDATA[http://www.petefreitag.com/item/724.cfm included in Maatkit: * mk-archiver Archive rows from a MySQL table into another table or a file. * mk-audit Analyze, summarize and report on MySQL config, schema and operation * mk-checksum-filter Filter checksums from mk-table-checksum. * mk-deadlock-logger Extract and log MySQL deadlock information. * mk-duplicate-key-checker Find duplicate indexes and foreign keys on MySQL tables. [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.petefreitag.com/item/724.cfm</p>
<p>included in Maatkit:</p>
<p>    * mk-archiver Archive rows from a MySQL table into another table or a file.<br />
    * mk-audit Analyze, summarize and report on MySQL config, schema and operation<br />
    * mk-checksum-filter Filter checksums from mk-table-checksum.<br />
    * mk-deadlock-logger Extract and log MySQL deadlock information.<br />
    * mk-duplicate-key-checker Find duplicate indexes and foreign keys on MySQL tables.<br />
    * mk-fifo-split Split files and pipe lines to a fifo without really splitting.<br />
    * mk-find Find MySQL tables and execute actions, like GNU find.<br />
    * mk-heartbeat Monitor MySQL replication delay.<br />
    * mk-kill Kill MySQL queries that match certain criteria.<br />
    * mk-loadavg Watch MySQL load and take action when it gets too high.<br />
    * mk-log-player Split and play MySQL slow logs.<br />
    * mk-parallel-dump Dump sets of MySQL tables in parallel.<br />
    * mk-parallel-restore Load files into MySQL in parallel.<br />
    * mk-profile-compact Compact the output from mk-query-profiler.<br />
    * mk-query-digest Parses logs and more. Analyze, transform, filter, review and report on queries.<br />
    * mk-query-profiler Execute SQL statements and print statistics, or measure activity caused by other processes.<br />
    * mk-show-grants Canonicalize and print MySQL grants so you can effectively replicate, compare and version-control them.<br />
    * mk-slave-delay Make a MySQL slave server lag behind its master.<br />
    * mk-slave-find Find and print replication hierarchy tree of MySQL slaves.<br />
    * mk-slave-move Move a MySQL slave around in the replication hierarchy.<br />
    * mk-slave-prefetch Pipeline relay logs on a MySQL slave to pre-warm caches.<br />
    * mk-slave-restart Watch and restart MySQL replication after errors.<br />
    * mk-table-checksum Perform an online replication consistency check, or checksum MySQL tables efficiently on one or many servers.<br />
    * mk-table-sync Synchronize MySQL tables efficiently.<br />
    * mk-upgrade Execute SQL statements against two MySQL servers and compare the results.<br />
    * mk-visual-explain Format EXPLAIN output as a tree.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/03/29/mysql-performance-maatkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vmware tools centos 5.5</title>
		<link>http://www.republicavirtual.com.br/blog/2011/02/16/vmware-tools-centos-5-5/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/02/16/vmware-tools-centos-5-5/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 13:22:34 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=668</guid>
		<description><![CDATA[from: http://fusion.infofabrics.com/Home/enviornment-infrastructure/personal-cloud-using-esxi VMWare can exploit yum repository. 1. Import public key for yum repository. Execute this as root # rpm &#8211;import http://packages.vmware.com/tools/VMWARE-PACKAGING-GPG-KEY.pub 2. CentOS stores yum repository definition in /etc/yum.repos.d Create a file named, vmtools.repo and populate it with following contents [vmware-tools] name=VMware Tools for CentOS $releasever – $basearch baseurl=http://packages.vmware.com/tools/esx/4.0/rhel5/x86_64 enabled=1 gpgcheck=1 In the above [...]]]></description>
			<content:encoded><![CDATA[<p>from: http://fusion.infofabrics.com/Home/enviornment-infrastructure/personal-cloud-using-esxi</p>
<p>VMWare can exploit yum repository.</p>
<p>1. Import public key for yum repository. Execute this as root</p>
<p>    #  rpm &#8211;import http://packages.vmware.com/tools/VMWARE-PACKAGING-GPG-KEY.pub</p>
<p>2. CentOS stores yum repository definition in /etc/yum.repos.d<br />
     Create a file named, vmtools.repo and populate it with following contents<br />
        [vmware-tools]<br />
         name=VMware Tools for CentOS $releasever – $basearch<br />
         baseurl=http://packages.vmware.com/tools/esx/4.0/rhel5/x86_64<br />
         enabled=1<br />
         gpgcheck=1</p>
<p>In the above example, I&#8217;ve used baseurl with &#8220;4.0&#8243; as ESXi version &#038; x86_64 for 64 bit CentOS. This can be different for you.</p>
<p>3. Run yum install command to install VMWare tools on your CentOS Linux server.<br />
        # yum install vmtools   </p>
<p>You should see installation log on your screen at attached on this page &#8220;yum_vmware-tools.install.log&#8221;, with one prompt for vmware package installation.</p>
<p>4. Restart CentOS linux server.</p>
<p>GOOD NEWS, post CentOS restart if you go to vSphere vmserver instance -> console you don&#8217;t have to press Ctrl+Alt every time you want to switch between Linux console &#038; Windows OS <img src='http://www.republicavirtual.com.br/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  . And it&#8217;s fast too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/02/16/vmware-tools-centos-5-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eyebeam &#8211; tab contacts disabled</title>
		<link>http://www.republicavirtual.com.br/blog/2011/02/08/eyebeam-tab-contacts-disabled/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/02/08/eyebeam-tab-contacts-disabled/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 12:35:45 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=665</guid>
		<description><![CDATA[isso acontece no win7, só rodar como modo de compatibilidade com windows XP]]></description>
			<content:encoded><![CDATA[<p>isso acontece no win7, só rodar como modo de compatibilidade com windows XP</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/02/08/eyebeam-tab-contacts-disabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>blosson + the big bang theory</title>
		<link>http://www.republicavirtual.com.br/blog/2011/02/07/blosson-the-big-bang-theory/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/02/07/blosson-the-big-bang-theory/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 02:02:19 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>
		<category><![CDATA[blosson]]></category>
		<category><![CDATA[the big bang theory]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=663</guid>
		<description><![CDATA[caraca, eu não acreditei&#8230; http://www.imdb.com/name/nm0080524/ a namorada do sheldon é a blosson&#8230; :S]]></description>
			<content:encoded><![CDATA[<p>caraca, eu não acreditei&#8230;</p>
<p>http://www.imdb.com/name/nm0080524/</p>
<p>a namorada do sheldon é a blosson&#8230; :S</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/02/07/blosson-the-big-bang-theory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>horário de verão gentoo linux</title>
		<link>http://www.republicavirtual.com.br/blog/2011/02/07/horario-de-verao-gentoo-linux/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/02/07/horario-de-verao-gentoo-linux/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 15:20:03 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[horário verão]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=661</guid>
		<description><![CDATA[editar /etc/conf.d/clock e adicionar: Adicionar: TIMEZONE="America/Sao_Paulo" PLAIN TEXT CODE: vi /etc/conf.d/clock Adicionar para baixar timezone-data: PLAIN TEXT CODE: echo sys-libs/timezone-data&#62;&#62; /etc/portage/package.keywords emerge sys-libs/timezone-data]]></description>
			<content:encoded><![CDATA[<p>editar /etc/conf.d/clock e adicionar:<br />
Adicionar: TIMEZONE="America/Sao_Paulo"</p>
<div class="igBar"><span id="lcode-3"><a href="#" onclick="javascript:showPlainTxt('code-3'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-3">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">vi /etc/conf.<span style="">d</span>/clock </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Adicionar para baixar timezone-data:</p>
<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showPlainTxt('code-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo sys-libs/timezone-data&gt;&gt; /etc/portage/package.<span style="">keywords</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">emerge sys-libs/timezone-data </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/02/07/horario-de-verao-gentoo-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asterisk ativação e1</title>
		<link>http://www.republicavirtual.com.br/blog/2011/02/04/asterisk-ativacao-e1/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/02/04/asterisk-ativacao-e1/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 03:18:30 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>
		<category><![CDATA[asterisk]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=658</guid>
		<description><![CDATA[# ztcfg -vvvvvvv # genzaptelconf -l]]></description>
			<content:encoded><![CDATA[<p># ztcfg -vvvvvvv<br />
# genzaptelconf -l</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/02/04/asterisk-ativacao-e1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>controlando dell/perc no linux</title>
		<link>http://www.republicavirtual.com.br/blog/2011/02/03/controlando-dellperc-no-linux/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/02/03/controlando-dellperc-no-linux/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 17:11:06 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=655</guid>
		<description><![CDATA[# emerge megacli // listando discos virtuais # MegaCli -LDInfo -Lall -aALL // listando discos fisicos # MegaCli -PDList -aALL &#124; egrep 'Adapter&#124;Enclosure&#124;Slot&#124;Inquiry' // listando configuracao atual # MegaCli -CfgDsply -aAll &#124; egrep 'Reference&#124;RAID&#124;Slot&#124;Data&#124;^$' Download do 4.00.11_Linux_MegaCLI.zip]]></description>
			<content:encoded><![CDATA[<p># emerge megacli</p>
<p>// listando discos virtuais<br />
# MegaCli -LDInfo -Lall -aALL</p>
<p>// listando discos fisicos<br />
# MegaCli -PDList -aALL | egrep 'Adapter|Enclosure|Slot|Inquiry' </p>
<p>// listando configuracao atual<br />
# MegaCli -CfgDsply -aAll | egrep 'Reference|RAID|Slot|Data|^$'</p>
<p><a href="http://www.republicavirtual.com.br/blog/download/4.00.11_Linux_MegaCLI.zip">Download do 4.00.11_Linux_MegaCLI.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/02/03/controlando-dellperc-no-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>digsby &#8211; im + mail + social network</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/27/digsby-im-mail-social-network/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/27/digsby-im-mail-social-network/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 19:10:47 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=652</guid>
		<description><![CDATA[http://www.digsby.com/]]></description>
			<content:encoded><![CDATA[<p>http://www.digsby.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/27/digsby-im-mail-social-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>enable round-robin storage vmware 4.1</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/14/enable-round-robin-storage-vmware-4-1/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/14/enable-round-robin-storage-vmware-4-1/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 21:19:37 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=646</guid>
		<description><![CDATA[PLAIN TEXT CODE: echo&#160; "#!/bin/ash"&#62; set.sh esxcli nmp device list &#124; awk '/^naa/{print &#34;esxcli nmp device setpolicy --device &#34;$0&#34; --psp VMW_PSP_RR&#34; }'&#62;&#62; set.sh chmod +x set.sh ./set.sh]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lcode-6"><a href="#" onclick="javascript:showPlainTxt('code-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-6">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo&nbsp; <span style="color:#CC0000;">"#!/bin/ash"</span>&gt; set.<span style="">sh</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">esxcli nmp device list | awk <span style="color:#CC0000;">'/^naa/{print &quot;esxcli nmp device setpolicy --device &quot;$0&quot; --psp VMW_PSP_RR&quot; }'</span>&gt;&gt; set.<span style="">sh</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">chmod +x set.<span style="">sh</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">./set.<span style="">sh</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/14/enable-round-robin-storage-vmware-4-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>desativando updatedb</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/11/desativando-updatedb/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/11/desativando-updatedb/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 14:18:44 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[locate]]></category>
		<category><![CDATA[updatedb]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=643</guid>
		<description><![CDATA[Remover do arquivo /etc/cron.daily/slocate dica: mover este arquivo para /etc/cron.weekly/]]></description>
			<content:encoded><![CDATA[<p>Remover do arquivo /etc/cron.daily/slocate</p>
<p>dica: mover este arquivo para /etc/cron.weekly/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/11/desativando-updatedb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>usb2serial windows 7 64 driver</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/07/usb2serial-windows-7-64-driver/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/07/usb2serial-windows-7-64-driver/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 21:25:28 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=641</guid>
		<description><![CDATA[http://www.usglobalsat.com/download/546/win_drivers.zip]]></description>
			<content:encoded><![CDATA[<p>http://www.usglobalsat.com/download/546/win_drivers.zip</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/07/usb2serial-windows-7-64-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>validação / verificação de ssl</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/06/validacao-verificacao-de-ssl/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/06/validacao-verificacao-de-ssl/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 17:28:32 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=639</guid>
		<description><![CDATA[http://fixunix.com/openssl/547846-openssl-error-0b080074-x509-certificate-routines-x509_check_private_key-keyvalues-mismatch.html > To view the contents of the certificate: openssl x509 -noout -text -in filename.crt > To view the contents of the private key: openssl rsa -noout -text -in filename.key"]]></description>
			<content:encoded><![CDATA[<p>http://fixunix.com/openssl/547846-openssl-error-0b080074-x509-certificate-routines-x509_check_private_key-keyvalues-mismatch.html</p>
<p>> To view the contents of the certificate:<br />
openssl x509 -noout -text -in filename.crt</p>
<p>> To view the contents of the private key:<br />
openssl rsa -noout -text -in filename.key"</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/06/validacao-verificacao-de-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>segurança em aplicações web</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/06/seguranca-em-aplicacoes-web/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/06/seguranca-em-aplicacoes-web/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 16:58:47 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=637</guid>
		<description><![CDATA[http://www.owasp.org/ http://stores.lulu.com/owasp]]></description>
			<content:encoded><![CDATA[<p>http://www.owasp.org/</p>
<p>http://stores.lulu.com/owasp</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/06/seguranca-em-aplicacoes-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>atualização mother intel via FMI</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/05/atualizacao-mother-intel-via-fmi/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/05/atualizacao-mother-intel-via-fmi/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 12:30:12 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>
		<category><![CDATA[bios]]></category>
		<category><![CDATA[efi]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=635</guid>
		<description><![CDATA[Atualização via EFI SHELL: > fs0 > (atualizar dispositivos usb) map -r > dir *.nsh > bmcxxxx.sh > biosxxxx.sh > MExxxx.sh > FUxxxx.sh]]></description>
			<content:encoded><![CDATA[<p>Atualização via EFI SHELL:<br />
> fs0<br />
> (atualizar dispositivos usb) map -r<br />
> dir *.nsh<br />
> bmcxxxx.sh<br />
> biosxxxx.sh<br />
> MExxxx.sh<br />
> FUxxxx.sh</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/05/atualizacao-mother-intel-via-fmi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>filme via telnet</title>
		<link>http://www.republicavirtual.com.br/blog/2011/01/03/filme-via-telnet/</link>
		<comments>http://www.republicavirtual.com.br/blog/2011/01/03/filme-via-telnet/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 11:58:22 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=633</guid>
		<description><![CDATA[telnet towel.blinkenlights.nl]]></description>
			<content:encoded><![CDATA[<p>telnet towel.blinkenlights.nl</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2011/01/03/filme-via-telnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>header block include via iframe</title>
		<link>http://www.republicavirtual.com.br/blog/2010/12/20/header-block-include-via-iframe/</link>
		<comments>http://www.republicavirtual.com.br/blog/2010/12/20/header-block-include-via-iframe/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 17:04:38 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[xalassa]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=630</guid>
		<description><![CDATA[mandar o seguinte header: X-Frame-Options: DENY]]></description>
			<content:encoded><![CDATA[<p>mandar o seguinte header:<br />
X-Frame-Options: DENY</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2010/12/20/header-block-include-via-iframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nlite, criar iso personalizados windows</title>
		<link>http://www.republicavirtual.com.br/blog/2010/12/08/nlite-criar-iso-personalizados-windows/</link>
		<comments>http://www.republicavirtual.com.br/blog/2010/12/08/nlite-criar-iso-personalizados-windows/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 21:02:57 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=628</guid>
		<description><![CDATA[Dica do Diego, para criar cd do windows personalizado, adicionando SP, serial! bem bacana, vale ver. http://www.google.com.br/url?sa=t&#038;source=web&#038;cd=2&#038;ved=0CCAQFjAB&#038;url=http%3A%2F%2Fwww.nliteos.com%2F&#038;ei=BfH_TOnMO8H78Aa1xpHRCg&#038;usg=AFQjCNGZ0Z55TOH8iRf_Sg6pM-4AWV2v-A&#038;sig2=pD4s9gvPcp-HjcJ8HV3gnw http://www.winajuda.com/2005/04/15/windows-xp-personalizado-com-o-nlite/]]></description>
			<content:encoded><![CDATA[<p>Dica do Diego, para criar cd do windows personalizado, adicionando SP, serial!</p>
<p>bem bacana, vale ver.</p>
<p>http://www.google.com.br/url?sa=t&#038;source=web&#038;cd=2&#038;ved=0CCAQFjAB&#038;url=http%3A%2F%2Fwww.nliteos.com%2F&#038;ei=BfH_TOnMO8H78Aa1xpHRCg&#038;usg=AFQjCNGZ0Z55TOH8iRf_Sg6pM-4AWV2v-A&#038;sig2=pD4s9gvPcp-HjcJ8HV3gnw</p>
<p>http://www.winajuda.com/2005/04/15/windows-xp-personalizado-com-o-nlite/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2010/12/08/nlite-criar-iso-personalizados-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Horde, configuração smtp autenticado</title>
		<link>http://www.republicavirtual.com.br/blog/2010/11/19/horde-configuracao-smtp-autenticado/</link>
		<comments>http://www.republicavirtual.com.br/blog/2010/11/19/horde-configuracao-smtp-autenticado/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 13:05:15 +0000</pubDate>
		<dc:creator>Felipe Olivaes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://www.republicavirtual.com.br/blog/?p=625</guid>
		<description><![CDATA[$conf['mailer']['params']['host'] = 'smtp.DOMINIO'; $conf['mailer']['params']['port'] = 25; $conf['mailer']['params']['auth'] = true; $conf['mailer']['params']['username'] = Auth::getAuth(); $conf['mailer']['params']['password'] = Auth::getCredential('password');]]></description>
			<content:encoded><![CDATA[<p>$conf['mailer']['params']['host'] = 'smtp.DOMINIO';<br />
$conf['mailer']['params']['port'] = 25;<br />
$conf['mailer']['params']['auth'] = true;<br />
$conf['mailer']['params']['username'] = Auth::getAuth();<br />
$conf['mailer']['params']['password'] = Auth::getCredential('password');</p>
]]></content:encoded>
			<wfw:commentRss>http://www.republicavirtual.com.br/blog/2010/11/19/horde-configuracao-smtp-autenticado/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

