diff --git a/rapport.html b/rapport.html index 2238fb3e7e362a3a85b4501c28424c99ad3f7de6..2cc12ff265b23c18a472c2c34cbad3e6cb0369bb 100644 --- a/rapport.html +++ b/rapport.html @@ -435,13 +435,12 @@ Debian</p></li> <li><p>L’un des atouts de Debian fut le nombre d’architecture (≈ processeurs) officiellement prises en charge. Combien et lesquelles sont prises en charge par la version Bullseye ?<br /> ->Les architecture supporter par Debian sons presque indenonbrable si -on compte les version non officierl, voici les arcitechture supporter -officielement: >- PC 64 bits (amd64) >- ARM64 bits (AArch64) >- -ARM EABI (armel) >- ARM avec unité de calcul flottant (armhf) >- -PC 32 bits (i386) >- MIPS (grand boutiste) >- MIPS (petit -boutiste) >- MIPS 64 bits (petit boutiste) >- Processeurs POWER ->- IBM System<br /> +>Les architecture supporter par Debian sont au nombre de 10 +officielement, voici les arcitechture supporter officielement: >- PC +64 bits (amd64) >- ARM64 bits (AArch64) >- ARM EABI (armel) >- +ARM avec unité de calcul flottant (armhf) >- PC 32 bits (i386) >- +MIPS (grand boutiste) >- MIPS (petit boutiste) >- MIPS 64 bits +(petit boutiste) >- Processeurs POWER >- IBM System<br /> <a href="https://www.debian.org/releases/bullseye/index.fr.html">Source</a></p></li> <li><p>Première version avec un nom de code<br /> @@ -512,6 +511,9 @@ grandement l’écriture des lignes de commande</p></li> <li><p><strong><em>neofetch</em></strong> : pas très utile</p></li> </ol></li> </ul> +<p>Utilisation de git: ´´´sh git config –global user.name “Prénom Nom” ① +git config –global user.email “votre@email” ② git config –global +init.defaultBranch “master” ③ ´´´</p> </div> </div> </div> diff --git a/rapport.md b/rapport.md index fd410f7242adbe362b6ee3265e02a36c5a1270fe..eaf80add9af94848b054bfcb8401106e1d2f95cf 100644 --- a/rapport.md +++ b/rapport.md @@ -226,3 +226,10 @@ Modifier votre configuration (et recommencez l’installation) afin de : 3. ***bash-completion*** : va vous simplifier grandement l’écriture des lignes de commande 4. ***neofetch*** : pas très utile + +Utilisation de git: +´´´sh +git config --global user.name "Prénom Nom" ① +git config --global user.email "votre@email" ② +git config --global init.defaultBranch "master" ③ +´´´ diff --git a/readme.md b/readme.md index 648bb5f0dd4b78b28290547a537eda384d0debde..0d910d99562b36f5146932f90fe347a362c33e68 100644 --- a/readme.md +++ b/readme.md @@ -5,6 +5,7 @@ - SIBARNI Anas - ACHOUCH Anas - YAHIAOUI Mohamed El Amine +--- ## Procédures Compilation @@ -14,39 +15,45 @@ Pandoc est un outils de conversion en ligne de commande qui recupere un fichier #### Première étape : Installer Pandoc Debian : ```sh +#Installer pandoc et dn support LATEX pour les PDF sudo apt install pandoc sudo apt install pandoc-citeproc ``` -#### Convertire md en pdf - +#### PDF ```sh -pandoc <nom-fichier>.md -o <n>.pdf +pandoc <entre>.md -o <sortie>.pdf ``` - - -#### Convertire en HTML avec un tamplate -necessite un - +#### HTML #### install la commande pour le template - +on fait une copie du template. ``` bash # Clones repo to /tmp and copies templates to ~/.pandoc/templates curl 'https://raw.githubusercontent.com/ryangrose/easy-pandoc-templates/master/copy_templates.sh' | bash ``` -#### utilisation du template avec pandoc - +#### Compilation du PDF avec template +voici une commande permettan de compiler un ficier html avce un template, et quelques option personaliser comme le nom du fichier et le titre. +voici le lien du template open source +[Source](https://github.com/ryangrose/easy-pandoc-templates) ``` bash # pandoc source.md -o destination.html --template=template_name.html pandoc rapport.md -f markdown -o rapport.html --template=easy_template.html --toc --metadata title="SAÉ 2.03: Semaine 06 - GRP A7" ``` #### Convertire en HTML avec un tamplate - Curl ```sh 'https://raw.githubusercontent.com/ryangrose/easy-pandoc-templates/master/copy_templates.sh' | bash ``` -Voici les commande principale de conversion dans notre contexe: +--- +### Resumer code a executer +```sh +sudo apt install pandoc +sudo apt install pandoc-citeproc +pandoc rapport.md -o rapport.pdf +curl 'https://raw.githubusercontent.com/ryangrose/easy-pandoc-templates/master/copy_templates.sh' | bash +pandoc rapport.md -f markdown -o rapport.html --template=easy_template.html --toc --metadata title="SAÉ 2.03: Semaine 06 - GRP A7" + +``` \ No newline at end of file