Erreur “The system is running in low-graphics mode”
Vous utilisez Linux, avec le gestionnaire de session graphique "lightdm". En démarrant votre serveur vous obtenez subitement l'erreur “The system is running in low-graphics mode”. Avant de vous lancer dans…
GNU/Linux : how to run a recursive grep
How to make a recursive grep to find the string 'acmee' in all files of current and sub-directories ? For this you can use linux cmd line : find .…
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 : 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 : 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 : 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…