GNU/Linux : how to backup full disk with Clonezilla / Drbl server
Here are following two ways to make a fulll disk backup with Clonezilla / Drbl server. - First one, the easiest, is to download a Clonezilla Live ISO, to put…
GNU/Linux : how to check opened ports in linux ?
The simplest way to check opened ports in linux is to use the following 'netstat' command in a terminal : netstat -nlapute
GNU/Linux : Midori & Flash Player ?
Pour déclarer Flash Player dans le navigateur web Midori il suffit simplement de saisir la commande suivante dans un terminal : export MOZ_PLUGIN_PATH="/etc/alternatives/mozilla-flashplugin/"
GNU/Linux : how to upload a file with webdav and curl
You use webdav protocol, protected by a login/password, for your website "" and want to upload a file "" to one of your web sub-directory "subdir2" with a command line…
GNU/Linux : apt-get à travers un proxy http avec authentification
Si vous avez besoin d'utiliser la commande "apt-get" et que votre pc est situé dans un réseau forçant l'utilisation d'un proxy avec authentification, saisisser dans un terminal la commande suivante…
GNU/Linux : crypter/décrypter un fichier avec openssl
La librairie OpenSSL permet en autres choses de crypter/décrypter des fichiers - pour crypter un fichier () saisissez la commande suivante : openssl aes-256-cbc -a -salt -in -out puis saisissez un mot…
GNU/Linux : effacer ses données de manière sécurisée
- Effacer un disque (ex : /dev/sda) : dd if=/dev/urandom of=/dev/sda - Effacer un fichier ou un répertoire () : wipe -r -i -Q 30 my_file_or_my_directory remarque : 30 indique…
GNU/Linux : TCP over DNS tunnel
You want to use TCP over a DNS tunnel ? Have a look to this good article on
GNU/Linux : string replace with ‘sed’ command
$ sed -i 's/old_str/new_str/g' file* => change all strings "old_str" by "new_str" in all files whose name begins by "file"
GNU/Linux : faire un tunnel VPN ethernet via SSH entre 2 machines
But : établir une connexion VPN en utilisant SSH en Ethernet entre 2 machines : serveur1 et client1 Pré-requis : un serveur OpenSSH installé sur une machine nommée serveur1 et bien configuré pour…