El Software y el conocimiento debe ser Libre
Linux
Abriendo una máquina virtual en la imagen ubuntu.qcow
Oct 15th
Hemos visto como crear un fichero imagen qcow. Ahora vemos como ejecutar una máquina virtual en ella.
$ qemu -cdrom /dev/cdrom -hda ubuntu.qcow -boot d -net nic -net user -m 196 -localtime
Crear un fichero imagen ubuntu.qcow, con tamaño de 10GB
Oct 15th
Veamos como crear un fichero imagen qcow con un limite de 10 GB.
$ qemu-img create ubuntu.qcow 10G
Cual es mi dirección IP?
Oct 15th
Averiguar tú dirección IP de Internet es fácil.
$ curl whatismyip.org
Otra forma sería así
$ curl -s checkip.dyndns.org | grep -Eo '[0-9\.]+'
$ wget -O - -q http://whatismyip.org/
$ lynx --dump "http://checkip.dyndns.org"
$ curl http://www.whatismyip.org/
Acortando URLs con is.gd
Oct 15th
Así de fácil, como todo bajo GNU/Linc
isgd() { /usr/bin/wget -qO - "http://is.gd/create.php?format=simple&url=$1" ;}