From source » Historique » Version 7
  Patrice Nadeau, 2015-01-02 16:40 
  
| 1 | 1 | Patrice Nadeau | h1. From source  | 
|---|---|---|---|
| 2 | |||
| 3 | 7 | Patrice Nadeau | L'installation à partir des sources permet  | 
| 4 | 6 | Patrice Nadeau | * d'avoir la version la plus récente  | 
| 5 | * n'est pas relier à une plate-forme spécifique (i686 vs x86_64 vs ARM)  | 
||
| 6 | |||
| 7 | 4 | Patrice Nadeau | h2. Prérequis  | 
| 8 | 1 | Patrice Nadeau | |
| 9 | 6 | Patrice Nadeau | Installer les utilitaires pour la compilation :  | 
| 10 | 5 | Patrice Nadeau | <pre><code class="bash">  | 
| 11 | zypper install make gcc  | 
||
| 12 | </code></pre>  | 
||
| 13 | 4 | Patrice Nadeau | |
| 14 | 2 | Patrice Nadeau | Télécharger  | 
| 15 | 1 | Patrice Nadeau | <pre><code class="bash">  | 
| 16 | mkdir tmp  | 
||
| 17 | wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-4.0.8.tar.gz  | 
||
| 18 | wget http://nagios-plugins.org/download/nagios-plugins-2.0.3.tar.gz  | 
||
| 19 | </code></pre>  | 
||
| 20 | 3 | Patrice Nadeau | |
| 21 | Création de l'usager et groupe  | 
||
| 22 | <pre><code class="bash">  | 
||
| 23 | useradd nagios  | 
||
| 24 | groupadd nagcmd  | 
||
| 25 | usermod -a -G nagcmd nagios  | 
||
| 26 | </code></pre>  |