2 years ago
Pour listé les paquets orphelins sous arhc
# pacman -Qdt
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/741"></script>
#Désactive le bug écran de veille sous ubuntu + xgl
xset -display :0 s off -dpms
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/613"></script>
2 years ago
#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 Windows/dos:
sed -e 's/$/\r/' unix-format.txt > win-format.txt
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/578"></script>