| :w | sauvegarder |
| :q | quitter |
| :file toto.txt | sauvegarder sous toto.txt |
| :? toto | rechercher vers le haut la chaine toto |
| :/ toto | rechercher vers le bas la chaine toto |
| :s/toto/tata/ | remplace toto par tata |
| 6yy | copie dans le buffer 6 lines |
| 6dd | coupe 6 lines (et les copie dans le buffer) |
| p | colle le buffer |
| Téléchargement | $ lynx http://httpd.apache.org/download.cgi |
| Extraction | $ gzip -d httpd-NN.tar.gz |
| Configuration | $ ./configure --prefix=PREFIX -enable-module=so |
| Compilation | $ make |
| Installation | $ make install |
| Personnalisation | $ vi PREFIX/conf/httpd.conf |
| Test | $ PREFIX/bin/apachectl -k start |
| telechargement | http://tomcat.apache.org/connectors-doc/index.html |
| Décompression | tar -xzvf tomcat-connectors-1.2.19-src.tar.gz |
| #>cd native | |
| #>./configure --with-apxs=/usr/sbin/apxs (ou apxs2) NB: le chemin absolu '/usr/sbin/apxs' doit être remplacé par celui correspondant à l'outil apxs d'apache sur votre environnement. |
|
| #>make | |
| #>su -c 'make install' |