ventoy: add page (#18829)

This commit is contained in:
0x61nas
2025-10-19 15:29:16 +03:00
committed by GitHub
parent 101104ae9b
commit 6009fd8eaa
3 changed files with 79 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
# ventoy
> A tool to create bootable USB drives using ISO files.
> More information: <https://www.ventoy.net/en/doc_start.html#doc_linux_cli>.
- Install Ventoy to a specific drive with the defaults:
`ventoy -i {{/dev/sdX}}`
- Install Ventoy with GPT partition style instead of MBR:
`ventoy -i -g {{/dev/sdX}}`
- Install Ventoy with GPT partition style and a custom partition label and secure boot disabled:
`ventoy -i -g -S -L {{LABEL_NAME}} {{/dev/sdX}}`
- Install Ventoy and reserve space at the end of the disk:
`ventoy -i -r {{SIZE_MB}} {{/dev/sdX}}`
- Force install Ventoy (overwrites existing installation):
`ventoy -I {{/dev/sdX}}`
- Update Ventoy on a drive:
`ventoy -u {{/dev/sdX}}`
- Display Ventoy information for a drive:
`ventoy -l {{/dev/sdX}}`
- Try non-destructive installation if possible (Ventoy will not reformat the disk):
`ventoy -i -n {{/dev/sdX}}`
+7
View File
@@ -0,0 +1,7 @@
# ventoy
> This command is an alias of `Ventoy2Disk`.
- View documentation for the original command:
`tldr ventoy2disk`
+36
View File
@@ -0,0 +1,36 @@
# Ventoy2Disk
> A tool to create bootable USB drives using ISO files on Windows systems.
> More information: <https://www.ventoy.net/en/doc_windows_cli.html>.
- Install Ventoy to drive D: with default settings (MBR, Secure Boot enabled):
`Ventoy2Disk VTOYCLI /I /Drive:D:`
- Install Ventoy with GPT partition style and disable Secure Boot:
`Ventoy2Disk VTOYCLI /I /Drive:D: /GPT /NOSB`
- Install Ventoy and reserve 4GB space at the end of the disk:
`Ventoy2Disk VTOYCLI /I /Drive:D: /R:4096`
- Install Ventoy using physical drive number 1 with NTFS filesystem:
`Ventoy2Disk VTOYCLI /I /PhyDrive:1 /FS:NTFS`
- Install Ventoy without USB type checking (for internal drives):
`Ventoy2Disk VTOYCLI /I /Drive:D: /NOUSBCheck`
- Update Ventoy on drive D: while keeping current settings:
`Ventoy2Disk VTOYCLI /U /Drive:D:`
- Perform non-destructive installation (preserve existing data):
`Ventoy2Disk VTOYCLI /I /Drive:D: /NonDest`
- Install Ventoy with all options: GPT, no Secure Boot, 2GB reserved, NTFS, no USB check:
`Ventoy2Disk VTOYCLI /I /Drive:D: /GPT /NOSB /R:2048 /FS:NTFS /NOUSBCheck`