YARSSR
Legal esse agregrador de RSS, bem simples e prático, para o GNOME.
Para que o Firefox nunca abra links em novas janelas, é só deixar essas variáveis com os seguintes valores no about:config:
browser.link.open_external -> 3
browser.link.open_newwindow -> 3
browser.link.open_newwindow.restriction -> 2
Muito bom, apesar de enfatizar muito o Lisp:
http://www.paulgraham.com/avg.html
Ao tentar rodar o skype no Sid AMD64, já utilizando o linux32 como vi em alguns tutoriais, me deparei com o seguinte problema:
$ linux32 ./skype Cannot execute ./skype: No such file or directory
Para resolver esse problema, bastou reinstalar o pacote libc6-i386.
Para instalar o driver da nvidia no sid amd64 é só instalar os pacotes nvidia-glx e nvidia-kernel-2.6.18-3-amd64. O pacote nvidia-settings é bom para a configuração e o nvidia-glx-ia32 é útil se você for rodar um programa de 32 bits.
Ao atualizar o openoffice no etch, tive o seguinte problema:
/usr/share/fonts: failed to write cache /usr/share/fonts/X11: failed to write cache /usr/share/fonts/X11/100dpi: failed to write cache /usr/share/fonts/X11/75dpi: failed to write cache /usr/share/fonts/X11/encodings: failed to write cache /usr/share/fonts/X11/encodings/large: failed to write cache /usr/share/fonts/X11/misc: failed to write cache /usr/share/fonts/X11/util: failed to write cache /usr/share/fonts/truetype/msttcorefonts: failed to write cache /usr/share/fonts/truetype/ttf-dejavu: failed to write cache /usr/share/fonts/truetype/ttf-xfree86-nonfree: failed to write cache /usr/share/fonts/type1: failed to write cache /usr/share/fonts/type1/gsfonts: failed to write cache /usr/X11R6/lib/X11/fonts: failed to write cache /usr/X11R6/lib/X11/fonts/encodings: failed to write cache /usr/X11R6/lib/X11/fonts/encodings/large: failed to write cache /usr/local/share/fonts: failed to write cache /var/lib/defoma/fontconfig.d/A: failed to write cache /var/lib/defoma/fontconfig.d/C: failed to write cache /var/lib/defoma/fontconfig.d/D: failed to write cache /var/lib/defoma/fontconfig.d/G: failed to write cache /var/lib/defoma/fontconfig.d/I: failed to write cache /var/lib/defoma/fontconfig.d/N: failed to write cache /var/lib/defoma/fontconfig.d/S: failed to write cache /var/lib/defoma/fontconfig.d/T: failed to write cache /var/lib/defoma/fontconfig.d/U: failed to write cache /var/lib/defoma/fontconfig.d/V: failed to write cache /var/lib/defoma/fontconfig.d/W: failed to write cache
Procurei sobre o problema e encontrei a seguinte solução temporária, que para mim funcionou bem. Eu coloquei essas mensagens a cima num arquivo diretorios.txt e rodei o seguinte comando:
# for i in `cut -d: -f1`; do touch $i; done
Duas pessoas em dois dias consecutivos vieram me falar sobre Ubuntu, sabendo que eu gosto muito do Debian, e me pedindo opiniões sobre o assunto. Isso gerou uma vontade de procurar mais sobre o assunto, e achei um texto muito bom, para mim definitivo, do fundador do Ubuntu.
Um trecho:
” Many people have asked why I decided to build Ubuntu alongside, or on top of, Debian, rather than trying to get Debian to turn into a peak in its own right. The reason is simple - I believe that Debian’s breadth is too precious to compromise just because one person with resources cares a lot about a few specific use cases. We should not narrow the scope of Debian. The breadth of Debian, its diversity of packages and architectures, together with the social equality of all DD’s, is its greatest asset.”
E um comentário bem legal:
“Debian is like an open-ended largely undirected theoretical research group (think Bell Labs or SkunkWorks) … research for the sake of research, not necessarily with a tight focus on a deliverable for a specific customer, need, or usage.
Ubuntu, on the other hand, is like a product development or solutions developer group that takes the products of the efforts of the research group and hones, polishes, packages, and targets them for a tightly defined specific customer or need.”
Ao procurar o que poderia ser o motivo do problema da hora, encontrei um artigo que explicava uma solução temporária no gentoo para a mensagem de erro select() to /dev/rtc to wait for clock tick timed out que aparecia no boot e ao dar o comando hwclock. Ao seguir o link indicado no sÃtio, me deparei com uma solução temporária.
Eu estava com um problema na atualização automática da hora, e achei que pudesse ser um problema no ntp, mas depois vi que era simplesmente porque eu não estava usando o relógio interno como UTC. Foi só editar o arquivo /etc/default/rcS que tudo funcionou:
# # /etc/default/rcS # # Default settings for the scripts in /etc/rcS.d/ # # For information about these variables see the rcS(5) manual page. # # This file belongs to the "initscripts" package. TMPTIME=0 SULOGIN=no DELAYLOGIN=no UTC=yes VERBOSE=no FSCKFIX=no
Uma coisa que me incomodava algumas vezes é que a medida que o tempo ia passando e eu instalando e removendo programas, vários arquivos de configuração eram deixados pelo aptitude, por eu não ter o costume de usar a opção purge. Para remover de uma vez todos esses arquivos, fiz um pequeno programa em bash:
#!/bin/sh PACOTES=`dpkg -l \* | grep ^rc | cut -d\ -f3` aptitude purge $PACOTES