Outils pour utilisateurs

Outils du site


all:bibles:applications:ventoy

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
all:bibles:applications:ventoy [2024/04/10 19:12] – créée omeylhocall:bibles:applications:ventoy [2025/08/20 10:20] (Version actuelle) – [Créer une clef USB bootable] omeylhoc
Ligne 1: Ligne 1:
 +====== Ventoy ======
 +
 +----
 +
 +===== Linux =====
 +
 +==== Installation ====
 +
 +  * Récupérer et extraire l'archive tar.gz pour linux sur le site : [[https://www.ventoy.net/en/download.html|Ventoy]]
 +
 +<code bash>
 +tar zxvf ventoy-x.y.zz-linux.tar.gz
 +</code>
 +
 +==== Créer une clef USB bootable ====
 +
 +<code>
 +Ventoy2Disk.sh CMD [ OPTION ] /dev/sdX
 +  CMD:
 +    -i   install ventoy to sdX (fail if disk already installed with ventoy)
 +    -I   force install ventoy to sdX (no matter installed or not)
 +    -u   update ventoy in sdX
 +    -l   list Ventoy information in sdX
 +    
 +  OPTION: (optional)
 +   -r SIZE_MB  preserve some space at the bottom of the disk (only for install)
 +   -s          enable secure boot support (default is disabled)
 +   -g          use GPT partition style, default is MBR style (only for install)
 +   -L          Label of the main partition (default is Ventoy)
 +</code>
 +
 +=== Exemple ===
 +
 +<code bash>
 +cd ventoy-x.y.zz-linux.tar.gz
 +./Ventoy2Disk.sh -i -s /dev/sdx
 +</code>
 +
 +----