forked from Deuxfleurs/guide.deuxfleurs.fr
Corrections multiples
This commit is contained in:
parent
766f1cf8be
commit
4e5fccb52c
9 changed files with 1734 additions and 18 deletions
|
@ -11,7 +11,7 @@ Suivez les liens dans le menu de gauche dans l'ordre
|
||||||
|
|
||||||
# Ressources
|
# Ressources
|
||||||
|
|
||||||
search.nixos.org pour trouver un paquet.
|
<https://search.nixos.org> pour trouver un paquet.
|
||||||
|
|
||||||
Se référer au wiki nixos pour comprendre rapidement un domaine.
|
Se référer au wiki NixOS pour comprendre rapidement un domaine.
|
||||||
Par exemple domaine = nodejs ou domaine = audio linux.
|
Par exemple domaine = nodejs ou domaine = audio linux.
|
||||||
|
|
|
@ -26,7 +26,7 @@ De plus, un grand nombre de ces dernières sont mêmes accessibles en Français.
|
||||||
Bref, avec un peu d'aide, il est tout à fait possible de s'auto-former.
|
Bref, avec un peu d'aide, il est tout à fait possible de s'auto-former.
|
||||||
|
|
||||||
Pour bien se former, il faut des bases théoriques dans un ensemble de domaines précis : réseau, système d’exploitation, « ingénieurie de fiabilité », et sécurité/cryptographie.
|
Pour bien se former, il faut des bases théoriques dans un ensemble de domaines précis : réseau, système d’exploitation, « ingénieurie de fiabilité », et sécurité/cryptographie.
|
||||||
Pour couvrir plus largement le domaine, il est bon d'inclure également un peu de programmation, un peu d’architecture matériel, un peu de base de données, un peu d’algorithmie, un peu de structure de données, etc. Une fois cette base acquise, et seulement une fois qu’elle est acquise, il est possible de s'intéresser au fonctionnement précis d'une technologie en particulier, mais c’est vraiment secondaire.
|
Pour couvrir plus largement le domaine, il est bon d'inclure également un peu de programmation, un peu d’architecture matérielle, un peu de base de données, un peu d’algorithmie, un peu de structure de données, etc. Une fois cette base acquise, et seulement une fois qu’elle est acquise, il est possible de s'intéresser au fonctionnement précis d'une technologie en particulier, mais c’est vraiment secondaire.
|
||||||
Ce wiki a pour objectif de référencer les bases théoriques existantes et d'apporter des bases pratiques spécifiques complémentaires.
|
Ce wiki a pour objectif de référencer les bases théoriques existantes et d'apporter des bases pratiques spécifiques complémentaires.
|
||||||
|
|
||||||
# Ressources externes
|
# Ressources externes
|
||||||
|
@ -71,4 +71,4 @@ Ce wiki a pour objectif de référencer les bases théoriques existantes et d'ap
|
||||||
|
|
||||||
**MOOC**. Il existe pas mal de MOOC en informatique, que ce soit en français comme en anglais, sur des plateformes spécialisées comme une playlist Youtube.
|
**MOOC**. Il existe pas mal de MOOC en informatique, que ce soit en français comme en anglais, sur des plateformes spécialisées comme une playlist Youtube.
|
||||||
|
|
||||||
[Exemple "France Université Numérique](https://www.fun-mooc.fr/fr/cours/?limit=21&offset=0&subjects=2787)
|
[Exemple "France Université Numérique"](https://www.fun-mooc.fr/fr/cours/?limit=21&offset=0&subjects=2787)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Chiffrement à froid
|
title: Chiffrement à froid
|
||||||
description: Guide à l'installation d'une machine en chiffrant intégralement son disque dur
|
description: Guide à l'installation d'une machine en chiffrant intégralement son disque dur
|
||||||
weight: 20
|
weight: 30
|
||||||
published: true
|
published: true
|
||||||
date: 2022-01-30T20:43:56.953Z
|
date: 2022-01-30T20:43:56.953Z
|
||||||
tags: serveur, infrastructure, sysadmin, technique, guide, tutoriel, administration, chiffrement, luks
|
tags: serveur, infrastructure, sysadmin, technique, guide, tutoriel, administration, chiffrement, luks
|
||||||
|
@ -9,7 +9,7 @@ editor: markdown
|
||||||
dateCreated: 2021-12-29T15:29:02.943Z
|
dateCreated: 2021-12-29T15:29:02.943Z
|
||||||
---
|
---
|
||||||
|
|
||||||
Le chiffrement à froid, c'est le fait de n'inscrire que des données chiffrées sur un disque (plus précisément [une partition de disque](https://fr.wikipedia.org/wiki/Partitionnement_logiciel_/_mat%C3%A9riel)). C'est le standard [LUKS](https://fr.wikipedia.org/wiki/LUKS) qui permet ce chiffrement : ce dernier se place entre le support de stockage et le système d'exploitation (OS), et dé/chiffre tout ce qui est lu ou écrit sur une partition. **Cette étape doit donc être réalisée avant d'installer le système d'exploitation, mais après [le partitionnement de vos disques](/Guide/Infra/Configuration_disques).**
|
Le chiffrement à froid, c'est le fait de n'inscrire que des données chiffrées sur un disque (plus précisément [une partition de disque](https://fr.wikipedia.org/wiki/Partitionnement_logiciel_/_mat%C3%A9riel)). C'est le standard [LUKS](https://fr.wikipedia.org/wiki/LUKS) qui permet ce chiffrement : ce dernier se place entre le support de stockage et le système d'exploitation (OS), et (dé)chiffre tout ce qui est lu ou écrit sur une partition. **Cette étape doit donc être réalisée avant d'installer le système d'exploitation, mais après [le partitionnement de vos disques](@/formations/sysadmin/partitionnement.md).**
|
||||||
|
|
||||||
Une fois le chiffrement mis en place, on utilise le système d'exploitation comme d'habitude (tout a l'air déchiffré à l'usage), parce que LUKS chiffre et déchiffre - de façon transparente - toutes les informations que l'OS lit et écrit sur la mémoire morte (le disque).
|
Une fois le chiffrement mis en place, on utilise le système d'exploitation comme d'habitude (tout a l'air déchiffré à l'usage), parce que LUKS chiffre et déchiffre - de façon transparente - toutes les informations que l'OS lit et écrit sur la mémoire morte (le disque).
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ Utiliser un Live CD, c'est la base pour configurer les disques d'une machine, in
|
||||||
Ce guide se décompose ainsi :
|
Ce guide se décompose ainsi :
|
||||||
|
|
||||||
* On commence par expliquer comme obtenir une *image disque* ou ISO. Elle contient le système qu'on va mettre sur le Live CD.
|
* On commence par expliquer comme obtenir une *image disque* ou ISO. Elle contient le système qu'on va mettre sur le Live CD.
|
||||||
* On explique comment *flasher* l'ISO obtenue sur le support de stockage de notre choix (CD, USB, carte SD, disque dur externe : ce que vous avez sur la main, tant que c'est capable de contenir l'ISO et connectable à l'ordinateur cible). *Flasher*, c'est le verbe classe pour dire « copier l'image disque sur le support de stockage » (avouez que ça claque).
|
* On explique comment *flasher* l'ISO obtenue sur le support de stockage de notre choix (CD, USB, carte SD, disque dur externe : ce que vous avez sur la main, tant que c'est capable de contenir l'ISO et connectable à l'ordinateur cible). *Flasher*, c'est le verbe classe pour dire « copier l'image disque sur le support de stockage » (avouez que ça claque !)
|
||||||
* On découvre les arcanes du BIOS, ce mini-OS présent sur la carte-mère de l'ordinateur et dont le rôle (entre autres) est de savoir quel système démarrer aujourd'hui. Dans notre cas, on veut démarrer sur le Live CD, ce qu'il faudra donc expliquer à notre ami le BIOS.
|
* On découvre les arcanes du BIOS, ce mini-OS présent sur la carte-mère de l'ordinateur et dont le rôle (entre autres) est de savoir quel système démarrer aujourd'hui. Dans notre cas, on veut démarrer sur le Live CD, ce qu'il faudra donc expliquer à notre ami le BIOS.
|
||||||
* Et ça démarre !
|
* Et ça démarre !
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: Partitionnement
|
title: Partitionnement
|
||||||
description: "Redondance, partitionnement, chiffrement : comment configurer ses disques durs en vue d'une installation de serveur"
|
description: "Redondance, partitionnement, chiffrement : comment configurer ses disques durs en vue d'une installation de serveur"
|
||||||
published: true
|
published: true
|
||||||
weight: 30
|
weight: 20
|
||||||
date: 2022-04-02T13:38:01.527Z
|
date: 2022-04-02T13:38:01.527Z
|
||||||
tags: serveur, infrastructure, sysadmin, technique, administration, chiffrement, disque, partitionnement, redondance
|
tags: serveur, infrastructure, sysadmin, technique, administration, chiffrement, disque, partitionnement, redondance
|
||||||
editor: markdown
|
editor: markdown
|
||||||
|
@ -13,7 +13,7 @@ dateCreated: 2021-12-30T11:39:09.554Z
|
||||||
|
|
||||||
On part du principe que vous disposez d'un ordinateur, chez vous ou dans un centre de données, et vous êtes prêt⋅e à annihiler le contenu de ses disques pour en faire un beau serveur tout propre. (Il est tout à fait faisable de garder des données existantes sur les disques, mais c'est hors du cadre de cet article.)
|
On part du principe que vous disposez d'un ordinateur, chez vous ou dans un centre de données, et vous êtes prêt⋅e à annihiler le contenu de ses disques pour en faire un beau serveur tout propre. (Il est tout à fait faisable de garder des données existantes sur les disques, mais c'est hors du cadre de cet article.)
|
||||||
|
|
||||||
On commencera par expliquer comment accéder aux disques pour les configurer, avant de traiter de partitionnement et de redondance (le fait d'écrire la même choses sur plusieurs disques, au cas où l'un d'entre eux casse). Un autre se focalise sur [le chiffrement des disques](/Guide/Infra/Chiffrement_froid), dont le but est que leur contenu soit incompréhensible sans la clé (si vous vous faites voler le disque, ou que votre hébergeur est trop curieux).
|
On commencera par expliquer comment accéder aux disques pour les configurer, avant de traiter de partitionnement et de redondance (le fait d'écrire la même choses sur plusieurs disques, au cas où l'un d'entre eux casse). Un autre se focalise sur [le chiffrement des disques](@/formations/sysadmin/chiffrement_froid.md), dont le but est que leur contenu soit incompréhensible sans la clé (si vous vous faites voler le disque, ou que votre hébergeur est trop curieux).
|
||||||
|
|
||||||
## Préliminaire : accéder aux disques
|
## Préliminaire : accéder aux disques
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ Pour configurer les disques, il faut y avoir accès, comme s'ils étaient des di
|
||||||
Deux possibilités :
|
Deux possibilités :
|
||||||
|
|
||||||
* _Vous disposez d'un accès physique à la machine_, et pouvez donc brancher écran, clavier, et insérer un live CD/USB Linux qui vous permettra de lancer Linux *depuis le live CD/USB*.
|
* _Vous disposez d'un accès physique à la machine_, et pouvez donc brancher écran, clavier, et insérer un live CD/USB Linux qui vous permettra de lancer Linux *depuis le live CD/USB*.
|
||||||
Si vous avez déjà installé un OS sur une machine, vous savez de quoi je parle. Sinon, référez-vous au [guide d'utilisation d'un Live CD](/Guide/Infra/Live_CD).
|
Si vous avez déjà installé un OS sur une machine, vous savez de quoi je parle. Sinon, référez-vous au [guide d'utilisation d'un Live CD](@/formations/sysadmin/installer_linux.md).
|
||||||
|
|
||||||
* _Vous n'avez pas accès physiquement à la machine_ (par exemple : elle est dans un centre de données). Auquel cas, le propriétaire de la machine doit avoir prévu le coup : vous devriez pouvoir vous connecter en SSH (ligne de commande à distance) à un *mode rescue* qui vous permettra d'agir sur les disques de la machine alors qu'elle est éteinte. Comment s'y prendre dépend de l'infrastructure logicielle du propriétaire du centre de données.
|
* _Vous n'avez pas accès physiquement à la machine_ (par exemple : elle est dans un centre de données). Auquel cas, le propriétaire de la machine doit avoir prévu le coup : vous devriez pouvoir vous connecter en SSH (ligne de commande à distance) à un *mode rescue* qui vous permettra d'agir sur les disques de la machine alors qu'elle est éteinte. Comment s'y prendre dépend de l'infrastructure logicielle du propriétaire du centre de données.
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ Comprenez d'abord qu'on « montera » un dossier du système Linux dans chaque p
|
||||||
Elle a besoin d'être sur le disque dur principal, et son format (BIOS ou EFI) dépend de l'âge de l'ordinateur (EFI est plus récent). La taille qu'elle doit faire dépend de son format, mais ça ne dépassera jamais 600 Mo.
|
Elle a besoin d'être sur le disque dur principal, et son format (BIOS ou EFI) dépend de l'âge de l'ordinateur (EFI est plus récent). La taille qu'elle doit faire dépend de son format, mais ça ne dépassera jamais 600 Mo.
|
||||||
Si vous non plus, vous n'y comprenez rien, j'ai trouvé [ce guide](https://www.easeus.fr/partition-manager-tips/difference-entre-bios-et-uefi.html) très clair et complet.
|
Si vous non plus, vous n'y comprenez rien, j'ai trouvé [ce guide](https://www.easeus.fr/partition-manager-tips/difference-entre-bios-et-uefi.html) très clair et complet.
|
||||||
* `/boot` contient les données d'amorçage du système, et pèse le plus souvent moins de 200 Mo.
|
* `/boot` contient les données d'amorçage du système, et pèse le plus souvent moins de 200 Mo.
|
||||||
On a besoin de mettre ce dossier dans sa propre partition quand on fait du [Chiffrement à froid](/Guide/Infra/Chiffrement_froid) sur la partition système (`/`), par exemple.
|
On a besoin de mettre ce dossier dans sa propre partition quand on fait du [Chiffrement à froid](@/formations/sysadmin/chiffrement_froid.md) sur la partition système (`/`), par exemple.
|
||||||
* Une partition `swap`, qui sert de **RAM de secours super lente**.
|
* Une partition `swap`, qui sert de **RAM de secours super lente**.
|
||||||
Très utile si l'on n'a pas beaucoup de RAM, parce qu'elle évite que le serveur ne s'éteigne brutalement dès la limite atteinte. En lieu et place, l'ordinateur fonctionne ô-combien-lentement, mais vous laisse quand même la possibilité de tuer cette saleté de processus qui a mangé toute la RAM, sans avoir à redémarrer.
|
Très utile si l'on n'a pas beaucoup de RAM, parce qu'elle évite que le serveur ne s'éteigne brutalement dès la limite atteinte. En lieu et place, l'ordinateur fonctionne ô-combien-lentement, mais vous laisse quand même la possibilité de tuer cette saleté de processus qui a mangé toute la RAM, sans avoir à redémarrer.
|
||||||
|
|
||||||
|
@ -149,12 +149,12 @@ Personnellement, aujourd'hui, j'ai deux configurations de serveur à partitionne
|
||||||
* Ce serveur étant loué dans un centre de données, je compte chiffrer mes données. Je ne veux pas avoir X clés de déchiffrement (une par partition) à rentrer à chaque démarrage, donc je vais utiliser LVM pour ne créer qu'une seule grosse partition chiffrée (dont LVM gèrera le sous-partitionnement pour mon système).
|
* Ce serveur étant loué dans un centre de données, je compte chiffrer mes données. Je ne veux pas avoir X clés de déchiffrement (une par partition) à rentrer à chaque démarrage, donc je vais utiliser LVM pour ne créer qu'une seule grosse partition chiffrée (dont LVM gèrera le sous-partitionnement pour mon système).
|
||||||
* J'ai 3 disques, je vais donc pouvoir utiliser RAID5 pour la redondance de cette méga-partition LVM (RAID1 aurait toléré un *crash* de disque de plus, mais j'aurais eu moins d'espace disque).
|
* J'ai 3 disques, je vais donc pouvoir utiliser RAID5 pour la redondance de cette méga-partition LVM (RAID1 aurait toléré un *crash* de disque de plus, mais j'aurais eu moins d'espace disque).
|
||||||
* Dans LVM, on aura presque 4 To d'espace ! On va faire une partition `/`, une `/home`, une `/var`, une `/data` et la `swap`. Leurs tailles seront facilement adaptables avec LVM à l'usage, donc on s'en fiche à ce stade.
|
* Dans LVM, on aura presque 4 To d'espace ! On va faire une partition `/`, une `/home`, une `/var`, une `/data` et la `swap`. Leurs tailles seront facilement adaptables avec LVM à l'usage, donc on s'en fiche à ce stade.
|
||||||
* Le chiffrement va nécessiter un partition `/boot`, pour que je puisse me connecter au serveur et le déchiffrer avant chaque démarrage (cf. [guide du chiffrement à froid](/Guide/Infra/Chiffrement_froid)). La partition `/boot` sera redondée en RAID1.
|
* Le chiffrement va nécessiter un partition `/boot`, pour que je puisse me connecter au serveur et le déchiffrer avant chaque démarrage (cf. [guide du chiffrement à froid](@/formations/sysadmin/chiffrement_froid.md)). La partition `/boot` sera redondée en RAID1.
|
||||||
* Il va me falloir une petite partition d'amorçage BIOS/EFI de quelques Mo.
|
* Il va me falloir une petite partition d'amorçage BIOS/EFI de quelques Mo.
|
||||||
|
|
||||||
Graphiquement, ça ressemblera à ça :
|
Graphiquement, ça ressemblera à ça :
|
||||||
|
|
||||||
![Partitionnement de 3 disques avec partition /boot et LVM](/partitionnement_3_disques_lvm.svg)
|
![Partitionnement de 3 disques avec partition /boot et LVM](/img/partitionnement_3_disques_lvm.svg)
|
||||||
|
|
||||||
* _2 disques de 2 To_ (machines Swordfish & Red Tail) :
|
* _2 disques de 2 To_ (machines Swordfish & Red Tail) :
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ Personnellement, aujourd'hui, j'ai deux configurations de serveur à partitionne
|
||||||
|
|
||||||
En image :
|
En image :
|
||||||
|
|
||||||
![partitionnement_2_disques_lvm.svg](/partitionnement_2_disques_lvm.svg)
|
![partitionnement_2_disques_lvm.svg](/img/partitionnement_2_disques_lvm.svg)
|
||||||
|
|
||||||
|
|
||||||
> L'article est en réécriture à partir de ce point !
|
> L'article est en réécriture à partir de ce point !
|
||||||
|
@ -408,7 +408,7 @@ sda 8:0 0 1.8T 0 disk
|
||||||
|
|
||||||
C'est magnifique, nous avons des partitions. Mais pour l'instant, elles ne servent à rien : il leur manque un système de fichier pour être utilisables par un système d'exploitation.
|
C'est magnifique, nous avons des partitions. Mais pour l'instant, elles ne servent à rien : il leur manque un système de fichier pour être utilisables par un système d'exploitation.
|
||||||
|
|
||||||
Si vous comptez chiffrer les disques de votre futur serveur (ce qu'on recommande chaudement si votre serveur est dans un centre de données), il faut configurer le chiffrement *avant* d'installer un système de fichier. Rendez-vous donc sur le [guide du chiffrement à froid](/Guide/Infra/Chiffrement_froid), où on traitera aussi de l'installation du système de fichier de A à Z : vous avez donc fini ce guide, bravo !
|
Si vous comptez chiffrer les disques de votre futur serveur (ce qu'on recommande chaudement si votre serveur est dans un centre de données), il faut configurer le chiffrement *avant* d'installer un système de fichier. Rendez-vous donc sur le [guide du chiffrement à froid](@/formations/sysadmin/chiffrement_froid.md), où on traitera aussi de l'installation du système de fichier de A à Z : vous avez donc fini ce guide, bravo !
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -418,8 +418,6 @@ Si vous êtes encore là, vous n'avez pas l'intention de chiffrer vos disques. I
|
||||||
|
|
||||||
> TODO: ext4 vs. ZFS. [Un guide en anglais](https://nascompares.com/2021/07/21/zfs-vs-ext4-for-nas-what-is-the-difference-in-your-file-system/).
|
> TODO: ext4 vs. ZFS. [Un guide en anglais](https://nascompares.com/2021/07/21/zfs-vs-ext4-for-nas-what-is-the-difference-in-your-file-system/).
|
||||||
|
|
||||||
Le système de fi
|
|
||||||
|
|
||||||
# Références
|
# Références
|
||||||
|
|
||||||
* ADRN, [Guide d'installation de Debian avec chiffrement à froid dans le centre de données Kimsufi](https://plume.deuxfleurs.fr/~/WebTrotter/installing-a-cloud-server-with-full-disk-encryption), Blog Deuxfleurs, avril 2021, anglais.
|
* ADRN, [Guide d'installation de Debian avec chiffrement à froid dans le centre de données Kimsufi](https://plume.deuxfleurs.fr/~/WebTrotter/installing-a-cloud-server-with-full-disk-encryption), Blog Deuxfleurs, avril 2021, anglais.
|
||||||
|
|
340
static/img/partitionnement_2_disques.svg
Normal file
340
static/img/partitionnement_2_disques.svg
Normal file
|
@ -0,0 +1,340 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="138.98186mm"
|
||||||
|
height="36.416893mm"
|
||||||
|
viewBox="0 0 138.98186 36.416893"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
||||||
|
sodipodi:docname="partitionnement_2_disques.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<marker
|
||||||
|
inkscape:isstock="true"
|
||||||
|
style="overflow:visible"
|
||||||
|
id="marker1271"
|
||||||
|
refX="0"
|
||||||
|
refY="0"
|
||||||
|
orient="auto"
|
||||||
|
inkscape:stockid="Arrow1Sstart">
|
||||||
|
<path
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
id="path1269"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Sstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Sstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true"
|
||||||
|
inkscape:collect="always">
|
||||||
|
<path
|
||||||
|
id="path967"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Mstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Mstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true">
|
||||||
|
<path
|
||||||
|
id="path961"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.4,0,0,0.4,4,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="148.99802"
|
||||||
|
inkscape:cy="8.1869618"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1055"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-29.916813,51.833118)">
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot852"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.33333397px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="scale(0.26458333)"><flowRegion
|
||||||
|
id="flowRegion854"><rect
|
||||||
|
id="rect856"
|
||||||
|
width="524.28577"
|
||||||
|
height="40.000011"
|
||||||
|
x="113.57142"
|
||||||
|
y="163.23396" /></flowRegion><flowPara
|
||||||
|
id="flowPara858"></flowPara></flowRoot> <g
|
||||||
|
transform="translate(0,-59.266668)"
|
||||||
|
id="g1692">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect1686"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="11.438988"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
id="text1690"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1688"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
style="font-size:3.52777767px;stroke-width:0.26458332px">/dev/sda</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1809">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect1694"
|
||||||
|
height="8.5270004"
|
||||||
|
x="65.470192"
|
||||||
|
y="-46.799465"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="102" />
|
||||||
|
<text
|
||||||
|
id="text1698"
|
||||||
|
y="-41.041645"
|
||||||
|
x="101.29373"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:4.23333311px;stroke-width:0.26458332px"
|
||||||
|
y="-41.041645"
|
||||||
|
x="101.29373"
|
||||||
|
id="tspan1696"
|
||||||
|
sodipodi:role="line">/var - RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(5.2916667,-59.266668)"
|
||||||
|
id="g1708">
|
||||||
|
<rect
|
||||||
|
width="8"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="12.467204"
|
||||||
|
x="35.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect1702"
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.075283"
|
||||||
|
y="18.225021"
|
||||||
|
id="text1706"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1704"
|
||||||
|
x="38.075283"
|
||||||
|
y="18.225021"
|
||||||
|
style="font-size:4.23333311px;stroke-width:0.26458332px">/</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1720"
|
||||||
|
transform="translate(0,-58.208335)">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect1710"
|
||||||
|
height="8.5270004"
|
||||||
|
x="31.345285"
|
||||||
|
y="11.408872"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="2" />
|
||||||
|
<g
|
||||||
|
id="g1718">
|
||||||
|
<text
|
||||||
|
id="text1714"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222223px;stroke-width:0.26458332px"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
id="tspan1712"
|
||||||
|
sodipodi:role="line">BIOS</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1716"
|
||||||
|
d="m 32.339613,18.277837 v 7.635938 h 4.816223"
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Sstart)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g1732"
|
||||||
|
transform="translate(0,-58.208335)">
|
||||||
|
<rect
|
||||||
|
width="2"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="11.408872"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect1722"
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<g
|
||||||
|
id="g1730">
|
||||||
|
<text
|
||||||
|
id="text1726"
|
||||||
|
y="23.978806"
|
||||||
|
x="37.939995"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="stroke-width:0.26458332px"
|
||||||
|
y="23.978806"
|
||||||
|
x="37.939995"
|
||||||
|
id="tspan1724"
|
||||||
|
sodipodi:role="line">/boot</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1728"
|
||||||
|
d="m 34.360837,18.277837 v 4.820159 h 2.794999"
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker1271)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect1736"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="-26.131849"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="-27.283314"
|
||||||
|
id="text1740"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1738"
|
||||||
|
x="30.56529"
|
||||||
|
y="-27.283314"
|
||||||
|
style="font-size:3.52777767px;stroke-width:0.26458332px">/dev/sdb</tspan></text>
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect1778"
|
||||||
|
width="5.2916665"
|
||||||
|
height="8.5270004"
|
||||||
|
x="35.345284"
|
||||||
|
y="-46.799465" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222223px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="39.147892"
|
||||||
|
y="38.451138"
|
||||||
|
id="text1782"
|
||||||
|
transform="rotate(-90)"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1780"
|
||||||
|
x="39.147892"
|
||||||
|
y="38.451138"
|
||||||
|
style="stroke-width:0.26458332px">swap</tspan></text>
|
||||||
|
<g
|
||||||
|
id="g1823"
|
||||||
|
transform="translate(0,21.695783)">
|
||||||
|
<rect
|
||||||
|
width="102"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="-46.799465"
|
||||||
|
x="65.470192"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect1817"
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="101.29373"
|
||||||
|
y="-41.041645"
|
||||||
|
id="text1821"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1819"
|
||||||
|
x="101.29373"
|
||||||
|
y="-41.041645"
|
||||||
|
style="font-size:4.23333311px;stroke-width:0.26458332px">/var - RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
width="34.124908"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="-25.103683"
|
||||||
|
x="31.345285"
|
||||||
|
height="8.5270014"
|
||||||
|
id="rect1849"
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444447px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="42.108551"
|
||||||
|
y="-19.345816"
|
||||||
|
id="text1853"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan1851"
|
||||||
|
x="42.108551"
|
||||||
|
y="-19.345816"
|
||||||
|
style="font-size:4.23333311px;stroke-width:0.26458332px">/home</tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 16 KiB |
590
static/img/partitionnement_2_disques_lvm.svg
Normal file
590
static/img/partitionnement_2_disques_lvm.svg
Normal file
|
@ -0,0 +1,590 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="138.98186mm"
|
||||||
|
height="34.300232mm"
|
||||||
|
viewBox="0 0 138.98186 34.300232"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="1.1.2 (1:1.1+202202050950+0a00cf5339)"
|
||||||
|
sodipodi:docname="partitionnement_2_disques_lvm.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<marker
|
||||||
|
inkscape:isstock="true"
|
||||||
|
style="overflow:visible"
|
||||||
|
id="marker1271"
|
||||||
|
refX="0"
|
||||||
|
refY="0"
|
||||||
|
orient="auto"
|
||||||
|
inkscape:stockid="Arrow1Sstart">
|
||||||
|
<path
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
id="path1269"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Sstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Sstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true"
|
||||||
|
inkscape:collect="always">
|
||||||
|
<path
|
||||||
|
id="path967"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Mstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Mstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true">
|
||||||
|
<path
|
||||||
|
id="path961"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.4,0,0,0.4,4,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.3013567"
|
||||||
|
inkscape:cx="150.99627"
|
||||||
|
inkscape:cy="25.742366"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1055"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:pagecheckerboard="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-29.916813,-48.708551)">
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot852"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.3333px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="scale(0.26458333)"><flowRegion
|
||||||
|
id="flowRegion854"><rect
|
||||||
|
id="rect856"
|
||||||
|
width="524.28577"
|
||||||
|
height="40.000011"
|
||||||
|
x="113.57142"
|
||||||
|
y="163.23396" /></flowRegion><flowPara
|
||||||
|
id="flowPara858" /></flowRoot>
|
||||||
|
<rect
|
||||||
|
rx="2.6726952"
|
||||||
|
ry="1.2288305"
|
||||||
|
y="114.62648"
|
||||||
|
x="30.049105"
|
||||||
|
height="10.583334"
|
||||||
|
width="138.71727"
|
||||||
|
id="rect929"
|
||||||
|
style="vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
id="text933"
|
||||||
|
y="113.47504"
|
||||||
|
x="30.56529"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px"
|
||||||
|
y="113.47504"
|
||||||
|
x="30.56529"
|
||||||
|
id="tspan931"
|
||||||
|
sodipodi:role="line">/dev/sdb</tspan></text>
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect947"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="129.97235"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="128.82089"
|
||||||
|
id="text951"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan949"
|
||||||
|
x="30.56529"
|
||||||
|
y="128.82089"
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px">/dev/sdc</tspan></text>
|
||||||
|
<g
|
||||||
|
transform="translate(0,83.608337)"
|
||||||
|
id="g971">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect965"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="11.438988"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
id="text969"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan967"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px">/dev/sda</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16799">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect973"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text977"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan15721">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan15725">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16793">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect981"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text985"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan983"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan11489">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16910">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect989"
|
||||||
|
height="8.5270004"
|
||||||
|
x="31.345285"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="2" />
|
||||||
|
<g
|
||||||
|
id="g997"
|
||||||
|
transform="translate(0,82.020838)">
|
||||||
|
<text
|
||||||
|
id="text993"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
id="tspan991"
|
||||||
|
sodipodi:role="line">BIOS ou EFI</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path995"
|
||||||
|
d="m 32.339613,21.449449 v 4.464326 h 4.816223"
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Sstart)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16942"
|
||||||
|
transform="translate(0,19.579115)">
|
||||||
|
<g
|
||||||
|
id="g16920">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect16912"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text16918"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16914">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16916">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16930">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect16922"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text16928"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16924"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan16926">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16970"
|
||||||
|
transform="translate(0,34.924947)">
|
||||||
|
<g
|
||||||
|
id="g16958">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect16950"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text16956"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16952">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16954">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16968">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect16960"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text16966"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16962"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan16964">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
rx="2.6726952"
|
||||||
|
ry="1.2288305"
|
||||||
|
y="72.293159"
|
||||||
|
x="30.049105"
|
||||||
|
height="10.583334"
|
||||||
|
width="138.71727"
|
||||||
|
id="rect26593"
|
||||||
|
style="vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
id="text26597"
|
||||||
|
y="71.141708"
|
||||||
|
x="30.56529"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px"
|
||||||
|
y="71.141708"
|
||||||
|
x="30.56529"
|
||||||
|
id="tspan26595"
|
||||||
|
sodipodi:role="line">/dev/sdb</tspan></text>
|
||||||
|
<g
|
||||||
|
transform="translate(0,41.275003)"
|
||||||
|
id="g26605">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect26599"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="11.438988"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
id="text26603"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan26601"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px">/dev/sda</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g26615"
|
||||||
|
transform="translate(0,-42.333333)">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect26607"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text26613"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan26609">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan26611">RAID1 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g26625"
|
||||||
|
transform="translate(0,-42.333333)">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect26617"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text26623"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan26619"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan26621">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g26637"
|
||||||
|
transform="translate(0,-42.333333)">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect26627"
|
||||||
|
height="8.5270004"
|
||||||
|
x="31.345285"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="2" />
|
||||||
|
<g
|
||||||
|
id="g26635"
|
||||||
|
transform="translate(0,82.020838)">
|
||||||
|
<text
|
||||||
|
id="text26631"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
id="tspan26629"
|
||||||
|
sodipodi:role="line">BIOS ou EFI</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path26633"
|
||||||
|
d="m 32.339613,21.449449 v 4.464326 h 4.816223"
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Sstart)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g26659"
|
||||||
|
transform="translate(0,-22.754219)">
|
||||||
|
<g
|
||||||
|
id="g26647">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect26639"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text26645"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan26641">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan26643">RAID1 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g26657">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect26649"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text26655"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan26651"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan26653">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 29 KiB |
394
static/img/partitionnement_3_disques.svg
Normal file
394
static/img/partitionnement_3_disques.svg
Normal file
|
@ -0,0 +1,394 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="138.98186mm"
|
||||||
|
height="49.646091mm"
|
||||||
|
viewBox="0 0 138.98186 49.646092"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="1.1.2 (1:1.1+202202050950+0a00cf5339)"
|
||||||
|
sodipodi:docname="partitionnement_3_disques.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<marker
|
||||||
|
inkscape:isstock="true"
|
||||||
|
style="overflow:visible"
|
||||||
|
id="marker1271"
|
||||||
|
refX="0"
|
||||||
|
refY="0"
|
||||||
|
orient="auto"
|
||||||
|
inkscape:stockid="Arrow1Sstart">
|
||||||
|
<path
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
id="path1269"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Sstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Sstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true"
|
||||||
|
inkscape:collect="always">
|
||||||
|
<path
|
||||||
|
id="path967"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Mstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Mstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true">
|
||||||
|
<path
|
||||||
|
id="path961"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.4,0,0,0.4,4,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="4.5628703"
|
||||||
|
inkscape:cx="95.225149"
|
||||||
|
inkscape:cy="62.789425"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1055"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:pagecheckerboard="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-29.916813,-91.041885)">
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot852"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.3333px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="scale(0.26458333)"><flowRegion
|
||||||
|
id="flowRegion854"><rect
|
||||||
|
id="rect856"
|
||||||
|
width="524.28577"
|
||||||
|
height="40.000011"
|
||||||
|
x="113.57142"
|
||||||
|
y="163.23396" /></flowRegion><flowPara
|
||||||
|
id="flowPara858" /></flowRoot>
|
||||||
|
<rect
|
||||||
|
rx="2.6726952"
|
||||||
|
ry="1.2288305"
|
||||||
|
y="114.62648"
|
||||||
|
x="30.049105"
|
||||||
|
height="10.583334"
|
||||||
|
width="138.71727"
|
||||||
|
id="rect929"
|
||||||
|
style="vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
id="text933"
|
||||||
|
y="113.47504"
|
||||||
|
x="30.56529"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px"
|
||||||
|
y="113.47504"
|
||||||
|
x="30.56529"
|
||||||
|
id="tspan931"
|
||||||
|
sodipodi:role="line">/dev/sdb</tspan></text>
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect947"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="129.97235"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="128.82089"
|
||||||
|
id="text951"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan949"
|
||||||
|
x="30.56529"
|
||||||
|
y="128.82089"
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px">/dev/sdc</tspan></text>
|
||||||
|
<g
|
||||||
|
transform="translate(0,83.608337)"
|
||||||
|
id="g971">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect965"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="11.438988"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
id="text969"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan967"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px">/dev/sda</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16799">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect973"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text977"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan15721">LVM : /, /home, /var, /data...</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan15725">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16793">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect981"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text985"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan983"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan11489">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16910">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect989"
|
||||||
|
height="8.5270004"
|
||||||
|
x="31.345285"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="2" />
|
||||||
|
<g
|
||||||
|
id="g997"
|
||||||
|
transform="translate(0,82.020838)">
|
||||||
|
<text
|
||||||
|
id="text993"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
id="tspan991"
|
||||||
|
sodipodi:role="line">BIOS ou EFI</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path995"
|
||||||
|
d="m 32.339613,21.449449 v 4.464326 h 4.816223"
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Sstart)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16942"
|
||||||
|
transform="translate(0,19.579115)">
|
||||||
|
<g
|
||||||
|
id="g16920">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect16912"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text16918"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16914">LVM : /, /home, /var, /data...</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16916">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16930">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect16922"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text16928"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16924"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan16926">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16970"
|
||||||
|
transform="translate(0,34.924947)">
|
||||||
|
<g
|
||||||
|
id="g16958">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect16950"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text16956"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16952">LVM : /, /home, /var, /data...</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16954">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16968">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect16960"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text16966"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16962"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan16964">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 19 KiB |
394
static/img/partitionnement_3_disques_lvm.svg
Normal file
394
static/img/partitionnement_3_disques_lvm.svg
Normal file
|
@ -0,0 +1,394 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="138.98186mm"
|
||||||
|
height="49.646091mm"
|
||||||
|
viewBox="0 0 138.98186 49.646092"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="1.1.2 (1:1.1+202202050950+0a00cf5339)"
|
||||||
|
sodipodi:docname="partitionnement_3_disques_lvm.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<marker
|
||||||
|
inkscape:isstock="true"
|
||||||
|
style="overflow:visible"
|
||||||
|
id="marker1271"
|
||||||
|
refX="0"
|
||||||
|
refY="0"
|
||||||
|
orient="auto"
|
||||||
|
inkscape:stockid="Arrow1Sstart">
|
||||||
|
<path
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
id="path1269"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Sstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Sstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true"
|
||||||
|
inkscape:collect="always">
|
||||||
|
<path
|
||||||
|
id="path967"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.2,0,0,0.2,1.2,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
<marker
|
||||||
|
inkscape:stockid="Arrow1Mstart"
|
||||||
|
orient="auto"
|
||||||
|
refY="0"
|
||||||
|
refX="0"
|
||||||
|
id="Arrow1Mstart"
|
||||||
|
style="overflow:visible"
|
||||||
|
inkscape:isstock="true">
|
||||||
|
<path
|
||||||
|
id="path961"
|
||||||
|
d="M 0,0 5,-5 -12.5,0 5,5 Z"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
||||||
|
transform="matrix(0.4,0,0,0.4,4,0)"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</marker>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.6696464"
|
||||||
|
inkscape:cx="316.53409"
|
||||||
|
inkscape:cy="154.22427"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1055"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:pagecheckerboard="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-29.916813,-91.041885)">
|
||||||
|
<flowRoot
|
||||||
|
xml:space="preserve"
|
||||||
|
id="flowRoot852"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.3333px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
transform="scale(0.26458333)"><flowRegion
|
||||||
|
id="flowRegion854"><rect
|
||||||
|
id="rect856"
|
||||||
|
width="524.28577"
|
||||||
|
height="40.000011"
|
||||||
|
x="113.57142"
|
||||||
|
y="163.23396" /></flowRegion><flowPara
|
||||||
|
id="flowPara858" /></flowRoot>
|
||||||
|
<rect
|
||||||
|
rx="2.6726952"
|
||||||
|
ry="1.2288305"
|
||||||
|
y="114.62648"
|
||||||
|
x="30.049105"
|
||||||
|
height="10.583334"
|
||||||
|
width="138.71727"
|
||||||
|
id="rect929"
|
||||||
|
style="vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
id="text933"
|
||||||
|
y="113.47504"
|
||||||
|
x="30.56529"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px"
|
||||||
|
y="113.47504"
|
||||||
|
x="30.56529"
|
||||||
|
id="tspan931"
|
||||||
|
sodipodi:role="line">/dev/sdb</tspan></text>
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect947"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="129.97235"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="128.82089"
|
||||||
|
id="text951"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan949"
|
||||||
|
x="30.56529"
|
||||||
|
y="128.82089"
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px">/dev/sdc</tspan></text>
|
||||||
|
<g
|
||||||
|
transform="translate(0,83.608337)"
|
||||||
|
id="g971">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect965"
|
||||||
|
width="138.71727"
|
||||||
|
height="10.583334"
|
||||||
|
x="30.049105"
|
||||||
|
y="11.438988"
|
||||||
|
ry="1.2288305"
|
||||||
|
rx="2.6726952" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
id="text969"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan967"
|
||||||
|
x="30.56529"
|
||||||
|
y="10.287522"
|
||||||
|
style="font-size:3.52778px;stroke-width:0.264583px">/dev/sda</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16799">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect973"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text977"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan15721">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan15725">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16793">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect981"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text985"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan983"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan11489">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16910">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect989"
|
||||||
|
height="8.5270004"
|
||||||
|
x="31.345285"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="2" />
|
||||||
|
<g
|
||||||
|
id="g997"
|
||||||
|
transform="translate(0,82.020838)">
|
||||||
|
<text
|
||||||
|
id="text993"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.64444px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="26.918764"
|
||||||
|
x="37.818638"
|
||||||
|
id="tspan991"
|
||||||
|
sodipodi:role="line">BIOS ou EFI</tspan></text>
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path995"
|
||||||
|
d="m 32.339613,21.449449 v 4.464326 h 4.816223"
|
||||||
|
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#Arrow1Sstart)" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16942"
|
||||||
|
transform="translate(0,19.579115)">
|
||||||
|
<g
|
||||||
|
id="g16920">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect16912"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text16918"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16914">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16916">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16930">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect16922"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text16928"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16924"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan16926">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16970"
|
||||||
|
transform="translate(0,34.924947)">
|
||||||
|
<g
|
||||||
|
id="g16958">
|
||||||
|
<rect
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||||
|
id="rect16950"
|
||||||
|
height="8.5270042"
|
||||||
|
x="43.345284"
|
||||||
|
y="96.075539"
|
||||||
|
rx="0"
|
||||||
|
ry="0"
|
||||||
|
width="124.1249" />
|
||||||
|
<text
|
||||||
|
id="text16956"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="99.701218"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16952">LVM : /, /home, /var, /data & swap</tspan><tspan
|
||||||
|
style="font-size:2.82222px;stroke-width:0.264583px"
|
||||||
|
y="103.229"
|
||||||
|
x="80.442436"
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16954">RAID5 + chiffrement</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g16968">
|
||||||
|
<rect
|
||||||
|
width="10"
|
||||||
|
ry="0"
|
||||||
|
rx="0"
|
||||||
|
y="96.075539"
|
||||||
|
x="33.345284"
|
||||||
|
height="8.5270004"
|
||||||
|
id="rect16960"
|
||||||
|
style="vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#141414;stroke-width:0.264583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.82222px;line-height:125%;font-family:'Fira Code';-inkscape-font-specification:'Fira Code';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
id="text16966"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan16962"
|
||||||
|
x="38.384792"
|
||||||
|
y="99.716736"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px">/boot</tspan><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
x="38.384792"
|
||||||
|
y="103.24451"
|
||||||
|
style="font-size:2.82222px;text-align:center;text-anchor:middle;stroke-width:0.264583px"
|
||||||
|
id="tspan16964">RAID1</tspan></text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 19 KiB |
Loading…
Reference in a new issue