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…
GNU/Linux : backup with fsarchiver
‘fsarchiver’ is a good way to make a full backup of a partition. For example to backup /dev/sda1 to /media/backup, first install 'fsarchiver' then use the following command in a linux…