Catégorie : SSH
-
Supprimer répertoire non vide
Pour supprimer un répertoire non vide, la syntaxe est : rm -Rf repertoire
-
SSH : trouver l’IP de l’utilisateur connecté
Sous ssh, taper simplement : pinky pinky –help: A lightweight ‘finger’ program; print user information.
-
Centos 7 – Redémarrer SSH
/bin/systemctl restart sshd.service
-
Manage Processes in Linux
Commands : top htop ps aux (show processes owned by all users in a friendly format) ps axjf (hierarchical relationships in tree view) kill kill -KILLPID (if the process doesn’t stop) kill -HUP PID You can list all of the signals that are possible to send with kill by typing: kill -l Getting the PID…