Difference between revisions of "Processus d'installation"

From Redcore Linux Project Wiki
Jump to navigationJump to search
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== Vérification des Sommes de Contrôle ===
== 🛠️ Redcore Linux Installation ==


Après avoir téléchargé l'image ISO de Redcore Linux, il est important de vérifier son intégrité en comparant les sommes de contrôle SHA-256 et MD5 fournies par l'équipe de Redcore Linux. Cela garantit que l'image ISO n'a pas été corrompue pendant le téléchargement.
'''Introduction''': Redcore Linux is a Linux distribution available in ISO image format. This guide will assist you in downloading the ISO image, creating a bootable media, and installing Redcore Linux on your computer. 🖥️🚀


Voici comment procéder pour vérifier les sommes de contrôle :
=== Installation Steps 🛠️ ===


1. **Téléchargement des Sommes de Contrôle** :
; '''Downloading the ISO Image''' :
  - Rendez-vous sur la page de téléchargement officielle de Redcore Linux.
Visit the [https://redcorelinux.org/download official Redcore Linux website] to access the download section.
  - Recherchez un lien vers les fichiers de somme de contrôle (SHA-256 et MD5) pour l'image ISO que vous avez téléchargée. Ces fichiers peuvent avoir des extensions telles que ".sha256" et ".md5".
Select and download the ISO image that matches your system architecture.
Perform an md5sum or sha256sum signature verification to ensure the integrity of the downloaded file. 🔍


2. **Téléchargement des Fichiers de Somme de Contrôle** :
=== Checking Checksums 🧾 ===
  - Cliquez sur les liens de téléchargement pour les fichiers de somme de contrôle correspondant à l'image ISO que vous avez téléchargée. Par exemple, si vous avez téléchargé "redcore-linux-xxxx.iso", téléchargez "redcore-linux-xxxx.iso.sha256" et "redcore-linux-xxxx.iso.md5".


3. **Calcul des Sommes de Contrôle Localement** :
; '''Downloading Checksums''' :
  - Ouvrez un terminal sur votre système d'exploitation.
On the download page, look for the checksum files (SHA-256 and MD5) associated with the ISO image.
  - Naviguez vers le répertoire où vous avez téléchargé l'image ISO et les fichiers de somme de contrôle.
Download the checksum files, which may have extensions like ".sha256" and ".md5".


4. **Vérification SHA-256** :
; '''Checking Checksums''' :
  - Pour vérifier la somme de contrôle SHA-256, utilisez la commande suivante :
Once you have downloaded your ISO and its sha256sum, open a terminal and switch to root mode, then navigate to your downloads folder.
    ```
    sha256sum -c redcore-linux-xxxx.iso.sha256
    ```
    Remplacez "redcore-linux-xxxx.iso" par le nom de votre image ISO. La commande devrait afficher "OK" si la somme de contrôle correspond.


5. **Vérification MD5** :
<pre>
  - Pour vérifier la somme de contrôle MD5, utilisez la commande suivante :
user@hostname ~ $ su
    ```
root ~ $ cd /home/user/Downloads/
    md5sum -c redcore-linux-xxxx.iso.md5
</pre>
    ```
    Remplacez "redcore-linux-xxxx.iso" par le nom de votre image ISO. La commande devrait afficher "OK" si la somme de contrôle correspond.


6. **Résultat de la Vérification** :
For SHA-256 verification:
  - Si les deux vérifications (SHA-256 et MD5) indiquent "OK", cela signifie que l'image ISO est intègre et que vous pouvez procéder en toute confiance à l'installation.
<pre>
sha256sum -c redcore-linux-xxxx.iso.sha256
</pre>


=== Vérification des Fichiers de Signature ===
For MD5 verification:
<pre>
md5sum -c redcore-linux-xxxx.iso.md5
</pre>


En plus de vérifier les sommes de contrôle, vous pouvez également vérifier les fichiers de signature pour vous assurer que l'image ISO provient d'une source authentique. Redcore Linux fournit des fichiers `.sig` pour cette vérification.
'''Practical Note''':
You can type the first three letters of your sha256sum or md5 file name and then use the tab key to autocomplete the file name. 🚀


1. **Téléchargement des Fichiers de Signature** :
; '''Verification Result''' :
  - Sur la page de téléchargement officielle de Redcore Linux, recherchez les fichiers de signature correspondant à l'image ISO que vous avez téléchargée. Ces fichiers ont généralement une extension ".sig".
  root Redcore.Linux.Hardened.2301.Sirius.KDE.amd64.iso: OK
  root Redcore.Linux.Hardened.2301.Sirius.KDE.amd64.iso: OK


2. **Vérification des Fichiers de Signature** :
If both checksums (SHA-256 and MD5) match, the ISO image is safe for installation.
  - Utilisez un outil de vérification de signature tel que GnuPG (GPG) pour vérifier la signature des fichiers `.sig`. Par exemple, pour vérifier un fichier "redcore-linux-xxxx.iso.sig", vous pouvez utiliser la commande :
    ```
    gpg --verify redcore-linux-xxxx.iso.sig redcore-linux-xxxx.iso
    ```
    Assurez-vous d'avoir importé la clé de vérification publique de Redcore Linux dans GnuPG au préalable.


3. **Résultat de la Vérification** :
=== Checking Signature Files 🖋️ ===
  - Si la vérification de la signature réussit et affiche "Good signature", cela signifie que l'image ISO provient d'une source authentique et n'a pas été altérée.


En utilisant à la fois les sommes de contrôle et les fichiers de signature, vous pouvez garantir que votre téléchargement de Redcore Linux est à la fois intègre et authentique, assurant une installation fiable et sécurisée.
; '''Downloading Signature Files''' :
  * Look for the ''.sig''' signature files associated with the ISO image on the download page.
 
; '''Checking Signature Files''' :
<pre>
gpg --verify redcore-linux-xxxx.iso.sig redcore-linux-xxxx.iso
</pre>
 
; '''Verification Result''' :
  * If the message "Good signature" appears, the ISO image is authentic and has not been tampered with. 🔒

Latest revision as of 11:44, 22 October 2023

🛠️ Redcore Linux Installation

Introduction: Redcore Linux is a Linux distribution available in ISO image format. This guide will assist you in downloading the ISO image, creating a bootable media, and installing Redcore Linux on your computer. 🖥️🚀

Installation Steps 🛠️

Downloading the ISO Image

Visit the official Redcore Linux website to access the download section. Select and download the ISO image that matches your system architecture. Perform an md5sum or sha256sum signature verification to ensure the integrity of the downloaded file. 🔍

Checking Checksums 🧾

Downloading Checksums

On the download page, look for the checksum files (SHA-256 and MD5) associated with the ISO image. Download the checksum files, which may have extensions like ".sha256" and ".md5".

Checking Checksums

Once you have downloaded your ISO and its sha256sum, open a terminal and switch to root mode, then navigate to your downloads folder.

user@hostname ~ $ su
root ~ $ cd /home/user/Downloads/

For SHA-256 verification:

sha256sum -c redcore-linux-xxxx.iso.sha256

For MD5 verification:

md5sum -c redcore-linux-xxxx.iso.md5

Practical Note: You can type the first three letters of your sha256sum or md5 file name and then use the tab key to autocomplete the file name. 🚀

Verification Result
 root Redcore.Linux.Hardened.2301.Sirius.KDE.amd64.iso: OK
 root Redcore.Linux.Hardened.2301.Sirius.KDE.amd64.iso: OK

If both checksums (SHA-256 and MD5) match, the ISO image is safe for installation. ✅

Checking Signature Files 🖋️

Downloading Signature Files
 * Look for the .sig' signature files associated with the ISO image on the download page.
Checking Signature Files
gpg --verify redcore-linux-xxxx.iso.sig redcore-linux-xxxx.iso
Verification Result
 * If the message "Good signature" appears, the ISO image is authentic and has not been tampered with. 🔒