Habilitar acesso IMAP num email no Google Apps

01-Acesse http://mail.<SEU_DOMINIO> Por exemplo http://mail.exemplo.com.br 02-Digite o nome de usuário (a parte do endereço de email antes do @ ) e a senha. 03-Dependendo das configurações de seu navegador, você terá a opção de lembrar a senha digitada. 04-Na primeira vez que você acessar sua conta, será necessário digitar um… Continue reading

Configuração do Thunderbird 3 usando Google Apps

01-Clique em Ferramentas (Tools) e escolha Account Settings (Configurações de Conta) 02-Clique em “Ações” (Account Actions) e selecione “Adicionar conta de email” (Add Mail Account) 03-Na janela que se abre, preencha com seu nome, endereço de email e senha. 04-Ao clicar “Continue”, Thunderbird irá testar a conexão com o servidor… Continue reading

Asus G1s – Windows 7 (64-bit) Driver checklist

e-sata ftp://driver.jmicron.com.tw/jmb36x/XP_Vista_Win7/ card-reader http://dlcdnet.asus.com/pub/ASUS/nb/Drivers/Cardreader/Ricoh_VT_090121.zip

Use an alias to SSH to a server

Create a file ~/.ssh/config and insert the following: mauricio@rynex:~$ cat .ssh/config Host SERVER_ALIAS Port PORT HostName SERVER_NAME User USERNAME Compression yes TCPKeepAlive yes Change according to your servername, username and port, of course. Then you can simply use: ssh SERVER_ALIAS to connect to the server instead of using: ssh username@hostname

Criando sua conta no Registro.br

Para criar uma conta no Registro.br (possibilitando assim que você seja o(a) dono(a) de seus próprios domínios, siga o passo-a-passo abaixo: 1 – Abra seu navegador internet e acesse http://registro.br     Isso mesmo, não tem o “.com”  🙂 2 – Clique em “Registro” no menu superior 3 – Clique em “Não… Continue reading

Setup nVidia drivers on Slackware 13

Download lastest driver version (190.53 as of this writing): wget http://us.download.nvidia.com/XFree86/Linux-x86_64/190.53/NVIDIA-Linux-x86_64-190.53-pkg2.run run it: sh NVIDIA-Linux-x86_64-190.53-pkg2.run Accept the license, otherwise you can’t install the driver 🙂

Setting up Slackware 13 (64-bit) (part 3)

Make your server trust your laptop+user: #su – “your username here” $ssh-keygen -t rsa $scp ~/.ssh/id_rsa.pub “remote_username”@”host_name”:”target_filepath_for_key_on_the_server” Now ssh into your server: $ssh “remote_user”@”host_name” $cd ~/.ssh Insert your laptop’s public key in the authorized keys list: $cat “target_filepath_for_key_on_the_server” >> authorized_keys Try ssh-ing your server again (this time you should not… Continue reading

Setting up Slackware 13 (64-bit) (part 2)

Create yourself a user: #adduser “desired_name” Allow yourself to sudo make a sandwich: #nano /etc/sudoers make sure you add the following updates: %users          ALL=(ALL)       ALL (In case you decided to create your user on a different group, change the line above acordingly) Install Gnome SlackBuild #echo “SOURCE=http://get.gnomeslackbuild.org/gsb/gsb64-2.26_slackware64-13.0/:CUSTOM” >> /etc/slapt-get/slapt-getrc #slapt-get… Continue reading

Setting up Slackware 13 (64-bit) (part 1)

Download new kernel from http://kernel.org # cd /usr/src #tar -xvjf <kernel_file_name>.tar.bz2 #rm linux #ln -s <new_kernel_folder> linux #cd linux #make mrproper #make menuconfig (have fun 🙂 ) #make #make install #reboot && cross your fingers Install Slapt-Get # wget http://software.jaos.org/slackpacks/13.0-x86_64/slapt-get/slapt-get-0.10.2d-x86_64-1.tgz #installpkg slapt-get-0.10.2d-x86_64-1.tgz #nano /etc/slapt-get/slapt-getrc #slapt-get –update #slapt-get –upgrade