9647 shaares
13 liens privés
13 liens privés
2021 résultats
taggé
Doc
Petit tuto sur x2go (qui est un bureau à distance avec de bien meilleures performances qu'un simple X11 sur ssh).
Juste après le « shebang », mettre ça sur la ligne d’après :
set -euo pipefail
“set -e” which ensures that your script stops on first command failure.
“set -u” which ensures that your script exits on the first unset variable encountered.
“set -o pipefail” which ensures that if any command in a set of piped commands failed, the overall exit status is the status of the failed command.
Un peu violent mais sûrement efficace: Quand PortSentry détecte des connexions sur les services fictifs qu'il expose, il bloque l'IP source.
Désactiver l'hibernation/suspend-to-(disk|ram) sous Linux/systemd: sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
Réactiver: utiliser unmask
Des quantificateurs méconnus dans les regex.