Articles

Quelques Mots en Wolof…

Juste quelques mots en Wolof que j’ai appris aujourd’hui: [beu soubeu] -> a demain [beu lundi] -> a lundi [kokala] -> qui c’est ? (aggressif) Aprés la korité, aprés la tabaski, on se souhaite la bonne année: personne 1: [dewenati] -> bonne année personne 2: [fakeldewan] -> a l’année prochaine !
➟ Read more


How-to Compile and Use xvidcap

Compile gvidcap!¶ Get the last stable source code archive on xvidcap Sourceforge project page or download it from the CVS: $ cvs -z3 -d:pserver:[email protected]:/cvsroot/xvidcap co -P xvidcap Install required dependencies: $ urpmi gcc automake libgtk+2-devel ffmpeg-devel liblame0-devel Dirty compile: $ make distclean [optional] $ CPPFLAGS=-I …
➟ Read more

Qemu: How-To Share Network Access with the Ghest OS

Create a file /etc/qemu-ifup that contain: #!/bin/sh sudo modprobe tun sudo /sbin/ifconfig $1 up 10.0.2.2 netmask 255.255.255.0 broadcast 10.0.2.255 # IP masquerade sudo echo "1" > /proc/sys/net/ipv4/ip_forward sudo /sbin/iptables -N nat sudo /sbin/iptables -t …
➟ Read more

Qemu commands

Some useful command to help running and setup qemu… Create an empty compressed 10 Go disk image (in qcow2 format): $ qemu-img create -f qcow2 /home/kevin/qemu-disk-image.qcow 10G Boot on your machine’s CD-Rom in qemu with previous disk image as primary HDD: $ qemu -cdrom /dev/cdrom -hda …
➟ Read more