Difference between revisions of "Processus d'installation"

From Redcore Linux Project Wiki
Jump to navigationJump to search
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
<source lang="wikitext">
== 🛠️ Redcore Linux Installation ==
== 🛠️ Installation de Redcore Linux ==


Redcore Linux est distribué sous la forme d'une image ISO (fichier .iso) qui peut être utilisée pour créer une clé USB bootable (ou un DVD) pour l'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. 🖥️🚀


Suivez ce guide pour télécharger l'image ISO appropriée, créer un support de démarrage et installer Redcore Linux sur votre ordinateur. 🚀
=== Installation Steps 🛠️ ===


=== Étapes d'Installation 🛠️ ===
; '''Downloading the ISO Image''' :
Visit the [https://redcorelinux.org/download 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. 🔍


# '''Téléchargement de l'image ISO''' :
=== Checking Checksums 🧾 ===
  * Rendez-vous sur le site officiel de Redcore Linux dans la section téléchargements à l'adresse [[https://redcorelinux.org/download]].
  * Cliquez sur le lien de téléchargement pour l'image ISO.
  * Vérification de la signature md5sum ou sha226sum 🔍


=== Vérification des Sommes de Contrôle 🧾 ===
; '''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".


# '''Téléchargement des Sommes de Contrôle''' :
; '''Checking Checksums''' :
  * Rendez-vous sur la page de téléchargement officielle de Redcore Linux.
Once you have downloaded your ISO and its sha256sum, open a terminal and switch to root mode, then navigate to your downloads folder.
  * 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".


# '''Téléchargement des Fichiers de Somme de Contrôle''' :
<pre>
  * 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.
user@hostname ~ $ su
root ~ $ cd /home/user/Downloads/
</pre>


# '''Calcul des Sommes de Contrôle Localement''' :
For SHA-256 verification:
  * Ouvrez un terminal sur votre système d'exploitation.
<pre>
  * Naviguez vers le répertoire où vous avez téléchargé l'image ISO et les fichiers de somme de contrôle.
sha256sum -c redcore-linux-xxxx.iso.sha256
</pre>


# '''Vérification SHA-256''' :
For MD5 verification:
  <pre>
<pre>
  sha256sum -c redcore-linux-xxxx.iso.sha256
md5sum -c redcore-linux-xxxx.iso.md5
  </pre>
</pre>


# '''Vérification MD5''' :
'''Practical Note''':
  <pre>
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. 🚀
  md5sum -c redcore-linux-xxxx.iso.md5
  </pre>


# '''Résultat de la Vérification''' :
; '''Verification Result''' :
   * 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.
   root Redcore.Linux.Hardened.2301.Sirius.KDE.amd64.iso: OK
  root Redcore.Linux.Hardened.2301.Sirius.KDE.amd64.iso: OK


=== Vérification des Fichiers de Signature 🖋️ ===
If both checksums (SHA-256 and MD5) match, the ISO image is safe for installation. ✅


# '''Téléchargement des Fichiers de Signature''' :
=== Checking Signature Files 🖋️ ===
  * 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".


# '''Vérification des Fichiers de Signature''' :
; '''Downloading Signature Files''' :
   <pre>
   * Look for the ''.sig''' signature files associated with the ISO image on the download page.
  gpg --verify redcore-linux-xxxx.iso.sig redcore-linux-xxxx.iso
  </pre>


# '''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.
<pre>
</source>
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. 🔒