|
Table of Contents:
|
## Table des matières
|
|
Installing GnuPG
|
## 1. Installation de GnuPG
|
|
Verify and Import Signing Key
|
## 2. Vérifier et Importer la Clef de Signature
|
|
Get Signing Key
|
### 2.1. Obtenir la Clef de Signature
|
|
wget -O binaryfate.asc https://raw.githubusercontent.com/monero-project/monero/master/utils/gpg_keys/binaryfate.asc
|
``` wget -O binaryfate.asc https://raw.githubusercontent.com/monero-project/monero/master/utils/gpg_keys/binaryfate.asc ```
|
|
Verify Signing Key
|
### 2.2. Vérifier la Clef de Signature
|
|
pub rsa4096/F0AF4D462A0BDF92 2019-12-12 [SCEA] Key fingerprint = 81AC 591F E9C4 B65C 5806 AFC3 F0AF 4D46 2A0B DF92 uid binaryFate <[email protected]>
|
``` pub rsa4096/F0AF4D462A0BDF92 2019-12-12 [SCEA] Key fingerprint = 81AC 591F E9C4 B65C 5806 AFC3 F0AF 4D46 2A0B DF92 uid binaryFate <[email protected]> ```
|
|
Import Signing Key
|
### 2.3. Importer la Clef de Signature
|
|
gpg: key F0AF4D462A0BDF92: 2 signatures not checked due to missing keys gpg: key F0AF4D462A0BDF92: public key "binaryFate <[email protected]>" imported gpg: Total number processed: 1 gpg: imported: 1 gpg: marginals needed: 3 completes needed: 1 trust model: pgp
|
``` gpg: key F0AF4D462A0BDF92: 2 signatures not checked due to missing keys gpg: key F0AF4D462A0BDF92: public key "binaryFate <[email protected]>" imported gpg: Total number processed: 1 gpg: imported: 1 gpg: marginals needed: 3 completes needed: 1 trust model: pgp ```
|
|
gpg: key F0AF4D462A0BDF92: "binaryFate <[email protected]>" not changed gpg: Total number processed: 1 gpg: unchanged: 1
|
``` gpg: key F0AF4D462A0BDF92: "binaryFate <[email protected]>" not changed gpg: Total number processed: 1 gpg: unchanged: 1 ```
|
|
Download and Verify Hash File
|
## 3. Télécharger et Vérifier le Fichier de Hachage
|
|
Get Hash File
|
### 3.1. Télécharger le Fichier de Hachage
|
|
Verify Hash File
|
### 3.2. Vérifier le Fichier de Hachage
|
|
gpg: using RSA key 81AC591FE9C4B65C5806AFC3F0AF4D462A0BDF92 gpg: Good signature from "binaryFate <[email protected]>" [unknown] gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner. Primary key fingerprint: 81AC 591F E9C4 B65C 5806 AFC3 F0AF 4D46 2A0B DF92
|
``` gpg: using RSA key 81AC591FE9C4B65C5806AFC3F0AF4D462A0BDF92 gpg: Good signature from "binaryFate <[email protected]>" [unknown] gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner. Primary key fingerprint: 81AC 591F E9C4 B65C 5806 AFC3 F0AF 4D46 2A0B DF92 ```
|
|
Download and Verify Binary
|
## 4. Télécharger et Vérifier les binaires
|
|
Get Monero binary
|
### 4.1. Télécharger les binaires Monero
|
|
On Windows or Mac, go to [getmonero.org]({{ site.baseurl_root }}/downloads/) and download the correct file for your operating system. Save the file to your home directory. **Do not extract the files yet.**
|
Sur Windows et Mac, rendez-vous sur [getmonero.org](https://getmonero.org/fr/downloads/) et téléchargez le fichier correspondant à votre système d'exploitation. enregistrez ce fichier dans votre répertoire utilisateur. **N'extrayez pas les fichiers pour le moment.**
|
|
wget -O monero-linux-x64-v0.15.0.1.tar.bz2 https://downloads.getmonero.org/cli/linux64
|
``` wget -O monero-linux-x64-v0.15.0.1.tar.bz2 https://downloads.getmonero.org/cli/linux64 ```
|
|
Binary Verification on Linux or Mac
|
### 4.2. Vérifier les binaires sur Linux et Mac
|
|
shasum -a 256 monero-linux-x64-v0.15.0.1.tar.bz2
|
``` shasum -a 256 monero-linux-x64-v0.15.0.1.tar.bz2 ```
|