<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>...antes de tudo, reinicie.</title>
	<atom:link href="http://reinicie.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://reinicie.wordpress.com</link>
	<description>experiências no mundo digital</description>
	<lastBuildDate>Fri, 10 Jun 2011 02:03:52 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='reinicie.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/bc8c1d72c21c8743140131a693de41f1?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>...antes de tudo, reinicie.</title>
		<link>http://reinicie.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://reinicie.wordpress.com/osd.xml" title="...antes de tudo, reinicie." />
	<atom:link rel='hub' href='http://reinicie.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Criando um túnel SSH para navegar em uma rede remota</title>
		<link>http://reinicie.wordpress.com/2010/12/28/criando-um-tunel-ssh-para-navegar-em-uma-rede-remota/</link>
		<comments>http://reinicie.wordpress.com/2010/12/28/criando-um-tunel-ssh-para-navegar-em-uma-rede-remota/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 16:36:50 +0000</pubDate>
		<dc:creator>Adalberto Gonzaga</dc:creator>
				<category><![CDATA[Rede / Network]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[navegador]]></category>
		<category><![CDATA[navegar]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[rede]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tunnel]]></category>
		<category><![CDATA[tunneling]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://reinicie.wordpress.com/?p=102</guid>
		<description><![CDATA[Outra hora dessas tive que baixar uns artigos da ACM Digital Library, porém, o conteúdo que eu estava tentando acessar era exclusivo para usuários que estivessem conectados na rede da USP. Pensei: &#8220;Para resolver o problema é simples, basta conectar-se à USPNet via VPN&#8230;&#8220; &#8230;mas a VPN não conectava de jeito nenhum! Como tinha acesso [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=102&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Outra hora dessas tive que baixar uns artigos da <a title="ACM Digital Library" href="http://portal.acm.org/" target="_blank">ACM Digital Library</a>, porém, o conteúdo que eu estava tentando acessar era exclusivo para usuários que estivessem conectados na rede da USP.</p>
<p>Pensei: &#8220;<em>Para resolver o problema é simples, basta conectar-se à USPNet via VPN&#8230;</em>&#8220;</p>
<p>&#8230;mas a VPN não conectava de jeito nenhum!</p>
<p>Como tinha acesso via SSH a um computador de dentro da USP, tentei conectar via SSH mesmo colocando o parâmetro -X para poder abrir uma janela do browser. Funcionou, mas estava lento demais&#8230; Mesmo colocando o parâmetro -C (compress), que melhorou bastante a velocidade, ainda sim estava ruim&#8230;</p>
<p>Após pesquisar na Internet e compartilhar do mesmo problema com um amigo, ele me indicou fazer um tunelamento por SSH.</p>
<p><span id="more-102"></span>Para fazer o tunelamento, primeiro é necessário conectar-se via SSH na máquina remota utilizando o seguinte comando:</p>
<blockquote><p>ssh -2 -C -D 4567 username@maquinaremota.laboratorio.usp.br -p 22</p></blockquote>
<p>no qual, 4567, indica a porta local para onde será redirecionado o tráfego de dados proveniente desta conexão SSH e 22 é a porta da máquina remota que o serviço SSH utiliza.<em> </em></p>
<p>Após conectado na máquina remota é necessário configurar o <em>proxy</em> do navegador local para utilizar o túnel SSH que foi criado.</p>
<p>No Firefox, as configurações de proxy geralmente são acessadas via:</p>
<blockquote><p>Menu Edit -&gt; Preferences -&gt; Advanced -&gt; Network -&gt; Connection -&gt; Settings&#8230;</p></blockquote>
<p>Na tela de configuração de proxy, especifique o proxy do tipo <strong>SOCKS</strong> para utilizar o computador local (127.0.0.1 ou localhost) e a porta 4567. No Firefox é possível especificar a opção<strong> SOCKS V5</strong>, utilize-a.</p>
<p>No navegador <strong>Chrome</strong>, estas opções podem ser acessadas clicando no ícone de preferências/configurações, e depois clicando no botão para editar as configurações de proxy (<strong><em>Change proxy settings&#8230;</em></strong>).</p>
<p>Após isso, basta navegar pelo browser que foi configurado o proxy. Você terá acesso aos mesmos conteúdos que a máquina remota tenha.</p>
<p>Para que o <strong><em>SSH Tunnel </em></strong>funcione é necessário que a janela da conexão esteja aberta o tempo todo em que se estiver navegando. Basta minimizá-la!</p>
<p>Dica do amigo <a title="Felipe Grillo" href="http://www.fgrillo.net/" target="_blank">Felipe Grillo</a>. Para maiores detalhes acesse este <a title="link" href="http://www.slugsite.com/archives/315" target="_blank">link</a>, que também ensina o <em><strong>Tunneling</strong></em> via <strong>PuTTY</strong>, do Windows.</p>
<p><em><br />
</em></p>
<br />Filed under: <a href='http://reinicie.wordpress.com/category/rede-network/'>Rede / Network</a> Tagged: <a href='http://reinicie.wordpress.com/tag/browser/'>browser</a>, <a href='http://reinicie.wordpress.com/tag/navegador/'>navegador</a>, <a href='http://reinicie.wordpress.com/tag/navegar/'>navegar</a>, <a href='http://reinicie.wordpress.com/tag/network/'>network</a>, <a href='http://reinicie.wordpress.com/tag/proxy/'>proxy</a>, <a href='http://reinicie.wordpress.com/tag/putty/'>putty</a>, <a href='http://reinicie.wordpress.com/tag/rede/'>rede</a>, <a href='http://reinicie.wordpress.com/tag/ssh/'>ssh</a>, <a href='http://reinicie.wordpress.com/tag/tunnel/'>tunnel</a>, <a href='http://reinicie.wordpress.com/tag/tunneling/'>tunneling</a>, <a href='http://reinicie.wordpress.com/tag/vpn/'>vpn</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reinicie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reinicie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reinicie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reinicie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reinicie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reinicie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reinicie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reinicie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reinicie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reinicie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reinicie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reinicie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reinicie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reinicie.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=102&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reinicie.wordpress.com/2010/12/28/criando-um-tunel-ssh-para-navegar-em-uma-rede-remota/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b926f067b411c83230d9009348c71c8a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reinicie</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 10.10 e teclado USA: cedilha não funciona</title>
		<link>http://reinicie.wordpress.com/2010/12/28/ubuntu-10-10-e-teclado-usa-cedilha-nao-funciona/</link>
		<comments>http://reinicie.wordpress.com/2010/12/28/ubuntu-10-10-e-teclado-usa-cedilha-nao-funciona/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 15:51:03 +0000</pubDate>
		<dc:creator>Adalberto Gonzaga</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ç]]></category>
		<category><![CDATA[cedilha]]></category>
		<category><![CDATA[teclado]]></category>
		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://reinicie.wordpress.com/?p=96</guid>
		<description><![CDATA[Recentemente instalei o Ubuntu 10.10 em meu notebook (Dell Vostro 1510), que possui um teclado sem o ç cedilha. Após encontrar e definir o layout correto para o teclado (USA Alternative International former us_intl), todas as teclas e acentos funcionavam corretamente, menos o cedilha. Para resolver este problema foi necessário fazer o seguinte: Editar o [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=96&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recentemente instalei o Ubuntu 10.10 em meu notebook (Dell Vostro 1510), que possui um teclado sem o <strong>ç</strong> cedilha. Após encontrar e definir o <em>layout</em> correto para o teclado (<strong>USA Alternative International former us_intl</strong>), todas as teclas e acentos funcionavam corretamente, menos o cedilha.</p>
<p>Para resolver este problema foi necessário fazer o seguinte:</p>
<p><span id="more-96"></span></p>
<p>Editar o arquivo <strong>&#8220;libgtk2.0-0.immodules&#8221;</strong></p>
<p>no Ubuntu 10.10 ele se encontra no seguinte caminho:</p>
<blockquote><p><code>/usr/lib/gtk-2.0/2.10.0/gtk.immodules</code></p></blockquote>
<p>apenas lembrando, é preciso ser <strong>root</strong> para editar este arquivo, portanto, é necessário digitar o seguinte comando no terminal:</p>
<blockquote><p><code>sudo gedit /usr/lib/gtk-2.0/2.10.0/gtk.immodules</code></p></blockquote>
<p>quando o arquivo abrir, será necessário encontrar a seguinte linha:</p>
<blockquote><p>“cedilla” “Cedilla” “gtk20″ “/usr/share/locale” “az:ca:co:fr:gv:oc:pt:sq:tr:wa”</p></blockquote>
<p>e adicionar a entrada &#8220;<strong>:en</strong>&#8221; na mesma, deixando a linha como a seguir:</p>
<blockquote><p>“cedilla” “Cedilla” “gtk20″ “/usr/share/locale” “az:ca:co:fr:gv:oc:pt:sq:tr:wa:en”</p></blockquote>
<p>após isso, é só salvar o arquivo e fechá-lo, fechar as janelas onde é preciso digitar o cedilha e reabrí-las!</p>
<p>pronto! agora é possível digitar o cedilha apenas colocando um acento agudo na letra C <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Fonte: <a title="blog.newtonuzeda.com" href="http://blog.newtonuzeda.com/2009/11/24/ubuntu-9-10-teclado-us-acentos-cedilha/" target="_blank">blog.newtonuzeda.com</a></p>
<br />Filed under: <a href='http://reinicie.wordpress.com/category/ubuntu/'>Ubuntu</a> Tagged: <a href='http://reinicie.wordpress.com/tag/c/'>ç</a>, <a href='http://reinicie.wordpress.com/tag/cedilha/'>cedilha</a>, <a href='http://reinicie.wordpress.com/tag/teclado/'>teclado</a>, <a href='http://reinicie.wordpress.com/tag/usa/'>usa</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reinicie.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reinicie.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reinicie.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reinicie.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reinicie.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reinicie.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reinicie.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reinicie.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reinicie.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reinicie.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reinicie.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reinicie.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reinicie.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reinicie.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=96&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reinicie.wordpress.com/2010/12/28/ubuntu-10-10-e-teclado-usa-cedilha-nao-funciona/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b926f067b411c83230d9009348c71c8a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reinicie</media:title>
		</media:content>
	</item>
		<item>
		<title>Instalei o Windows e perdi o GRUB. Como faço para recuperar o GRUB ?</title>
		<link>http://reinicie.wordpress.com/2009/09/25/instalei-o-windows-e-perdi-o-grub/</link>
		<comments>http://reinicie.wordpress.com/2009/09/25/instalei-o-windows-e-perdi-o-grub/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 17:40:37 +0000</pubDate>
		<dc:creator>Adalberto Gonzaga</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[grub]]></category>

		<guid isPermaLink="false">http://reinicie.wordpress.com/?p=76</guid>
		<description><![CDATA[Esta semana instalei a versão de testes do Windows 7 (depois faço um post para contar como foi) para ver como estava o novo Windows. Ao final da instalação reiniciei o computador e percebi que tinha algo estranho: mais uma vez, como sempre, após instalar o Windows tinha perdido o GRUB. Isto acontece porque o [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=76&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Esta semana instalei a versão de testes do Windows 7 (depois faço um post para contar como foi) para ver como estava o novo Windows.  Ao final da instalação <strong>reinicie</strong>i o computador e percebi que tinha algo estranho: mais uma vez, como sempre, após instalar o Windows tinha perdido o GRUB. Isto acontece porque o Windows sobrescreve o setor de boot com as suas próprias informações, ignorando as que já estiverem presentes&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p style="text-align:justify;">Se isso também aconteceu com você, não há motivo para pânico (Sim, você não perdeu sua instalação do Linux). Basta um Live CD de Linux (pode ser o <a title="Faça o download do CD do Ubuntu Linux" href="http://www.ubuntu.com/getubuntu/download" target="_blank">Ubuntu</a>) que o problema pode ser resolvido. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:justify;">
<p style="text-align:justify;"><span id="more-76"></span></p>
<p style="text-align:justify;">Após dar boot pelo Live CD, entre no sistema e abra o terminal (console). Com o terminal aberto, digite os seguintes comandos:</p>
<blockquote><p>sudo fdisk <code>-</code>l      (isto é um L minúsculo)</p></blockquote>
<p style="text-align:justify;">Será exibida uma tabela de partições (como na figura abaixo), verifique em qual delas está instalado o seu Linux (neste exemplo vamos usar a /dev/sda3)</p>
<p style="text-align:center;"><img class="size-full wp-image-79  aligncenter" title="fdisk -l" src="http://reinicie.files.wordpress.com/2009/09/fdisk.png?w=450&#038;h=76" alt="fdisk -l" width="450" height="76" /></p>
<p style="text-align:justify;">OK, tendo em mãos a partição em que o Linux está instalado, vamos montar esta partição em um diretório. Primeiro, vamos criar o diretório onde será montada a partição:</p>
<blockquote>
<p style="text-align:left;">sudo mkdir /mnt/linux</p>
</blockquote>
<p style="text-align:left;">Agora montamos a partição&#8230;</p>
<blockquote>
<p style="text-align:left;">sudo mount /dev/sda3 /mnt/linux</p>
</blockquote>
<p style="text-align:justify;">Em seguida, vamos definir o diretório montado como a nossa nova raiz:</p>
<blockquote>
<p style="text-align:left;">sudo chroot /mnt/linux</p>
</blockquote>
<p style="text-align:justify;">Feito isso, vamos executar o GRUB:</p>
<blockquote>
<p style="text-align:left;">sudo grub</p>
</blockquote>
<p style="text-align:justify;">Deverá ser exibido um prompt aguardando mais comandos, vamos digitar o seguinte:</p>
<blockquote>
<p style="text-align:left;">find /boot/grub/stage1</p>
</blockquote>
<p style="text-align:justify;">Será exibido algo como (hd0,2). Anote estes números e os utilize no comando abaixo:</p>
<blockquote>
<p style="text-align:left;">root (hd0,2)</p>
<p style="text-align:left;">setup (hd0)</p>
</blockquote>
<p style="text-align:justify;">Serão exibidas algumas mensagens informando que o GRUB está sendo instalado. Após isso, digite:</p>
<blockquote>
<p style="text-align:left;">quit</p>
</blockquote>
<p style="text-align:justify;">Pronto! Seu GRUB já deve estar funcionando! Os comandos acima deverão produzir uma saída similar a da figura abaixo:</p>
<p style="text-align:left;"><img class="aligncenter size-full wp-image-81" title="grub reinstall" src="http://reinicie.files.wordpress.com/2009/09/grub.png?w=450&#038;h=175" alt="grub reinstall" width="450" height="175" /></p>
<p style="text-align:left;">
<address>Fonte: Meu amigo <a title="Página do Currículo Lattes de José Augusto" href="http://lattes.cnpq.br/5175038619933479" target="_blank">José (Tim) Augusto</a> e <a title="GRUB tips and tricks" href="http://www.freesoftwaremagazine.com/articles/grub_intro" target="_blank">http://www.freesoftwaremagazine.com/articles/grub_intro</a></address>
<br />Publicado emUbuntu Tagged: grub, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reinicie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reinicie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reinicie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reinicie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reinicie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reinicie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reinicie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reinicie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reinicie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reinicie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reinicie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reinicie.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reinicie.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reinicie.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=76&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reinicie.wordpress.com/2009/09/25/instalei-o-windows-e-perdi-o-grub/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b926f067b411c83230d9009348c71c8a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reinicie</media:title>
		</media:content>

		<media:content url="http://reinicie.files.wordpress.com/2009/09/fdisk.png" medium="image">
			<media:title type="html">fdisk -l</media:title>
		</media:content>

		<media:content url="http://reinicie.files.wordpress.com/2009/09/grub.png" medium="image">
			<media:title type="html">grub reinstall</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress substituindo os caracteres dos posts</title>
		<link>http://reinicie.wordpress.com/2009/09/23/wordpress-erro-caracteres/</link>
		<comments>http://reinicie.wordpress.com/2009/09/23/wordpress-erro-caracteres/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 11:53:01 +0000</pubDate>
		<dc:creator>Adalberto Gonzaga</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[caracteres]]></category>

		<guid isPermaLink="false">http://reinicie.wordpress.com/?p=65</guid>
		<description><![CDATA[Outro dia desses tive um problema ao redigir um post aqui no WordPress (WP): eu precisava escrever um comando do Linux que utilizava o caractere &#8220;traço&#8221;, entretanto, quando eu mandava publicar o post, o WP substituia os traços que eu colocava no post por outro caractere. Além de visualmente ficar diferente do que eu desejava, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=65&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Outro dia desses tive um problema ao redigir um post aqui no WordPress (WP): eu precisava escrever um comando do Linux que utilizava o caractere &#8220;traço&#8221;, entretanto, quando eu mandava publicar o post, o WP substituia os traços que eu colocava no post por outro caractere.</p>
<p style="text-align:justify;">Além de visualmente ficar diferente do que eu desejava, quando uma pessoa copiava e colava o comando no console do Linux dava erro, pois o comando correto é escrito com dois traços (<code>--</code>), mas o WP trocava por isto aqui: &#8211;.</p>
<p style="text-align:justify;"><span id="more-65"></span></p>
<p style="text-align:justify;">Para solucionar o problema tive que utilizar a opção/função code do editor HTML do WP. É só clicar na aba do editor de HTML e escrever o seguinte:</p>
<blockquote><p>&lt;code&gt;<code>--</code>&lt;⁄code&gt;</p></blockquote>
<p style="text-align:justify;">Além do problema com os traços, também li em outros lugares que o WP também troca outros caracteres, como as aspas, por exemplo.</p>
<p style="text-align:justify;">Para mais informações acesse o link abaixo, que foi o lugar onde eu encontrei a solução para este caso.</p>
<address>Fonte: <a title="Erros de transcrição no WordPress - Hamacker" href="http://hamacker.wordpress.com/erros-de-transcricao-do-wordpress/" target="_blank">http://hamacker.wordpress.com/erros-de-transcricao-do-wordpress/</a></address>
<br />Publicado emHTML, WordPress Tagged: caracteres, HTML, WordPress <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reinicie.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reinicie.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reinicie.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reinicie.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reinicie.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reinicie.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reinicie.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reinicie.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reinicie.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reinicie.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reinicie.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reinicie.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reinicie.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reinicie.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=65&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reinicie.wordpress.com/2009/09/23/wordpress-erro-caracteres/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b926f067b411c83230d9009348c71c8a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reinicie</media:title>
		</media:content>
	</item>
		<item>
		<title>Erro de chave pública GPG no Ubuntu Linux</title>
		<link>http://reinicie.wordpress.com/2009/09/22/erro-de-chave-publica-gpg-no-ubuntu-linux/</link>
		<comments>http://reinicie.wordpress.com/2009/09/22/erro-de-chave-publica-gpg-no-ubuntu-linux/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 05:30:16 +0000</pubDate>
		<dc:creator>Adalberto Gonzaga</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[gpg]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[synaptic]]></category>

		<guid isPermaLink="false">http://reinicie.wordpress.com/?p=47</guid>
		<description><![CDATA[Outro dia desses tive um problema após adicionar alguns repositórios do apt (synaptic) no Ubuntu Linux: Deu um erro de chave GPG. A seguinte mensagem apareceu na minha tela: Erro GPG: http://ppa.launchpad.net jaunty Release: As assinaturas a seguir não puderam ser verificadas devido à chave pública não estar disponível: NO_PUBKEY 5A9BF3BB4E5E17B5 Para resolver o problema, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=47&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Outro dia desses tive um problema após adicionar alguns repositórios do apt (synaptic) no Ubuntu Linux: Deu um erro de chave GPG. A seguinte mensagem apareceu na minha tela:</p>
<blockquote><p>Erro GPG: http://ppa.launchpad.net jaunty Release: As assinaturas a seguir não puderam ser verificadas devido à chave pública não estar disponível: NO_PUBKEY 5A9BF3BB4E5E17B5</p>
<p><span id="more-47"></span></p></blockquote>
<p style="text-align:center;">
<p style="text-align:center;"><img class="size-full wp-image-55   aligncenter" title="Janela de erro de chave GPG no synaptic" src="http://reinicie.files.wordpress.com/2009/09/janelaerrogpg.png?w=440&#038;h=295" alt="Janela de erro de chave GPG no synaptic" width="440" height="295" /></p>
<p style="text-align:center;"><img class="size-full wp-image-56   aligncenter" title="Erro de chave GPG após executar o comando apt-get" src="http://reinicie.files.wordpress.com/2009/09/errogpgconsole.png?w=440&#038;h=90" alt="Erro de chave GPG após executar o comando apt-get" width="440" height="90" /></p>
<p>Para resolver o problema, vá no terminal (console) e digite o seguinte comando:</p>
<blockquote><p>sudo apt-key adv <code>--</code>keyserver keyserver.ubuntu.com <code>--</code>recv-keys 12345678</p></blockquote>
<p>substituindo 12345678 pela chave que aparece na sua mensagem de erro.</p>
<p>Em seguida digite no console:</p>
<blockquote><p>sudo apt-get update</p></blockquote>
<p>ou então clique em &#8220;Recarregar&#8221; no Synaptic.</p>
<p>Pronto! Agora você já pode instalar seus aplicativos sem ficar recebendo essa mensagem de erro chata.</p>
<address>Fonte: <a title="Página com instruções de utilização de chave GPG" href="https://help.launchpad.net/Packaging/PPA/InstallingSoftware" target="_blank">https://help.launchpad.net/Packaging/PPA/InstallingSoftware</a></address>
<br />Publicado emUbuntu Tagged: apt-get, gpg, linux, synaptic, Ubuntu <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/reinicie.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/reinicie.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/reinicie.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/reinicie.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/reinicie.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/reinicie.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/reinicie.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/reinicie.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/reinicie.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/reinicie.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/reinicie.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/reinicie.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/reinicie.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/reinicie.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=reinicie.wordpress.com&amp;blog=9541328&amp;post=47&amp;subd=reinicie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://reinicie.wordpress.com/2009/09/22/erro-de-chave-publica-gpg-no-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b926f067b411c83230d9009348c71c8a?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">reinicie</media:title>
		</media:content>

		<media:content url="http://reinicie.files.wordpress.com/2009/09/janelaerrogpg.png" medium="image">
			<media:title type="html">Janela de erro de chave GPG no synaptic</media:title>
		</media:content>

		<media:content url="http://reinicie.files.wordpress.com/2009/09/errogpgconsole.png" medium="image">
			<media:title type="html">Erro de chave GPG após executar o comando apt-get</media:title>
		</media:content>
	</item>
	</channel>
</rss>
