mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-20 15:50:43 +00:00
Update cheatsheets
This commit is contained in:
41
tldr/linux/ventoy
Normal file
41
tldr/linux/ventoy
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user