Thursday, May 7, 2009
Wednesday, April 8, 2009
Hosts para gtk-gnutella
Algunas veces cuando hay actualizaciones entre versiones, la lista de hosts suela quedar en blanco, provocandonos un ataque de panico por no tener ese ultimo mp3 que salio, etc... Recurriendo a nuestro gran amigo Google encontre la manera de buscar hosts validos para agregarlos manualmente:
Tan solo verifica esta URL: http://
Has click en cualquiera de los links que sugiere, busca los hosts. Una vez obtenido ve al tab de Network de gtk-gnutella, pega la ip (en realidad el socket) y añadelo.
Saludos
JC
Posted by Juan Carlos at 12:31 AM 0 comments
Labels: Linux, Miscelaneo
Tuesday, April 7, 2009
Windows Update en Windows Server Core
cscript c:\windows\system32\scregedit.wsf /au 4
net stop wuauserv
net start wuauserv
Esto habilitara windows update y verificara los parches por default a las 3am, pero si quieres forzarlo, tan solo ejecuta:
wuauclt /detectnow
Saludos.
JC
Posted by Juan Carlos at 1:08 AM 0 comments
Deshabilitar IPv6 en Windows Server 2008 Full & Core
Ejecuta "regedit" y busca el registro HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters; en el panel derecho, click derecho y selecciona New - DWORD, entra como nombre de atributo "DisabledComponents" y colocale el valor "FF"; una vez realizado, reinicia el servidor para que los cambios se hagan efectivos. Si mas adelante requieres habilitarlo tan solo borra el registro y reinicia tu servidor.
Saludos.
JC
Posted by Juan Carlos at 12:55 AM 0 comments
Labels: Windows
Sunday, April 29, 2007
Introduction to OpenBSD Networking
# ifconfig le0 192.168.0.1 up netmask 255.255.255.0
A breakdown of this syntax:
* ifconfig - Interface Config utility
* le0 - The network interface in question
* 192.168.0.1 - The interface's IP address
* up - Whether to raise the interface (up) or drop it (down)
* netmask 255.255.255.0 - The interface's netmask
To display the results of this, issue the command:
# ifconfig -a
Routing:
Para verificar tu tabla de Ruteo
# route -n show
Asi agregamos el default gateway.
# route add 192.168.1.0 192.168.1.1
A simple breakdown of this command:
* route - route utility
* add - add a route to the table
* 192.168.1.0 - target address range
* 192.168.1.1 - IP to use as a gateway (in this case, a local one)
Posted by Juan Carlos at 8:37 PM 0 comments
Labels: BSD
Sunday, February 11, 2007
How to mount an ISO image in Linux
ISO image can be mounted just like any device or file system, and here is how...
Create a mount point for the ISO:
BASH# mkdir /media/iso
Now mount the ISO in the mount point with the following command:
BASH# mount myiso.iso /media/iso/ -t iso9660 -o ro,loop=/dev/loop0
Where myiso.iso is your ISO file.
What I haven't tried yet is omitting the ro (read only) option, so that it might be possible to make changes to the ISO before finally burning, not sure if this works (will check) but the command would probably look like this:
BASH# mount myiso.iso /media/iso/ -t iso9660 -o loop=/dev/loop0
Have fun!
from: http://www.techspot.com/vb/topic483.html
Posted by Juan Carlos at 2:29 PM 1 comments
Friday, December 29, 2006
Montar carpetas compartidas
Donde trabajo la mayoria tiene winbugs, me tope con la necesidad de acceder a sus carpetas compartidas, para ello apelando al buen Samba pude hacerlo, basta un simple $ smbclient -N -L (nombre_de_PC) me mostro las carpetas compartidas, para tenerlo montado siempre los puse en el /etc/fstab , agregue una linea como:
//nombre_de_PC/Carpeta_compartida /media/comp smbfs user,auto,guest 0 0
pero si la carpeta esta protegida con contraseña donde dice user,auto,guest cambiarlo por username=usuario,password=el_que_sea,auto y funciona tambien...
gracias sambita
Posted by Juan Carlos at 9:46 AM 0 comments

