Troubleshoot auto nego ports on switchs
ping –f –i 0.0001 –s 10000 192.168.0.1 Note Dots denote echo request without echo reply. The more points you have the more the connection is… Read More »Troubleshoot auto nego ports on switchs
ping –f –i 0.0001 –s 10000 192.168.0.1 Note Dots denote echo request without echo reply. The more points you have the more the connection is… Read More »Troubleshoot auto nego ports on switchs
/etc/pure-ftpd/conf/PassivePortRange 50000 50100
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
# Change les droits des répertoires et sous répertoires du dossiers courant # Changer la directive -type d par -type f pour ne changer que… Read More »Changer les droits sur des dossiers ou fichiers uniquement
#Convertir un fichier texte d’un format Windows/dos vers unix: tr -d ‘\015′ < win-format.txt > unix-format.txt #Convertir un fichier texte d’un format unix vers… Read More »Conversion de fichier texte windows/unix
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
<SCRIPT LANGUAGE=“JavaScript”> <!– Begin function getCSS() { datetoday = new Date(); timenow=datetoday.getTime(); datetoday.setTime(timenow); thehour = datetoday.getHours(); if (thehour > 20) display = “tree_twilight.css”; else if… Read More »Switch CSS according to the hours of the day
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).