Find all world writable directories / files
find / -perm -0002 –type d -print find / -perm -0002 –type f -print
find / -perm -0002 –type d -print find / -perm -0002 –type f -print
#affiche les processus qui utilise le cdrom fuser -v /media/cdrom #afficher et tuer le(s) processus qui utilise(nt) le cdrom fuser -vk /media/cdrom #afficher les processus… Read More »Trouver et tuer les processus qui utilise un fichier ou un sockets
date +%s
echo mysql-server mysql-server/root_password select PASSWORD | debconf-set-selections echo mysql-server mysql-server/root_password_again select PASSWORD | debconf-set-selections aptitude -y install mysql-server libmysqlclient15-dev Note Scripted install of MySQL
find . –type f -print0 | xargs -0 chmod +x
It needs gawk, sed and grep. arping -c 1 192.168.1.1 | grep “:” | sed “s/\[//g;s/\]//g” |gawk ‘{print $5}’ # 00:AA:BB:CC:DD:EE # Find MACs of… Read More »Finding ethernet address (MAC) of an IP address with arping
automatically create a SVN repository from a web project directory including trunk, branches and tags #!/bin/bash # Vous pouvez éditer ces variables selon vos besoins… Read More »Création automatique (trunk, branches et tags inclus) d’un dépôt SVN à partir d’un dossier projet
Pour afficher le man d’une d’une fonction C ou d’une commande shell, positionnez le curseur sur le mot concerné et appuyez sur K (k majuscule).
Voici comment éditer la sortie standard d’une commande unix avec vim. grep apache2.log | vim –
#!/bin/sh # Ce script est a appeler dans la crontab : # ~$ crontab -e # 0 6 * * * /home/benoit/make_backups.sh >>/home/benoit/backups_automatises.log # Dans… Read More »Backup quotidien de repertoires