<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>xorg &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/xorg/</link>
	<description>Feed of posts on WordPress.com tagged "xorg"</description>
	<pubDate>Sat, 26 Jul 2008 02:39:23 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Stupid SSH Tricks: Yet Another X11 Protocol Tunneling Tutorial]]></title>
<link>http://georgelenzer.wordpress.com/?p=16</link>
<pubDate>Thu, 24 Jul 2008 02:08:56 +0000</pubDate>
<dc:creator>georgelenzer</dc:creator>
<guid>http://georgelenzer.wordpress.com/?p=16</guid>
<description><![CDATA[Ingredients:
- One X server running on the machine in front of you. (Think of an X server as a virtu]]></description>
<content:encoded><![CDATA[<div class="intro"><strong>Ingredients</strong>:</div>
<div class="intro">- One X server running on the machine in front of you. (Think of an X server as a virtual video monitor with thousands of input jacks and the remote applications as different video sources)<br />
- One OpenSSH server on the system you are connecting to, that must be configured to (tunnel) forward X protocol</div>
<div class="intro">
<p>NOTE: If you are on the Windows platform, you can either purchase a commercial X server, or use Cygwin's excellent free X server. Again... try to imagine that the X server on the machine in front of you "virtualizes" your monitor and makes it "networkable". When you run the X server, it opens a connection on your machine listening for traffic coming from either the network, or (on *nix) shared memory. When you run an X application, it is instructed to connect to the X server so the Xserver can display it's output. (Just like plugging in a game console to one of your TV/Monitor's composite inputs)</p>
<p>Today we will talk about running X applications remotely using OpenSSH. Normally if you run X applications remotely, your X protocol traffic is going over your network connection out in the open.  This is all well and good if you can trust the network that your X traffic is travelling on. But, what if you can't?  This is where ssh and X make a pretty good team. You still run your X server on the machine in front of you like usual. But instead of instructing the remote application to connect directly to it, you use OpenSSH's X Protocol Forwarding so that all X traffic is sent through an encrypted TCP tunnel.</p>
<p><strong>SSH Server Side Preparations</strong><br />
You will need to edit your sshd_config file which controls how your SSH server works. You would make these changes on the machine you are connecting to. First, find your sshd_config file. Typically, it's in /usr/local/etc if you compiled the OpenSSH suite yourself or if the package maintainer went with defaults. In other cases it could be in /etc/openssh or /usr/local/etc/openssh.  To verify for your distribution, you can run the 'find' command:</p>
<p>find /usr -name sshd_config</p>
<p>Once you've located it, make sure you add these lines to it for TCP and X Forwarding:</p>
<p><span style="color:#ff0000;">AllowTcpForwarding yes<br />
X11Forwarding yes<br />
X11DisplayOffset 10<br />
X11UseLocalhost yes</span></p>
<p>You will then need to restart your ssh server so that it reads the new configuration.</p>
<p><strong>SSH Client Side Preparations:</strong></p>
<p>A quick aside about the .ssh directory in your home directory.  Not everyone is familiar with the purpose of this directory, but to simplify using OpenSSH, it's another essential tool.  If you don't already have one, create a text file in ~/.ssh called 'config' and add something like this to it, and save it:</p>
<p><span style="color:#ff0000;">host work<br />
hostname 192.168.1.10<br />
User george</span></p>
<p>Now, if I type 'ssh work' it will automatically try to connect to 192.168.1.10 passing 'george' as the user name.   Obviously, you will need to adjust this appropriately to your correct IP and username.  Combine that with a shared key for passwordless connection, and your life with OpenSSH becomes a lot easier.  Now back to the task at hand.</p>
<p><strong>Testing from the workstation in front of you</strong>:<br />
Now we can test and see if we can forward a simple X app over the ssh tunnel. Assume the  existence of '~/.ssh/config' file and connection profile I create above. Also assume that the remote system has the simple X application 'xeyes' in /usr/bin:</p>
<p>ssh -X work "/usr/bin/xeyes"</p>
<p>We should now be seeing the familiar googly eyes peeking at us. All the application execution is happening remotely, but displaying in front of us and it's coming over an encrypted ssh tunnel to boot!</p>
<p><strong>Add X Forwarding to Your ~/.ssh/config File</strong>:<br />
Instead of having to type 'ssh -X work [some app]', you can instead enable X forwarding from your ~/.ssh/config profiles. For each connection profile you create, you can add:</p>
<p>ForwardX11 yes</p>
<p>This means that all you would have to do to run a remote X app is either log into a shell using that profile and type the name of the X app you want to use, or... You can create a script to run the app using ssh and make an icon for it on your Windows Quick Launch bar or Gnome Panel. A sample script in Linux would be:</p>
<blockquote>
<div>
<p>#!/bin/bash</p>
<p>ssh work "/usr/local/bin/gimp"</p></div>
</blockquote>
<p>Pretty simple, huh?  In Windows, you can write a CMD file using about the same syntax:</p>
<blockquote>
<div>
<p>C:\cygwin\usr\local\bin\ssh work -F "C:\Documents and Settings\george\.ssh\config" "/usr/local/bin/gimp"</p></div>
</blockquote>
<p>You can argue that this is a form of "application publishing" to use a friendly term. But it's really a way of exploiting the features of X in a more secure way and without needing to open anything other than port 22 for OpenSSH. Once everything is configured, it works pretty seamlessly as well.</p>
<p><strong>Compression</strong>:<br />
This X traffic can take up a good deal of bandwidth since it is quite chatty back and forth, and I personally don't use it unless I have a fast connection (DSL 1.5M or better). In the past I used to prefer 'vnc' over ssh for most instances and these days I use Nomachine NX protocol (which I will discuss at a later date) for remote desktop access. However, there is something you can do which might help out a little in terms of speed with X if you really don't have any other options. You can compress your ssh traffic. Just add these lines to each host profile in your ~/.ssh/config file:</p>
<blockquote>
<div>
<p>Compression yes<br />
CompressionLevel 9</p></div>
</blockquote>
<p>You can set your CompressionLevel to anything between 1 and 9 with '1' being the fastest but worst compression, and 9 being slow but better. There is a slight improvement in X application performance. This compression applies across the board to any ssh traffic for that connection profile though, so it's handy to add it to your slower connections.</p>
<p><strong>Final Words</strong>:<br />
Again, I don't pretend to know everything there is about ssh or X and I am sure there are other ways that this can be done better. If you know of any, I am hoping that some of you will have more suggestions that readers here can share.  Please comment.</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Chrome 9, em busca da solução]]></title>
<link>http://caminholivre.wordpress.com/?p=219</link>
<pubDate>Thu, 17 Jul 2008 12:42:48 +0000</pubDate>
<dc:creator>Wendell</dc:creator>
<guid>http://caminholivre.wordpress.com/?p=219</guid>
<description><![CDATA[
A VIA recentemente criou um portal no qual disponibiliza drives para o Linux de alguns de seus prod]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><img class="aligncenter size-medium wp-image-223" src="http://caminholivre.wordpress.com/files/2008/07/via.jpg?w=269" alt="" width="269" height="60" /></p>
<p style="text-align:justify;">A <a href="http://linux.via.com.tw" target="_blank">VIA</a> recentemente criou um portal no qual disponibiliza drives para o Linux de alguns de seus produtos.  Usuários do OpenSuse, SuSe Enterprise e Ubuntu podem baixar os drives para alguns dispositivos e testar. Quando comprei meu notebook sabia que a placa de vídeo (Chrome 9) não suportava recursos 3D. Existem soluções como o <a href="http://www.openchrome.org/" target="_blank">OpenChrome</a>, porém o suporte 3D ainda é uma realidade distante.</p>
<p style="text-align:justify;">No portal da VIA, o drive estável para a placa é o Chrome9.83-242-u804, que pode ser baixado <a href="http://linux.via.com.tw/support/beginDownload.action?eleid=1&#38;fid=162" target="_blank">aqui</a> (versão para o Hardy 8.04). Recentemente instalei o drive para tentar alguma coisa em relação ao suporte 3D (Compiz), porém não consegui nada mais que uma tela branca.</p>
<p style="text-align:justify;">Após uma boa lida no README, fiz alguns ajustes básicos e consegui fazer o drive funcionar, porém o suporte a efeitos gráficos ainda estão longe de serem usados e ainda encontrei algumas deficiências na utilização com o <a href="http://caminholivre.wordpress.com/2008/05/06/mudando-a-cara-de-seu-ubuntu/" target="_blank">Xcomp</a>, sendo que os vídeos não são exibidos.</p>
<p style="text-align:justify;">Existem algumas soluções descritas em alguns sites como a do <a href="http://ebegati.blogspot.com/2008/05/placa-grfica-via-chrome9-misso.html" target="_blank">Evandro Begati,</a> porém até o momento não consegui nada mais do que a instalação básica do drive e alguns pequenos ajustes no Xorg.</p>
<p style="text-align:justify;">Quem ainda está com problemas na instalação do drive no Hardy, ou seja, tela branca "talhada",  abra seu Xorg e insira a seguintes linha no Section Device:</p>
<p style="text-align:justify;"><em>Option "LCDPort" "DFP_HIGHLOW"</em></p>
<p style="text-align:justify;">Essa opção é para quem utiliza telas LCD. No Arquivo de ajuda existem outras opções de configuração para cada tipo de hardware.</p>
<p style="text-align:justify;">Não consegui ainda o suporte ao Compiz, porém continuo na luta de como encontrar a configuração do drive para usar os recursos 3D.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Any good thing on top of X]]></title>
<link>http://penguinrage.wordpress.com/?p=28</link>
<pubDate>Thu, 17 Jul 2008 09:11:15 +0000</pubDate>
<dc:creator>penguinrage</dc:creator>
<guid>http://penguinrage.wordpress.com/?p=28</guid>
<description><![CDATA[
If there&#8217;s one thing I&#8217;m really pissed about linux that must be Xserver(brought to you ]]></description>
<content:encoded><![CDATA[<p><a href="http://penguinrage.wordpress.com/files/2008/07/cinemaplayer_med.png"><img class="alignnone size-full wp-image-31" src="http://penguinrage.wordpress.com/files/2008/07/cinemaplayer_med.png" alt="" width="510" height="318" /></a></p>
<p>If there's one thing I'm really pissed about linux that must be Xserver(brought to you by Xorg).</p>
<p>You see. I kinda know xorg.conf in &#38; out. I probably could write a full xorg.conf file with my eyes blindfolded but sometimes I still don't get it... Why do we have to tinker with a config file in order for us to say connect your laptop with a projector?</p>
<p>To those linux zealots or lusers(from linuxhaters jargon) who say there's a graphical interface allow you to accomplish that.. those people can go home and start eating my penguin shit for dinner.</p>
<p>I happen to know a thing called <em>xrandr</em> and after I have mastered the xrandr skill so I could conjure some xrandr magic to hook my laptop up with a projector. The often results would be overscan or wrong wirescreen aspect ratio. 1024x768 saved my ass tons of time though.</p>
<p>It's 2008 and X still couldn't get the right resolution for your laptop.(not mine though I'm lucky :p) No driver? Do you need one when connecting a projector? in Linux? My macbook pro does it without driver or conf file/xrandr.</p>
<p><em>Modeline</em>. I hate this word. Do you need it? You know what? A xorg devs (developer) said I need it. Another said I need no modeline in my xorg.conf file. Just Brilliant... I parse some edid bin out of my LCD TV anyway. Align them gracefully along with other sections of xorg. Double check with xorg log for all the accurate parameters such as vertical, horizontal refresh rate and some pixel clocks.</p>
<p>Some lusers or probably the devs themselves have been saying xorg.conf is already obsolete, you dont actually need it.Yeah right...</p>
<p>I know a guy who works for some major production movie studio. He told me there's a linux software cooler than final cut studio called IFX piranha cinema. He also told me the experience is like driving a porsche on the road of Baghdad. (Full of messy shits)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[modelines no x11 do linux]]></title>
<link>http://russoz.wordpress.com/?p=260</link>
<pubDate>Tue, 15 Jul 2008 20:58:40 +0000</pubDate>
<dc:creator>Russo</dc:creator>
<guid>http://russoz.wordpress.com/?p=260</guid>
<description><![CDATA[Programinha útil para calcular o Modeline que você precisa na sua configuração de X11 no Linux, ]]></description>
<content:encoded><![CDATA[<p><a href="http://xtiming.sourceforge.net/cgi-bin/xtiming.pl">Programinha útil para calcular o Modeline</a> que você precisa na sua configuração de X11 no Linux, caso você tenha que mexer nisso manualmente.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Configurar la tarjeta de video y el monitor en modo gráfico (GUI)]]></title>
<link>http://briandb.wordpress.com/?p=63</link>
<pubDate>Tue, 15 Jul 2008 13:00:20 +0000</pubDate>
<dc:creator>briandb</dc:creator>
<guid>http://briandb.wordpress.com/?p=63</guid>
<description><![CDATA[Se me habia perdido algo de la version 7.10 de Ubuntu a la 8.04, configurar la tarjeta de video en m]]></description>
<content:encoded><![CDATA[<p>Se me habia perdido algo de la version 7.10 de Ubuntu a la 8.04, configurar la tarjeta de video en modo gráfico!</p>
<p>Buscando encontre esto:</p>
<blockquote><p>sudo displayconfig-gtk</p></blockquote>
<p>Puede estar en otras distribuciones.</p>
<p><a href="http://briandb.wordpress.com/files/2008/07/displayconfig-gtk.jpg"><img class="aligncenter size-full wp-image-64" src="http://briandb.wordpress.com/files/2008/07/displayconfig-gtk.jpg" alt="" width="618" height="403" /></a></p>
<p>A veces no nos acordamos todos los parametros para configurar el xorg.conf, muy util!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[XInputHotplug Teil 2: erste Erfolge]]></title>
<link>http://doppelhertz.wordpress.com/?p=22</link>
<pubDate>Fri, 11 Jul 2008 22:44:58 +0000</pubDate>
<dc:creator>DoppelHertz</dc:creator>
<guid>http://doppelhertz.wordpress.com/?p=22</guid>
<description><![CDATA[Pseudo-Hotplug mit dem Tablet geht schon&#8230; dazu gleich mehr.
Erstmal die Software-Ausstattung. ]]></description>
<content:encoded><![CDATA[<p>Pseudo-Hotplug mit dem Tablet geht schon... dazu gleich mehr.</p>
<p>Erstmal die Software-Ausstattung. Alles, was nicht angegeben ist, ist die aktuellste stabile Version:</p>
<pre>sys-kernel/tuxonice-sources-2.6.24-r9
x11-base/xorg-x11-7.3
x11-base/xorg-server-1.4.2
x11-libs/pixman-0.10.0
x11-libs/libXrender-0.9.4
x11-proto/renderproto-0.9.3
media-libs/mesa-7.0.3
x11-drivers/xf86-input-keyboard-1.3.1
x11-proto/xf86driproto-2.0.4
x11-libs/xtrans-1.0.4
x11-drivers/linuxwacom-0.8.0_p3-r1</pre>
<p>Obwohl bei linuxwacom die Meldung kommt, dass gcc &#62;= 4.2 benötigt wird, kompiliert das Paket ohne Probleme mit gcc 4.1.2.</p>
<p>xorg.conf (die interessanten Teile)</p>
<pre>Section "ServerFlags"
        Option "AllowMouseOpenFail" "true"
EndSection

Section "InputDevice"
        Identifier "RX250"
        Driver "evdev"
        Option "Name" "Logitech USB-PS/2 Optical Mouse"
        Option "HWHEELRelativeAxisButtons" "7 6"
EndSection

Section "InputDevice"
        Driver      "wacom"
        Identifier  "stylus"
        Option      "Device"    "/dev/input/wacom"
        Option      "Type"      "stylus"
        Option      "USB"       "on"
        Option      "Mode"      "Absolute"
        Option      "Vendor"    "WACOM"
        Option      "KeepShape" "on"
EndSection
Section "InputDevice"
        Driver      "wacom"
        Identifier  "eraser"
        Option      "Device"    "/dev/input/wacom"
        Option      "Type"      "eraser"
        Option      "USB"       "on"
        Option      "Mode"      "Absolute"
        Option      "Vendor"    "WACOM"
        Option      "KeepShape" "on"
EndSection
Section "InputDevice"
        Identifier  "pad"
        Driver      "wacom"
        Option      "Type"        "pad"
        Option      "Device"      "/dev/input/wacom"
        Option      "ButtonsOnly" "on"
        Option      "Button9"     "2"
        Option      "Button13"    "3"
        Option      "USB"         "on"
        Option      "KeepShape"   "on"
EndSection

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "RX250"
    InputDevice "Keyboard1"
    InputDevice "stylus"
    InputDevice "eraser"
    InputDevice "pad"
EndSection</pre>
<p>Jetzt zum Thema Pseudo-Hotplug:</p>
<p>Die Maus wird bei Hotplug richtig erkannt, seitlich Scrollen funktioniert. So gut hatte ich die nichtmal unter Ubuntu eingerichtet.</p>
<p>Tablet-Hotplug geht nur begrenzt: nachdem ich das Tablet eingesteckt habe ist's erst einmal ne normale Maus, mit relativen Koordinaten. Wenn ich dann zum Beispiel mit Strg Alt F1 auf die Konsole wechsle und mit Alt F7 zurück zu X, werden die Eingabegeräte neu geladen und das Tablet funktioniert wie gewünscht.</p>
<p>Der nächste Schritt wird sein, das ohne Konsolenwechsel hinzubekommen. Dabei ist mir X auf meinem Desktop-PC nämlich schon abgestürzt. Sowas mag ich gar nicht.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Voltando ao planeta Terra]]></title>
<link>http://caminholivre.wordpress.com/?p=208</link>
<pubDate>Fri, 11 Jul 2008 02:26:30 +0000</pubDate>
<dc:creator>Wendell</dc:creator>
<guid>http://caminholivre.wordpress.com/?p=208</guid>
<description><![CDATA[Não, eu  não estava fora de nosso planeta. Estava apenas tentando colocar as coisas em ordem para]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">Não, eu  não estava fora de nosso planeta. Estava apenas tentando colocar as coisas em ordem para enfim, entrar nas minha merecidas férias escolares. Faltam três períodos e duas matérias para ajustar as contas com a faculdade e me formar.</p>
<p style="text-align:justify;">Dezembro de 2009 está aí, apesar de minha namorada insistir em dizer que chega 2020 mas não chega dezembro de 2009, ainda penso que está mais próximo que imagino. Também pudera, dois anos e meio de estudos, noites mal dormidas, fins de semana e feriados perdidos e um pouquinho de malandragem (ninguém é de ferro né) fazem parte do contexto.</p>
<p style="text-align:justify;">Terça entrei de férias. Finalizei o período com uma amarga prova de Administração. Ufa!!! Ainda bem que já havia passado porque literalmente a prova tava digamos, "osso".</p>
<p style="text-align:justify;">Pretendo nessas férias colocar algumas coisas em ordem. Não irei definitivamente abandonar os livros porque tenho algumas missões a cumprir nesses próximos vinte e poucos dias de barriga pra cima. Isso em tese, porque férias do trabalho mesmo só em agosto, primeira quinzena. Muitos devem se perguntar que maluco é esse que tira férias em agosto, após as férias escolares. Bem, a resposta é simples: Não tive competência em me casar e por isso não tenho precedência na escolha dos períodos de férias escolar vez que não tenho nenhuma prole pra tratar. Os casados nessa hora ficam no lucro.</p>
<p style="text-align:justify;">Esse primeiro semestre de 2008 foi diferente de tudo que já passei nessa vida. Nunca gastei tanto com minha saúde. No início foi um maldito <a href="http://caminholivre.wordpress.com/2008/01/15/uma-pedra-em-meu-caminho/" target="_blank">cálculo renal</a>. Esse filho de uma boa pedra literalmente me derrubou. Fiz uma cirurgia e aparentemente estou bem. Ao menos não senti nenhuma cólica. Quando achei que as coisas iriam voltar à sua normalidade, "rá" (me permita Viviane),  um <a href="http://pt.wikipedia.org/wiki/Aedes_aegypti" target="_blank">Aedes Aegypti</a> entrou por alguma fresta de minha janela e cometeu o crime. Foram mais de quinze dias na pior. É uma merda essa tal de <a href="http://caminholivre.wordpress.com/2008/04/15/ate-quando-teremos-de-conviver-com-isso/" target="_blank">dengue</a>. Não tem como descrever isso. Mas como desgraça pouca é bobagem, após trabalhar durante todo o período dengoso, pois só diagnosticaram a doença no final, resolvi chutar o balde. Visitei um dentista e ranquei meus cisos. Acho que isso vai dar um livro. Mais duas semanas com o rosto inchado e doendo. Olha que foram só os do lado esquerdo, faltavam mais dois. Após três semanas, visitei a dentista e com a cara os dentes e a coragem extraí os que faltavam, esperando aquela agonia novamente. Pasmem, foi tudo tranquilo até demais. Enfarado de antibióticos, anti-inflamatórios e analgésicos, passei pela prova dos nove. Estava tudo na perfeita ordem, mas...  tem jeito não, tinha que fechar o semestre com mais um enguiço pra completar a "veiêira". Meu joelho esquerdo estourou. Tô parecendo o <a href="http://www.starwars.com/databank/droid/c3po/" target="_blank">C3PO</a> andando. O coitado não dobra nem a base de "reza braba". Agora tô aqui, só no gelo e na esperança de ficar bom logo.</p>
<p style="text-align:justify;">Enquanto curto essa tendinite, acredito ser por causa de minhas corridas, tirei dois dias pra estudar umas coisas aqui e efetuar uns testes. Primeiro detonei meu Hardy após instalar o drive da minha placa de vídeo. Essa história toda pode ser conferida <a href="http://caminholivre.wordpress.com/2008/03/11/enquanto-o-meu-nao-chega-eu-uso-o-deles/" target="_blank">aqui</a>. A <a href="http://linux.via.com.tw/support/downloadFiles.action" target="_blank">VIA</a> resolveu vestir a camisa e está melhorando seus drives para o Linux. Até que ficou mais ou menos, mas falta muito ainda. Após instalar  detectei que vídeos não rodavam. Aí me perguntei se vale a pena ter um sistema aleijado. Pra desinstalar é uma barbada, roda-se o comando e o sistema retorna com a última configuração do Xorg. Até aí tudo bem, mas como sou distraído, acabei alterando as configurações do mesmo e não consegui fazer a criança voltar ao normal.</p>
<p style="text-align:justify;">Aproveitando essa bobagem, resolvi radicalizar. Não pensem que abandonei o barco. Jamais farei isso, pelo menos não tenho essa intenção. Após um becape de meus dados através do modo texto, instalei o  <a href="http://badvista.fsf.org/" target="_blank">Windows Vista</a> para testes. É, muitos vão pensar que os remédios tiveram efeito colateral e que pirei mesmo. Mas não foi dessa vez. Deixei 15 Gb no disco para testar essa "revolução" da Microsoft. Bem, vou me ater apenas a um pequeno comentário: Tem gente que ainda adora sofrer. Essa é minha visão e avaliação em relação ao sistema. Ruim é pouco, não em termos de beleza e frescuras. O Aero é interessante, mas nada que se aproxime do Compiz. Mas o que me matou mesmo foi a rede wireless. Conectava, começava a navegar e depois caía. Parece que estava cronometrado. Após ler, reler, visitar o Baboo, não consegui nada além da certeza de que realmente essa versão é ruim demais. Só a instalação básica do sistema ocupou 9.5Gb da partição destinada ao teste. O Hardy instalado com tudo o que preciso ocupa míseros 4Gb. Sem cometários.</p>
<p style="text-align:justify;">Bem que tentei fazer um teste mais profundo. Ia deixar em dual boot, mas ainda bem que não deu. Fiquei apenas 6 horas com ele instalado. Voltei com meu Ubuntu Hardy e tô aqui agora escrevendo este post e baixando as 27 atualizações para o <a href="http://www.netbeans.org/downloads/" target="_blank">NetBeans 6.1</a>. Sábado começo a estudar Java e espero não tropeçar nessa linguagem no próximo período da faculdade, porque nesse que terminei foi muito complicado, mas comentarei isso numa próxima oportunidade. Agora vamos à luta e espero que o próximo semestre seja melhor e com menos encosto.</p>
<p style="text-align:justify;">
]]></content:encoded>
</item>
<item>
<title><![CDATA[Installing Ubuntu on a OLPC Xo - Part 1]]></title>
<link>http://basskozz.wordpress.com/2008/07/10/installing-ubuntu-on-a-olpc-xo-part-1/</link>
<pubDate>Thu, 10 Jul 2008 15:01:59 +0000</pubDate>
<dc:creator>basskozz</dc:creator>
<guid>http://basskozz.wordpress.com/2008/07/10/installing-ubuntu-on-a-olpc-xo-part-1/</guid>
<description><![CDATA[Well thanks to the Ubuntu On OLPC XO wiki page I was able to successfully install Ubuntu on my OLPC.]]></description>
<content:encoded><![CDATA[<p>Well thanks to the <a href="http://wiki.laptop.org/go/Ubuntu_On_OLPC_XO">Ubuntu On OLPC XO</a> wiki page I was able to successfully install Ubuntu on my OLPC.<br />
I did however run into a few hitches.</p>
<p><span style="text-decoration:underline;"><strong><big><big>1. Wireless Internet Connection</big></big></strong></span></p>
<p>The wiki page doesn't make reference to how to setup WEP wireless connection, it only mentions <em>WPA </em>(<a href="http://wiki.laptop.org/go/Ubuntu_On_OLPC_XO#NETWORKING"><span class="toctext">NETWORKING</span></a>) so I had to do a bit of research: <a href="http://olpcnews.com/forum/index.php?topic=2967.msg23697#msg23697">How to connect to wireless (WEP) in ubuntu?</a><br />
turns out that the following does the trick: <code><br />
</code></p>
<blockquote><p><code>iwconfig eth1 essid "mySSID" key mywepkey</code><br />
<code>sudo dhclient eth1</code></p></blockquote>
<p>Now I had to figure out how to add this to a startup script so that it would automatically connect to my wireless router upon boot up: <a id="thread_title_854332" href="http://ubuntuforums.org/showthread.php?t=854332">Automatic Wireless Connection (At Startup)?</a><br />
All I had to do was add the following to <em>/etc/network/interfaces</em></p>
<blockquote><p><code># Wireless Connection</code><br />
<code>iface eth1 inet dhcp</code><br />
<code>wireless-key hex-key</code><br />
<code>wireless-essid ssid</code></p>
<p><code>auto eth1</code></p></blockquote>
<p>where <em><strong>hex-key</strong></em> = my WEP hex key &#38; <strong><em>ssid</em></strong> = my routers wireless SSID</p>
<p><span style="text-decoration:underline;"><strong><big><big>2. Mouse Problems<br />
</big></big></strong></span><br />
The<span class="toctext"> </span><a href="http://wiki.laptop.org/go/Customizing_Ubuntu_for_XO#Mouse_problems"><span class="toctext">Customizing Ubuntu for XO</span></a> wiki page explains how to fix the tap-click issue and sensitivity, however the sensitivity issue I am having is that my mouse is too insensitive, My mouse pointer <strong>FLY's</strong> across the screen when I move my finger, so instead of using the wiki's recommened:<br />
<code>xset m 1/4 0</code><br />
I am using:<br />
<code>xset m 25/20 0</code><br />
and it is much better now.</p>
<p><span style="text-decoration:underline;"><strong><big><big>3. Screen Saver<br />
</big></big></strong></span><br />
The first thing I noticed was there was no screensaver installed, when I went to <em>Settings &#62; Screensaver Settings</em>, I got the following error: <img src="http://i4.photobucket.com/albums/y105/basskozz/OLPC/screensaversettings-error.png" alt="screensaver-settings-error" /><br />
I was able to install <a href="http://www.jwz.org/xscreensaver/" target="_blank">xscreensaver</a>, but I got another error every time I made a change to xscreensaver's settings "<em>Directory does not exist: /usr/share/backgrounds</em><em></em>" a quick google search and I found a solution: <a href="https://bugs.launchpad.net/ubuntu/+source/xscreensaver/+bug/129769" target="_blank">https://bugs.launchpad.net/ubuntu/+source/xscreensaver/+bug/129769</a><br />
<code>sudo apt-get install screensaver-default-images</code><br />
Fixed :)</p>
<p>Part 2 of my setup woe's comming soon...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Instalación manual de Xorg y KDE]]></title>
<link>http://debianduim.wordpress.com/2008/07/06/instalacion-manual-de-xorg-y-kde/</link>
<pubDate>Sun, 06 Jul 2008 12:54:35 +0000</pubDate>
<dc:creator>anduim</dc:creator>
<guid>http://debianduim.wordpress.com/2008/07/06/instalacion-manual-de-xorg-y-kde/</guid>
<description><![CDATA[Yo elegí en su día elegí KDE como entorno de escritorio, así que ahí van los pasos a seguir par]]></description>
<content:encoded><![CDATA[<p>Yo elegí en su día elegí KDE como entorno de escritorio, así que ahí van los pasos a seguir para instalar Xorg y KDE sin tener ningún entorno anterior, es decir, desde la consola.</p>
<p>Lo primero de todo es instalar Xorg:</p>
<p><span style="color:#3333ff;"><code>sudo aptitude install xserver-xorg xfonts-base</code></span></p>
<p>Durante la instalación, es posible que nos pregunte la resolución. Ahora, dependiendo de la tarjeta gráfica que tengamos:</p>
<p><span style="color:#3333ff;"><code>sudo aptitude install xserver-xorg-video-<strong>ati</strong> xserver-xorg-video-vesa</code></span></p>
<p>En caso de ser cualquier otra tarjeta, podemos buscarla haciendo un <span style="color:#3333ff;"><code>aptitude search xserver-xorg-video-</code></span> y elegir la nuestra.  De todas formas, en un artículo posterior explicaré como instalar los drivers NO PROPIETARIOS de la <strong>ATI Radeon 9200SE.</strong></p>
<p>Con esto ya tenemos instalada la base del sistema. Ahora vamos a instalar KDE y KDM (gestor de acceso):</p>
<p><span style="color:#3333ff;"><code>sudo aptitude install kdebase kdm kde-i18n-es</code></span></p>
<p>De camino, instalamos todo lo relacionado con el audio:</p>
<p><span style="color:#3333ff;"><code>sudo aptitude install alsa-base alsa-utils alsa-tools kmix</code></span></p>
<p>En teoría, ya está todo. Eso si, KDE está instalado si nada prácticamente, ni aplicaciones ni nada por el estilo. Luego las iremos añadiendo. Reiniciamos el sistema, y debería aparecernos la pantalla de kdm para identificarnos:</p>
<p><span style="color:#3333ff;"><code>reboot</code></span></p>
<p>Si no fuese así, hacemos un</p>
<p><span style="color:#3333ff;"><code>dpkg-reconfigure xserver-xorg</code></span></p>
<p>Una vez llegados a este punto, podemos empezar a instalar aplicaciones (con aptitude) para nuestro entorno, dentro de las cuales os recomiendo las siguientes:</p>
<ul>
<li><a href="http://es.openoffice.org/" target="_blank">OpenOffice</a>: paquete integrado sustituto de Microsoft Office.</li>
<li><a href="http://es.wikipedia.org/wiki/IceWeasel" target="_blank">Firefox</a>: para mi el mejor navegador que hay. En Debian lo deberéis instalar como Iceweasel.</li>
<li><a href="http://akregator.kde.org/" target="_blank">Akregator</a>: un buen lector de feeds/rss.</li>
<li><a href="http://kopete.kde.org/" target="_blank">Kopete</a>: mensajería instantánea multicuenta y multiprotocolo (msn, yahoo, jabber, etc..).</li>
<li><a href="http://freshmeat.net/projects/kmldonkey/" target="_blank">Kmldonkey</a>: para descargas p2p de la red edonkey (amule) y torrent.</li>
<li><a href="http://konversation.kde.org/" target="_blank">Konversation</a>: un buen cliente de IRC.</li>
<li><a href="http://es.wikipedia.org/wiki/Amarok_%28software%29" target="_blank">Amarok</a>, <a href="http://es.wikipedia.org/wiki/Audacious_Media_Player" target="_blank">audacious</a>: reproductores para tus mp3.</li>
<li><a href="http://www.mplayerhq.hu/" target="_blank">Mplayer</a>: Reproductor de vídeo</li>
<li><a href="http://es.wikipedia.org/wiki/K3b" target="_blank">K3b</a>: utilidad para grabación de cd/dvd</li>
<li><a href="http://ksmoothdock.sourceforge.net/" target="_blank">Ksmoothdock</a>: una barra de aplicaciones, al estilo de Avant Window Manager, pero mas simple y sin tanto efecto.</li>
<li>y un sin fin mas de aplicaciones que encontrarás...</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Linux + Xorg + VMware = trouble]]></title>
<link>http://basskozz.wordpress.com/?p=4</link>
<pubDate>Fri, 04 Jul 2008 18:45:46 +0000</pubDate>
<dc:creator>basskozz</dc:creator>
<guid>http://basskozz.wordpress.com/?p=4</guid>
<description><![CDATA[Apparently there is a severe bug that relates to multiple distributions of Linux (I am using Ubuntu)]]></description>
<content:encoded><![CDATA[<p>Apparently there is a severe bug that relates to multiple distributions of Linux (I am using Ubuntu) and it has to do with VMware and Xorg.  This bug causes the keyboard to go all out of whack when using VMware in full screen mode. As of right now there isn't a solution to the problem but there are a few workarounds:</p>
<ol>
<li>execute 'setxkbmap' from the terminal</li>
<li>In Ubuntu, Go to Applications &#62; Other &#62; Keyboard Layout, and remove the keyboard layout and then add it back and re-apply</li>
</ol>
<p>Hopefully someone will correct this issue soon.  But for now it seems like everyone is passing the buck (Xorg is blaming VMware, VMware is blaming Linux &#38; Xorg, etc...)</p>
<p>If anyone has some incite or other work-arounds please post.</p>
<p><strong>Links:<br />
</strong>LaunchPad: <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/195982" target="_blank">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/195982</a><br />
VMware Forums: <a href="http://communities.vmware.com/message/975867" target="_blank">http://communities.vmware.com/message/975867</a><a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/195982" target="_blank"></a><br />
Ubuntu Forums Posts:</p>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=812402" target="_blank">SCIM / Keyboard Layout Issues</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=729510" target="_blank">Broken Shift &#38; CAPS LOCK keys - SCIM</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=727386" target="_blank">My KVM Breaks Input Devices</a></li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Dual Screen for Dell Latitude on Hardy Heron]]></title>
<link>http://sidrit.wordpress.com/?p=21</link>
<pubDate>Fri, 04 Jul 2008 08:32:31 +0000</pubDate>
<dc:creator>sid</dc:creator>
<guid>http://sidrit.wordpress.com/?p=21</guid>
<description><![CDATA[Few days back i refound in the office this Dell Latitude laptop (with a german keyboard layout) that]]></description>
<content:encoded><![CDATA[<p>Few days back i refound in the office this Dell Latitude laptop (with a german keyboard layout) that we simply were not using in a while. It was running XP and not too well either.</p>
<p>So wanting to make some use of it for some mobile task i decided to wipe it an place 8.04 on it.</p>
<p>The installation went fine. Actually even a US Robotics Wireless PCI card was working right out of the box. Following the true Ubuntu spirit.</p>
<p>The only thing i was unable to do from the GUIs was configuring the 2nd screen.<br />
Then let's attempt another approach .</p>
<p><!--more--></p>
<p><code>lspci &#124; grep -i vga<br />
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY<br />
</code></p>
<p>Even after installing the restricted ATI drivers i had so far no luck, so manually will be the way.</p>
<p><strong>xrandr </strong>is a command line tool that helps define and configure parameters for the displayed output.</p>
<p><code>xrandr -q<br />
Screen 0: minimum 320 x 200, current 2048 x 768, maximum 2048 x 768<br />
<strong> VGA-0</strong> connected 1024x768+1024+0 (normal left inverted right x axis y axis) 304mm x 228mm<br />
1024x768      60.0*+ 75.1 70.1 60.0* 59.9<br />
832x624      74.6<br />
800x600      72.2 75.0 60.3 56.2<br />
640x480      75.0 72.8 69.6 66.6 60.0<br />
720x400      70.1<br />
DVI-0 disconnected (normal left inverted right x axis y axis)<br />
<strong> LVDS</strong> connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm<br />
1024x768      60.0*+ 60.0<br />
800x600      60.3<br />
640x480      59.9<br />
S-video disconnected (normal left inverted right x axis y axis)</code></p>
<p>From the output of the xrandr -q command it's possible to tell that LVDS is my laptop screen and VGA-0 the externally connected one.</p>
<p>To find out the resolution required for the 2nd screen we can still use the same command line tool without having to calculate it manually.</p>
<p><code>xrandr --output VGA-0 --auto --right-of LVDS<br />
xrandr. screen cannot be larger than 1024x1024 (desired size <strong>2048x768</strong>)<br />
</code></p>
<p>Now let's edit the "Screen" section in xorg.conf</p>
<p><code>sudo gedit /etc/X11/xorg.conf</code></p>
<p><code>Section "Screen"<br />
Identifier     "Default Screen"<br />
Monitor               "Configured Monitor"<br />
Device         "Configured Video Device"<br />
Subsection "Display"<br />
Modes "1024x768"<br />
<strong> Virtual       2048 768</strong><br />
EndSubSection<br />
EndSection</code></p>
<p>Once the file is edited, saved and closed, restart X ( Ctrl + alt + BackSpace ).<br />
Afterwards to make the 'magic' happen:</p>
<p><code>xrandr --output VGA-0 --auto --right-of LVDS</code></p>
<p>Both screens will turn off for a moment that turn on again with the new settings.</p>
<p>That's it :)</p>
<p><em>Note: so far i have not been able to get this running at boot. A solution is to insert it in the list of programs to run at session start  System-&#62;Preferences-&#62;Sessions-&#62;Startup Programs.</em></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Como instalar Debian directamente con KDE, GNOME o XFCE]]></title>
<link>http://debianduim.wordpress.com/2008/07/03/como-instalar-debian-directamente-con-kde-gnome-o-xfce/</link>
<pubDate>Thu, 03 Jul 2008 16:46:20 +0000</pubDate>
<dc:creator>anduim</dc:creator>
<guid>http://debianduim.wordpress.com/2008/07/03/como-instalar-debian-directamente-con-kde-gnome-o-xfce/</guid>
<description><![CDATA[Si hacemos la instalación desde el primer cd de Debian 4.0r3 (o la versión que sea), y tenemos cla]]></description>
<content:encoded><![CDATA[<p>Si hacemos la instalación desde el primer cd de <strong>Debian 4.0r3</strong> (o la versión que sea), y tenemos claro que queremos unos de estos tres escritorios: KDE, GNOME o XFCE, podemos hacerlo directamente especificando en el arranque del cd lo siguiente:</p>
<blockquote><p><span style="color:#0000ff;"><code><span>installgui tasks="kde-desktop, standard"<br />
installgui tasks="gnome-desktop, standard"<br />
installgui tasks="xfce-desktop, standard"</span></code></span></p></blockquote>
<p>De esta forma, evitaremos el paso posterior de instalar el entorno de escritorio manualmente. Si la instalación la hacemos mediante <strong>netinstall</strong>, deberemos desmarcar la opción ENTORNO DE ESCRITORIO cuando nos pregunte (ya que si no nos instalará GNOME), y dejaremos únicamente marcada la opción SISTEMA ESTANDAR o SISTEMA BASE.</p>
<p>Si tu caso es diferente, y solo dispones de la consola por que has instalado lo mínimo, en el siguiente post explico como instalé Xorg y KDE.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Firefox 3 scroll wheel finally fixed!!]]></title>
<link>http://anjilslaire.wordpress.com/?p=46</link>
<pubDate>Thu, 03 Jul 2008 15:01:25 +0000</pubDate>
<dc:creator>anjilslaire</dc:creator>
<guid>http://anjilslaire.wordpress.com/?p=46</guid>
<description><![CDATA[OK, I&#8217;m heading out the door on a trip in a few minutes, but I wanted to post the fix to the s]]></description>
<content:encoded><![CDATA[<p>OK, I'm heading out the door on a trip in a few minutes, but I wanted to post the fix to the scroll issues I've been experiencing on Firefox 3 in Linux (see previous posts).</p>
<p>Add the following to your mouse settings of /etc/X11/xorg.conf:</p>
<p><em>Section "InputDevice"<br />
Identifier    "Configured Mouse"<br />
Driver        "mouse"<br />
Option        "CorePointer"<br />
Option        "Device"    "/dev/input/mice"<br />
Option        "Protocol"    "ExplorerPS/2"<br />
<strong> Option        "ZAxisMapping"    "4 5"<br />
Option        "ButtonMapping" "1 2 3 4 5"<br />
Option         "Buttons"     "5"</strong><br />
Option        "Emulate3Buttons"    "false"<br />
EndSection</em></p>
<p>I didn't have 2 of 3 the lines noted above. This is assuming you have a standard 3-button/scrolling mouse thats cheaply available everywhere. Then reload xorg (ctrl+alt+backspace)</p>
<p>Hope this helps. I'm off to blow stuff up over the holiday :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[X.org 7.4? Forse ci siamo]]></title>
<link>http://markoblog.wordpress.com/?p=1540</link>
<pubDate>Wed, 02 Jul 2008 07:58:51 +0000</pubDate>
<dc:creator>markostyle</dc:creator>
<guid>http://markoblog.wordpress.com/?p=1540</guid>
<description><![CDATA[Che il ciclo di sviluppo di X.Org 7.4 si stesse protraendo per un numero di mesi superiore rispetto ]]></description>
<content:encoded><![CDATA[<p><a href="http://www.ossblog.it/tag/xorg"><img class="post" style="border-color:white;" src="http://static.blogo.it/ossblog/xorg_180.png" border="0" alt="X.org" width="180" height="144" align="left" /></a>Che il ciclo di sviluppo di X.Org 7.4 si stesse protraendo per un numero di mesi superiore rispetto a quanto anticipato lo si era capito già da un pezzo: prima lo si aspettava per febbraio, poi per maggio e poi per…boh, si era persa di vista la possibile data di rilascio finale (nonostante si fosse arrivati alla terza <em>release candidate</em>).</p>
<p>L’annuncio da parte di Adam Jackson (release manager per X.Org 7.4) della <a href="http://lists.freedesktop.org/archives/xorg/2008-June/036653.html">disponibilità della quarta <em>release candidate</em></a> potrebbe però rappresentare la cosiddetta “luce in fondo al tunnel”. Il rilascio della versione 1.4.99.904 del server X include ben ottantun cambiamenti, tra le quali figurano numerose correzioni relative a problemi di sicurezza e <em>memory leak</em>.</p>
<p>Va notato che, nonostante il <a href="http://bugs.freedesktop.org/show_bug.cgi?id=10101"><em>bug tracker</em> di X.Org 7.4</a> risulti ora completamente vuoto, la risoluzione di diversi bug scoperti nei mesi scorsi è stata posticipata al rilascio di X.Org 7.5, previsto, se tutto andrà bene, nei primi mesi del 2009.</p>
<p><strong>Aggiornamento</strong>. A distanza di poche ore è già stata rilasciata una <a href="http://lists.freedesktop.org/archives/xorg/2008-June/036690.html">nuova release candidate</a>, anche se questa volta le correzioni sono di poco valore.</p>
<p style="text-align:right;">[via: phoronix.com &#124;&#124; ossblog.it]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[X.org 7.4? Forse ci siamo]]></title>
<link>http://darksun88.wordpress.com/?p=148</link>
<pubDate>Wed, 02 Jul 2008 01:53:57 +0000</pubDate>
<dc:creator>DarkSun</dc:creator>
<guid>http://darksun88.wordpress.com/?p=148</guid>
<description><![CDATA[
Che il ciclo di sviluppo di X.Org 7.4 si stesse protraendo per un numero di mesi superiore rispetto]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/90/X.Org_Logo.svg/200px-X.Org_Logo.svg.png" alt="" /></p>
<p>Che il ciclo di sviluppo di X.Org 7.4 si stesse protraendo per un numero di mesi superiore rispetto a quanto anticipato lo si era capito già da un pezzo: prima lo si aspettava per febbraio, poi <a href="http://www.ossblog.it/post/4087/multi-pointer-x-entra-ufficialmente-in-xorg/">per maggio</a> e poi per…boh, si era persa di vista la possibile data di rilascio finale (nonostante si fosse arrivati alla terza <em>release candidate</em>).</p>
<p>L’annuncio da parte di Adam Jackson (release manager per X.Org 7.4) della <a href="http://lists.freedesktop.org/archives/xorg/2008-June/036653.html">disponibilità della quarta <em>release candidate</em></a> potrebbe però rappresentare la cosiddetta “luce in fondo al tunnel”. Il rilascio della versione 1.4.99.904 del server X include ben ottantun cambiamenti, tra le quali figurano numerose correzioni relative a problemi di sicurezza e <em>memory leak</em>.</p>
<p>Fonte: <a href="http://www.ossblog.it/post/4224/xorg-74-forse-ci-siamo" target="_blank">Oss Blog</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[X.Org 7.4 prereleases ready to test in Gentoo]]></title>
<link>http://dberkholz.wordpress.com/?p=433</link>
<pubDate>Tue, 01 Jul 2008 19:30:53 +0000</pubDate>
<dc:creator>Donnie Berkholz</dc:creator>
<guid>http://dberkholz.wordpress.com/?p=433</guid>
<description><![CDATA[Last night, Dave Airlie released libdrm 2.3.1, which set the stage for all the pieces of the X.Org 7]]></description>
<content:encoded><![CDATA[<p>Last night, Dave Airlie released libdrm 2.3.1, which set the stage for all the pieces of the X.Org 7.4 prereleases to actually work (with a couple mesa patches). <strong>If you'd like to test 7.4, here's how</strong>. This assumes you're already running an ~arch (testing) system--if you aren't, you might want to hold off on testing hard-masked packages. <strong>This may not work with binary drivers</strong>--particularly ati-drivers. It looks like nvidia-drivers has preliminary support for xorg-server 1.5.</p>
<p><code>echo "<br />
# xorg-server-1.5 prerelease<br />
=x11-base/xorg-server-1.4.99*<br />
=media-libs/mesa-7.1*<br />
x11-proto/dri2proto<br />
=x11-libs/libdrm-2.3.1*<br />
" &#62;&#62; /etc/portage/package.unmask<br />
emerge -va xorg-server<br />
emerge -va1 $(qlist -I x11-drivers)</code></p>
<p>I've still got 16 more packages to bump before everything's up to date, but the main parts are in place.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Open Suse 11 on Laptop sialan...]]></title>
<link>http://danoe87.wordpress.com/?p=43</link>
<pubDate>Mon, 30 Jun 2008 01:35:29 +0000</pubDate>
<dc:creator>danoe87</dc:creator>
<guid>http://danoe87.wordpress.com/?p=43</guid>
<description><![CDATA[Kenapa laptop sialan karena nih laptop ga ada beres2 nya sama sekali. dah diinstal fedora 9 berulang]]></description>
<content:encoded><![CDATA[<p>Kenapa laptop sialan karena nih laptop ga ada beres2 nya sama sekali. dah diinstal fedora 9 berulang-ulang sampai downgrade ke fedora 6 adaaa aja masalahnya.tapi ini laptop siapa ya... ?</p>
<p>Alkisah ada seorang teman yang sangat tertarik ke jaringan dan meminta laptopnya yang hampir terlupakan gara2 ga pernah dipake (Toshiba Satellite A45-S150) sampe dia punya laptop baru (dasar orang kaya....) maka diinstallah fedora 6 trus upgrade ke fedora 9 gara2 ngetes perl buat tugas Manejemen Jaringan dari situlah masalah demi masalah terjadi sempat juga kepirkiran pake Ubuntu tapi ga jadi soalnya yang punya ga berminat di Ubuntu. Setelah sekian lama laptopnya ga diurus sama yang punya jadilah saya baby siiter nih laptop yang tiap hari setia gimana caranya ngebuat laptop ini bisa jalan dengan semestinya</p>
<p>Suatu saat dirilislah OpenSuse 11 dan kebetulan teman2 Komunitas Linux Malang minta download file isonya setelah download iseng2 diinstall aja di laptop ini langsung saya takjub sama keentengan OpenSuse11 dan KDE 4 (grafisnya juga bagus banget, interfacenya yahuud) tapiiii ada masalah lagi.. Xwindownya ga bisa full screen bahkan setelah otak atik display di YAST... aseeem.... akhirnya setelah tanya sana-sini (termasuk Om Google) akhirnya diputuskanlah untuk reconfigure Xorg atas saran dan bimbingan mas Dedy (makasih Bosss... :D) akhirnya selesailah sudah dan sekarang laptop ini bisa running well (dan semoga terus begitu) beserta efek desktop anjriitnya.... ternyata desktop CLI (Command Line Interface) sangat powerfull bisa buat benerin Xwindow hahaha :D  Thannx God U give me one more knowledge...</p>
<p>Postingan ini ditulis dengan menggunakan laptop sialan....</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[[ Interface amigável para computadores antigos ]]]></title>
<link>http://lauraste.wordpress.com/?p=38</link>
<pubDate>Sat, 28 Jun 2008 07:27:10 +0000</pubDate>
<dc:creator>laurassb</dc:creator>
<guid>http://lauraste.wordpress.com/?p=38</guid>
<description><![CDATA[(Descobrimos porque não estávamos conseguindo usar o Puppy 4 após instalado no HD do computador a]]></description>
<content:encoded><![CDATA[<p>(Descobrimos porque não estávamos conseguindo usar o Puppy 4 após instalado no HD do computador antigo...)</p>
<p>Situando, o <strong>computador em questão</strong> (para quem não leu os posts anteriores <a href="http://lauraste.wordpress.com/2008/06/05/primeira-maquina" target="blank"> Primeira máquina montada com sucesso!</a> e <a href="http://lauraste.wordpress.com/2008/06/26/dualboot/" target="blank">Experimentando novas opções de dualboot nas máquinas</a>) é <strong>um Pentium MMX</strong> 233MHz, com 64Mb de RAM.</p>
<p>Rodando o Puppy 4 em live CD, era reconhecido o <strong>mouse serial</strong>, porém após a instalação no HD de 3Gb, com 122Mb de Swap, o teclado funcionou, mas o mouse não. Ao reiniciar, na hora de reconhecer os dispositivos, ele identificava o mouse como <strong>PS/2 erroneamente</strong>.</p>
<p>Conheça uma de nossas fontes de pesquisa na internet: <a href="http://www.portugal-a-programar.org/forum/index.php?topic=20505.0" target="blank"> Como instalar Puppy Linux para o Disco</a>.</p>
<p>Acreditando que  não rodaria em modo <strong>XORG</strong> (modo gráfico pesado e sofisticado), utilizamos em todas as tentativas o modo XVESA. Parece que esse modo não é muito eficiente, não nos ofereceu opção de alterar a resolução da tela, nem a determinação do tipo de mouse utilizado (no caso, um serial). Então, resolvemos tentar o modo XORG e, finalmente, tudo <strong>funcionou</strong> muito bem!</p>
<p><strong>Distro Puppy 4 aprovada</strong>!!!</p>
<p>Próxima saga: Instalar Kurumin 7, segundo as recomendações do Mestre Morimoto (confira o link para o tutorial em <a href="http://lauraste.wordpress.com/2008/06/26/dualboot/" target="blank">Experimentando novas opções de dualboot nas máquinas</a>).</p>
<p>Em breve também: experiências com <a href="http://fluxbuntu.org/" target="blank">Fluxbuntu 7.10</a> e <a href="http://superdownloads.uol.com.br/download/40/linux-mint/" target="blank">Linux Mint </a> (agradecimentos a Anderson Apolinario, que deu essa dica no comentário do post anterior).</p>
<p>Deixe um comentário <a href="http://lauraste.wordpress.com/2008/06/28/interface-amigavel-para-computadores-antigos/#respond">aqui</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[O Kernel Linux não come poeira!]]></title>
<link>http://xanymorex.wordpress.com/?p=20</link>
<pubDate>Fri, 27 Jun 2008 18:19:57 +0000</pubDate>
<dc:creator>xanymorex</dc:creator>
<guid>http://xanymorex.wordpress.com/?p=20</guid>
<description><![CDATA[A AMD liberou a versão 8.6 do driver proprietário Catalyst para as placas gráficas Radeon GPU, ta]]></description>
<content:encoded><![CDATA[<p>A <a href="http://www.asus.com/" target="_blank">AMD</a> liberou a <a href="http://ati.amd.com/support/drivers/linux/linux-radeon.html" target="_blank">versão 8.6 do driver proprietário Catalyst</a> para as placas gráficas Radeon GPU, também conhecida como <em>fglrx</em>. Essa versão corrige muitos bugs e oferece uma rotina de instalação melhorada. Adicionalmente, o driver dá suporte à nova geração de chips gráficos Radeon. Entretanto, a nova versão ainda não suporta as versões de pré-lançamento do Servidor X 1.5, o qual é fornecido junto com o Fedora e faz parte do X.org 7.4.</p>
<p>Dave Airlie tem publicado <a href="http://thread.gmane.org/gmane.comp.video.dri.devel/30949" target="_blank">patches</a> de Gerenciamento de Renderização Direta (DRM - <em>Direct Rendering Manager</em>) para a versão de pré-lançamento do kernel Linux 2.6.26 que case o micro-código para essa liberação pela AMD e forneça suporte 3D para as GPUs R500 no DRM do kernel. Para alcançar a aceleração 3D com as séries X1000 da Radeon, novas versões para os drivers X.org <strong>ati</strong> e <strong>radeonhd</strong> e um novo Mesa se faz necessário.</p>
<p>Linus Torvalds integrou os patches do Airle na árvore principal de desenvolvimento do kernel 2.6.26, no qual, além de ocorrer grande submissão de patches, seu ciclo de desenvolvimento já é bastante avançado. A Nvidia liberou, para as arquiteturas Linux x86-32 e x86-64, novas versões de seus drivers proprietários, que também possuem correções para o X Server 1.5 e ainda suportam a última geração de GPUs, recentemente introduzida no mercado. O código na árvore principal de desenvolvimento do driver <strong>nv</strong> do X.org para placas Nvidia começou a dar suporte para essa nova geração de GPU recentemente, além de também conseguir cooperar com muitos chips móveis GeForce da série 9.</p>
<p>Os desenvolvedores da Intel estão liberando a versão 2.3.2 de seus drivers de código aberto para o X.org, que inclui muitas correções de bugs. Os programadores já estão trabalhando na geração 2.4 desses drivers para integrar o suporte a HDMI e ao DisplayPort. A nova geração de drivers dará suporte a chipsets G45 e utilizará o recente gerenciador de memória GEM.</p>
<p>Desde o último log do kernel Linux, os mantenedores das séries estáveis do Linux (LSS - <em>Linux Stable Series</em>) lançaram as versões 2.6.25.7 e 2.6.25.8 do kernel. Ambas as versões corrigem vários bugs no kernel e melhoraram o suporte ao hardware em alguns drivers, porém os desenvolvedores do kernel não efetuaram correções explícitas relacionadas à segurança. Com a versão 2.6.25.9, as novas versões da série 2.6.25 já estão agendadas para lançamento hoje ou amanhã.</p>
<p>Resumindo: o desenvolvimento do kernel ganhou tamanha maturidade que nunca é deixado para trás. E essa é uma análise unilateral, voltada apenas a apectos do suporte, desenvolvimento e implementação de drivers e patches relacionados ao suporte de placas gráficas no Linux.</p>
<p>Saiba mais em: <a href="http://www.heise-online.co.uk/open/news/111010" target="_blank">Kernel log: New graphics drivers and stable kernels; details about Linux-staging</a>.</p>
<p>Referência - <a href="http://www.linux-magazine.com.br/noticia/o_kernel_linux_nao_come_poeira" target="_blank">Linux Magazine</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[[ Experimentando novas opções de dualboot nas máquinas ]]]></title>
<link>http://lauraste.wordpress.com/?p=26</link>
<pubDate>Thu, 26 Jun 2008 19:18:52 +0000</pubDate>
<dc:creator>laurassb</dc:creator>
<guid>http://lauraste.wordpress.com/?p=26</guid>
<description><![CDATA[1- Na máquina nova&#8230; (Experimentações diversas de dualboot: XP / Ubuntu / Ubuntustudio / Kur]]></description>
<content:encoded><![CDATA[<p><strong>1- Na máquina nova... </strong>(Experimentações diversas de dualboot: XP / Ubuntu / Ubuntustudio / Kurumin Light / Puppy)<strong><br />
</strong></p>
<p>Estávamos usando <strong>Window$ XP</strong> em dual boot com <strong>Ubuntustudio 8.04</strong> em nossa <strong>máquina principal</strong> (Pentium Dual 2,66 GHz com 1 Gb de RAM), mas resolvemos mais uma vez <strong>extinguir o primeiro</strong> e tentar <strong>sobreviver no mundo livre</strong>, ainda que com nosso <strong>pouco conhecimento</strong>. O Ubuntustudio 8.04 com relação ao 7.10 estava melhor num aspecto, pois já veio em grande parte na nossa língua e não acontecia mais travamentos nas portas PS2 (mouse e teclado), mas por outro lado, não estava saindo <strong>som nenhum</strong> (exceto algumas vezes em que executávamos o emulador zsnes). A barra inferior também não aparecia. Pesquisamos no google <strong>tentando solucionar</strong> o problema do som, mas desistimos temporariamente (<a href="http://pilinha.wordpress.com/2008/05/22/configurando-o-pulseaudio-corretamente-no-hardy-heron" target="blank">Blog do Pilinha</a>, entre outros).</p>
<p>O <a href="http://puppylinux.org" target="blank"> <strong>Puppy 4</strong> em live CD </a>na máquina nova demonstrou-se <strong>muito eficiente</strong>, reconheceu todo o hardware em poucos segundos, conectou-nos à internet com <strong>facilidade</strong>, através do Menu &#62; Network &#62; PPPoe. Fizemos a <strong>instalação</strong> dele no HD. Por já termos um grub preexistente, o instalador universal do Puppy nos instruiu a inserir manualmente algumas linhas no <strong>menu.lst</strong> que fica dentro de <strong>/boot/grub</strong>:</p>
<p>title Puppy Linux 400 full install<br />
root (hd0,0)<br />
kernel /boot/vmlinuz root=/dev/hdb1 pmedia=idehd</p>
<p>Deu tudo certo, porém optamos por <strong>não ficar com o Puppy 4</strong> por não haver nele a opção de <strong>criar um usuário</strong>, e já vimos em diversas fontes que não é seguro ficar em modo gráfico <strong>logado como root</strong>. Vamos ficar com o cd aqui arquivado para situações de erro que possam ocorrer em nossas experiências com as demais distros, pois ele é <strong>muito útil</strong>, funciona até mesmo sem HD, como todo CD live, mas com a vantagem de ser muito rápido. De interface muito <strong>amigável</strong>, parece ser uma ótima opção para máquinas com <strong>pouca memóri</strong>a (mínima de 128Mb, pois no nosso MMX de 64Mb, em modo XVESA não rodou completamente, ficando travado o mouse serial).</p>
<p>Tentamos fazer <strong>dualboot</strong> do <strong>Ubuntustudio Hardy</strong> com o <strong>Ubuntu Feisty</strong>, mas estava dando o erro a seguir (ao tentar entrar no Ubuntustudio 8.04):</p>
<p>"Log of fsck -C -R -A -a<br />
Wed Jun 25 15:13:18 2008</p>
<p>fsck 1.40.8  ( 13-Mar-2008 )<br />
/home: clean, 13087/6029312 files, 2893017/12050742 blocks<br />
fsck.ext3: Unable to resolve 'UUID=f0995bcc-63c1-4f3b-8b16-586c80aa9c6b'<br />
fsck died with exit status 8</p>
<p>Wed Jun 25 15:13:18 2008"</p>
<p><strong><br />
</strong></p>
<p>Após essa saga, baixamos o <strong>Kurumin Light</strong> e colocamos em dualboot com o <strong>Ubuntustudio Gusty</strong>. Está maravilhoso, tocando música e funcionando tudo perfeitinho. O único porém é que de vez em quando travam as saídas PS2, aí recorremos ao <strong>mouse USB</strong> para salvar os documentos abertos e reiniciar sem ter que usar o botão reset. Só vamos colocar o Ubuntustudio Hardy quando liberarem um release mais redondinho.</p>
<p><strong>2- Na máquina antiga... </strong>(Dicas para adaptar uma distro de interface amigável para computadores low-tech)</p>
<p>Estamos baixando o <strong>Kurumin 7</strong> <a href="ftp://ftp.las.ic.unicamp.br/pub/kurumin/" target="blank"> Download ISO</a> ou <a href="http://www.mininova.org/tor/1113913" target="blank"> Torrent</a> para tentar o tutorial <a href="http://www.guiadohardware.net/tutoriais/usando-kde-micros-32-mb-ram/" target="blank"><strong>Usando o KDE em micros com 32 MB de RAM</strong></a> -  e <a href="http://www.guiadohardware.net/tutoriais/instalacao-kurumin/dicas-particionamento.html" target="blank"><strong>Dicas de Particionamento</strong></a> -   (tentamos com o CD do Kurumin Light, mas não funcionou). Até agora, a única <strong>distro</strong> que funcionou no computador antigo aqui foi o <a href="http://linux.softpedia.com/get/System/Operating-Systems/Linux-Distributions/Damn-Small-Linux-4-31635.shtml#" target="blank"> <strong>Damnsmall Linux</strong></a> e queremos algo com <strong>interface mais amigável</strong>, para proporcionar uma aceitação maior por parte dos aprendizes.</p>
<p>Deixe seu <strong>comentário</strong> <a href="http://lauraste.wordpress.com/2008/06/26/dualboot/#respond">aqui. </a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Rilasciata openSUSE 11.0]]></title>
<link>http://markoblog.wordpress.com/?p=1458</link>
<pubDate>Sat, 21 Jun 2008 08:04:14 +0000</pubDate>
<dc:creator>markostyle</dc:creator>
<guid>http://markoblog.wordpress.com/?p=1458</guid>
<description><![CDATA[
In perfetto orario rispetto alla tabella di marcia, ecco che il team di sviluppo di Novell ha prese]]></description>
<content:encoded><![CDATA[<p><a href="http://markoblog.files.wordpress.com/2008/06/01.png"><img class="alignnone size-full wp-image-1459" src="http://markoblog.wordpress.com/files/2008/06/01.png" alt="" width="432" height="324" /></a></p>
<p>In perfetto orario rispetto alla tabella di marcia, ecco che il team di sviluppo di <a href="http://www.ossblog.it/categoria/novell">Novell</a> ha presentato al pubblico la versione finale di openSUSE 11.0.</p>
<p>Questa release porta con se più di <a href="http://en.opensuse.org/Testing:Features_11.0">200 nuove caratteristiche</a>, un installer completamente ridisegnato, un più veloce gestore dei pacchetti, KDE4, GNOME 2.22 e, per tutti gli amanti del “look ad ogni costo”, ovviamente anche Compiz-Fusion.</p>
<p>Lascia perplessi la scelta del browser predefinito affidato ancora una volta alla Beta 5 di Firefox 3. Vista la quasi contemporaneità dei rilasci era impossibile attenderci la versione finale del software in questione ma, considerate le tre release candidate del software, fa strano <em>portare a referto</em> una pre-release ormai <em>vecchia</em> di due mesi e mezzo.</p>
<p>In openSUSE ci hanno comunque tenuto a precisare come a breve, tramite il gestore degli update, sarà possibile aggiornare Firefox 3 alla versione finale.</p>
<p>Interessante l’inserimento di Banshee 1.0 nei pacchetti installabili di default; openSUSE 11.0 è la prima distribuzione che integra il neonato player multimediale il quale, seppur ancora giovane, ha davanti a se un roseo futuro.</p>
<p>Da segnalare infine OpenOffice.org in versione 2.4 e NetworkManager 0.7. Il tutto girerà sul Kernel Linux<a href="http://www.ossblog.it/post/3992/trovalds-presenta-linux-2625"> </a>2.6.25 e su X.Org Server 7.3.</p>
<p>openSUSE 11.0 è disponibile per il <a href="http://software.opensuse.org/">download</a> in sei diversi formati:</p>
<ul>
<li>openSUSE 11.0 DVD 32-bit</li>
<li>openSUSE 11.0 DVD 64-bit</li>
<li>openSUSE 11.0 KDE 4 32-bit Live CD</li>
<li>openSUSE 11.0 GNOME 32-bit Live CD</li>
<li>openSUSE 11.0 KDE 4 64-bit Live CD</li>
<li>openSUSE 11.0 GNOME 64-bit Live CD</li>
</ul>
<p>Maggiori informazioni sono reperibili sul <a href="http://news.opensuse.org/2008/06/19/announcing-opensuse-110-gm/">comunicato ufficiale del rilascio</a>.</p>
<p style="text-align:right;">[via: ossblog.it]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[to thread the X server (?)]]></title>
<link>http://vignatti.wordpress.com/?p=30</link>
<pubDate>Tue, 17 Jun 2008 23:39:53 +0000</pubDate>
<dc:creator>vignatti</dc:creator>
<guid>http://vignatti.wordpress.com/?p=30</guid>
<description><![CDATA[I really don&#8217;t like to read large blog posts. Anyway&#8230;
What I did so far is a separated t]]></description>
<content:encoded><![CDATA[<p>I really don't like to read large blog posts. Anyway...</p>
<p>What I did so far is a separated thread that takes care only the injection stage on the X server queue. Who is interested with the results, please read some past posts in my blog. It is currently in a very good shape (synced with post-mpx merge, all input devices are inside the thread and etc). The implementation looks like this:<br />
<code><br />
thread #1 deals with<br />
    - injection of input events from devices<br />
thread #2 deals with<br />
    - processing of input events to clients<br />
    - requests from known clients (rendering things)<br />
    - new client that tries to connect (pretty easy to do)<br />
</code></p>
<p>Now I am pondering the following:<br />
Model one:<br />
<code><br />
thread #1 deals with<br />
    - injection and processing of input events<br />
thread #2 deals with<br />
    - requests from known clients<br />
    - new client that tries to connect<br />
</code></p>
<p>It would be very very nice to let both threads totally independents. But we cannot. The event delivery depends on the window structure and the first thread must always wake up the second. Also, sometimes the processing of events take a while and the injection of events stays stucked in this model. So I came with this another:</p>
<p>Model two:<br />
<code><br />
thread #1 deals with<br />
    - injection of input events from devices<br />
thread #2 deals with<br />
    - processing of input events to clients<br />
thread #3 deals with<br />
    - requests from known clients<br />
    - new client that tries to connect<br />
</code></p>
<p>With this way the first and the second thread become not so tied and given that I'm using non blocking fds to wake up each thread (through a pipe), the server "enjoys" the effect of threads. For instance, under heavy drawing primitives only thread #3 would wake up.</p>
<p>Well, I had implemented both models here and it workish (occasionally seeing some segfaults probably due of some critical regions I forgot to lock -- now the only mutex that exists is inside the server queue of events).</p>
<p>It's hard to imagine other models mainly because the way X deals with clients are very tied in every piece of the server and it would require a lot of mutexes. But I'd love to hear anyone disagreeing with this and proposing something here!</p>
<p>=== What make things so hard ===</p>
<p>Debug a multi-thread program is really tedious, consequentially work in this kind of environment as well. And that could be a great argument to not accept an X server multi-threaded in upstream some day.</p>
<p>The thing that most pissing me off is how gdb sucks to debug the server. I'm using the last version of gdb (6.8 version and from <a href="ftp://sourceware.org/pub/gdb/snapshots/current/gdb-weekly-6.8.50.20080617.tar.bz2"> today's snapshot</a>) and it often hard lock my machine (I'm sure I had to reboot my machine a least 20 times today...sigh.) Sometimes it consumes 99% of CPU and sometimes it completely hangs my machine. Yes, this is really boring. Anyone knows some magic parameters in gdb to avoid this hard lock up? Anyway, the goal for long term is to let an option -- at compilation time -- to not use the input thread.</p>
<p>Comments?</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Debian #6: El driver de la gráfica Intel]]></title>
<link>http://linuxparatodos.wordpress.com/?p=167</link>
<pubDate>Mon, 16 Jun 2008 15:03:25 +0000</pubDate>
<dc:creator>excalibur1491</dc:creator>
<guid>http://linuxparatodos.wordpress.com/?p=167</guid>
<description><![CDATA[Pues sorprendentemente, tuve que instalar el driver de la gráfica, aunque es una Intel. No me quejo]]></description>
<content:encoded><![CDATA[<p>Pues sorprendentemente, tuve que instalar el driver de la gráfica, aunque es una Intel. No me quejo, porque más problemas tienen los usuarios que usan Ati o nVidia, que es más dificil de instalar, pero a ellos no les puedo ayudar, pues nunca lo he hecho...</p>
<p><!--more--><br />
La instalación del driver es sencilla, consiste basicamente en añadir unas lineas al archivo <em>xorg.conf</em> que se encuentra en <em>/etc/X11</em>. Lo priemro es hacer una copia de seguridad, por si acaso. Para ello sólo id a la carpeta <em>/etc/X11</em>, copiad el archivo xorg.conf y pegadlo en vuestra home.<br />
Ahora sí, procedemos a la modificación. En este archivo debeis añadir lo siguiente, con mucho cuidado de no equivocaros:</p>
<ol>
<li>El primer texto es:<br />
<table border="0">
<tbody>
<tr>
<td align="justify" bgcolor="#ffff99"><code>Section "Extensions"<br />
</code></p>
<blockquote><p><code> Option "Composite" "Enable"</code></p></blockquote>
<p><code> EndSection</code></td>
</tr>
</tbody>
</table>
<p>Y hay que pagrlo al final del largo texto que empieza con "#", es decir que será la primer sección del xorg.conf. <em>(Tabulad delante de la segunda linea)</em></li>
<li>El segundo texto es:<br />
<table border="0">
<tbody>
<tr>
<td align="justify" bgcolor="#ffff99">
<blockquote><p><code>Option	"RenderAccel" "true" # render accel is enabled by default</code></p></blockquote>
<blockquote><p><code> Option	"AllowGLXWithComposite" "true"</code></p></blockquote>
</td>
</tr>
</tbody>
</table>
<p>Y va <strong>dentro</strong>* de la sección "Device" del archivo, al final de la misma sección, es decir justo antes del "EndSection" de la sección "Device". <em>(Tabulad delante de las 2 lineas)</em></li>
<li>El tercer texto es:<br />
<table border="0">
<tbody>
<tr>
<td align="justify" bgcolor="#ffff99">
<blockquote><p><code>Option         "UseFBDev" "true"</code></p></blockquote>
<blockquote><p><code> Option	"AddARGBGLXVisuals" "True"</code></p></blockquote>
<blockquote><p><code> #also supports 1280x1024 at 60Hz</code></p></blockquote>
</td>
</tr>
</tbody>
</table>
<p>Y va <strong>dentro</strong>* de la sección "Screen" del archivo, antes del "EndSection" de la sección  "Screen". <em>(Tabulad delante de las 3 lineas)</em></li>
</ol>
<p>Ahora reiniciais y la útima cosa es instalar el apquete <em>libgl1-mesa-dri</em>, para poder usar cosas 3D como juegos o Compiz-Fusion.</p>
<p>Os pondría mi xorg.conf, pero Wordpress no permite tabulaciones, y aquí son muy importantes, por lo que os liariais aún más.</p>
<p><strong>*dentro: </strong>Dentro signfica que la sangría es mayor en esas lineas que en las lineas "Section" y "EndSection", es decir algo así:<br />
Section<br />
<span style="color:#ffffff;">-------</span>-----<br />
EndSection</p>
<p>Espero aver sido claro, adios y suerte ;)</p>
]]></content:encoded>
</item>

</channel>
</rss>
