domingo, 18 de noviembre de 2012


para bloquear paginas web en ubuntu facil

First, find the IP addresses of the sites you want to access, you can do this by using nslookup or dig from the command line or a site like this http://ip-lookup.net/domain.php

The use your favourite editor and edit /etc/host you need to edit is file as the root user so go to console and type
sudo pico /etc/hosts or
sudo gedit /etc/hosts

and add one line for each of the sites you want to access, I'll use Mahalo as an example. you need to put in the www.domain if you want to access it too.

166.90.81.138 mahalo.com www.mahalo.com

then save the file
then edit using sudo pico or sudo gedit /etc/nsswitch.conf

find the line that look like this

hosts: files dns
and change it to this
hosts: files

save the file and you done. When you close and reopen your browser you will be blissfully cut off from the internet except for the sites you put in your hosts file.

P.S., When you do this you better have a backup plan for accessing the internet.

miércoles, 31 de octubre de 2012

Fix Starcraft II crashing on/before login


With Ubuntu 12.04 and (presumably) recent version of the linux kernel, pthread protection causes SCII to crash immediately upon start or after login. To fix this, enter the following command to disable pthread protection: 
echo 0|sudo tee /proc/sys/kernel/yama/ptrace_scope

this error is for c++ runtime 

viernes, 28 de septiembre de 2012

Reparar proxy en ubntu 12.04

Reparar proxy en ubntu 12.04

En la ultima version de ubuntu tube un problema con el proxy para solucionarlos muy facil has lo siguiente:

sudo nano /etc/hosts

y agrega  lo que esta en negro

ipserverprosy      nombre
172.16.1.1           proxy



-------------------------------------------------------------------------------------------------------------
si la versión de ubuntu es menor a esta la solución es diferente  en la configuracion de proxy del navegador web donde dice

No usar proxy para: (borrar lo que hay aqui)


listo

miércoles, 19 de septiembre de 2012

Caras emoticons

para que sepan de donde viene cada cara

lunes, 16 de abril de 2012

Touchpad y brillo + G74SX

Touchpad

I hate touchpads unless I am in a jam and this one is really sensitive. I found a touchpad switching application called Liberado Touchpad indicator. Great job guys, thank you! This is a super nice little app. Per their website here are the install instructions:

sudo add-apt-repository ppa:atareao/atareao && sudo apt-get update
sudo apt-get install touchpad-indicator
-----------------------------------------------------------------------------------
sudo nano /etc/X11/xorg.conf
y agrega la linea que dice Option "RegistryDwords" "EnableBrightnessControl=1" En esa posición
Section "Device"
   Identifier "Default Device"
   Option "NoLogo" "True"
   Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection

viernes, 7 de octubre de 2011

Entorno Grafico en Ubuntu Server

Instalar entorno gráfico en Ubuntu Server 11.04


Antes hemos visto cómo instalar la última versión de Ubuntu Server NattyNarwhal 11.04, pero lo que no hemos visto es como instalarle una interfaz gráfica, y configurar lo esencial.

Instalación de GNOME

Si quieres instalar GNOME en Ubuntu Server con todas las aplicaciones usa estos comandos:

sudo apt-get update
sudo apt-get install ubuntu-desktop

Instalando el paquete ubuntu-desktop, estamos instalando el entorno gráfico completo, incluyendo juegos, aplicaciones, etcétera…
**------------------------------------------------------------------------------------***
También existe la posibilidad de instalar GNOME en modo escritorio mínimo con el siguiente comando:

sudo apt-get update
sudo apt-get install xorg gnome-core

Ya tienes el escritorio mínimo instalado, Lo que os ha instalado ha sido los “Accesorios” (solamente el editor de textos, la terminal y Firefox para poder navegar por Internet. Pero como es una instalación mínima, el idioma por defecto es el inglés.

Para instalar el soporte de idioma español, abrimos la Terminal y vamos poniendo de uno en uno:

sudo apt-get update
sudo apt-get install language-pack-es
sudo apt-get install language-pack-es-base
sudo apt-get install language-pack-gnome-es
sudo apt-get install language-pack-gnome-es-base
sudo apt-get install language-selector
sudo apt-get install language-support-es

Después de instalar todos los soportes, instalamos gksu para que funcionen correctamente los menús:

sudo apt-get install gksu

Para instalar las Herramientas de red tecleamos esto en la Terminal:

sudo apt-get install gnome-system-tools gnome-nettool

Una vez instalado, y esto es lo más importante, tenemos que llamar a la interfaz por primera vez, para llamar la interfaz escribimos:

startx

Y ya tienes el entorno gráfico correctamente instalado, con soporte de idioma español y también vemos como instalar las Herramientas de red, en Ubuntu Server con escritorio mínimo.