Ventoy/INSTALL
longpanda d94d59583a Search VTEFI directory for UEFI boot files.
When user install for example Windows in the reserved space of Ventoy USB stick in UEFI mode.
Windows will create part 3 as the EFI partition and when you boot the USB stick, the BIOS may skip Ventoy and directly boot the Windows.
To avoid this, we suggest to rename the directory name from EFI to VTEFI.
2022-12-26 22:08:23 +08:00
..
EFI/BOOT 1.0.85 release 2022-12-18 22:11:28 +08:00
grub Search VTEFI directory for UEFI boot files. 2022-12-26 22:08:23 +08:00
plugin/ventoy 1.0.45 release 2021-05-29 19:42:16 +08:00
tool Fix the egrep warning. (#2083) 2022-12-21 19:59:16 +08:00
ventoy Remove useless BypassStorageCheck registry when VTOY_WIN11_BYPASS_CHECK is set to 1. (#1873) 2022-12-23 23:41:57 +08:00
all_in_one.sh 1.0.60 release 2021-11-12 19:56:05 +08:00
CreatePersistentImg.sh Fix Issue #1825 (#1826) 2022-09-12 23:18:12 +08:00
DO_NOT_RUN_Ventoy2Disk_HERE.txt Rename DON_NOT_RUN_Ventoy2Disk_HERE.txt to DO_NOT_RUN_Ventoy2Disk_HERE.txt (#46) 2020-05-03 07:54:15 +08:00
docker_ci_build.sh update CI script 2021-04-02 10:08:23 +08:00
ExtendPersistentImg.sh 1.0.80 release 2022-09-21 19:41:51 +08:00
FOR_X64_ARM.txt 1.0.58 release 2021-11-06 17:54:11 +08:00
README Update readme 2022-12-25 17:23:50 +08:00
Ventoy2Disk_ARM64.exe 1.0.86 release 2022-12-24 21:19:31 +08:00
Ventoy2Disk_ARM.exe 1.0.86 release 2022-12-24 21:19:31 +08:00
Ventoy2Disk_X64.exe 1.0.86 release 2022-12-24 21:19:31 +08:00
Ventoy2Disk.exe 1.0.86 release 2022-12-24 21:19:31 +08:00
Ventoy2Disk.sh Fix the egrep warning. (#2083) 2022-12-21 19:59:16 +08:00
ventoy_pack.sh Optimization for the implement of menu languages. 2022-12-19 23:49:25 +08:00
VentoyGUI.aarch64 --xdg improvement 2022-04-25 10:38:16 +08:00
VentoyGUI.i386 --xdg improvement 2022-04-25 10:38:16 +08:00
VentoyGUI.mips64el --xdg improvement 2022-04-25 10:38:16 +08:00
VentoyGUI.x86_64 --xdg improvement 2022-04-25 10:38:16 +08:00
VentoyPlugson.sh Fix the egrep warning. (#2083) 2022-12-21 19:59:16 +08:00
VentoyWeb.sh Fix the egrep warning. (#2083) 2022-12-21 19:59:16 +08:00

========== Ventoy2Disk.sh ===============

sudo bash Ventoy2Disk.sh { -i | -I | -u } /dev/sdX   sdX is the USB device, for example /dev/sdb.

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
    
  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)

Please refer https://www.ventoy.net/en/doc_start.html for details.   


========== VentoyWeb.sh ===============
1. sudo bash VentoyWeb.sh 
2. open your browser and visit http://127.0.0.1:24680


========== VentoyPlugson.sh ===============
1. sudo bash VentoyPlugson.sh /dev/sdX
2. open your browser and visit http://127.0.0.1:24681

========== VentoyVlnk.sh ===============
Usage:  sudo bash VentoyVlnk.sh CMD FILE
  CMD:
   -c FILE      create vlnk for FILE
   -l VLNK      parse vlnk file
   -v           print verbose info
   -h           print this help


========= VentoyGUI ===================
VentoyGUI is native GUI program for Linux (GTK/QT)
1. Just double-click the file (e.g. VentoyGUI.x86_64)
2. If it can not startup after double-click, you can open the terminal and just execute the file (e.g.  ./VentoyGUI.x86_64)


========== CreatePersistentImg.sh ===============

sudo bash CreatePersistentImg.sh  [ -s SIZE_IN_MB ] [ -t FSTYPE ] [ -l LABEL ]   for example:

bash CreatePersistentImg.sh                 ---->  persistence.dat in 1GB size and ext4 filesystem and casper-rw label
bash CreatePersistentImg.sh -l MX-Persist   ---->  persistence.dat in 1GB size and ext4 filesystem and MX-Persist label
bash CreatePersistentImg.sh -s 2048         ---->  persistence.dat in 2GB size and ext4 filesystem and casper-rw label
bash CreatePersistentImg.sh -s 4096 -t xfs  ---->  persistence.dat in 4GB size and xfs  filesystem  (ext2/3/4 xfs are supported)  and casper-rw label

Please refer https://www.ventoy.net/en/plugin_persistence.html for details.



========== ExtendPersistentImg.sh ===============
sudo bash ExtendPersistentImg.sh  file size   
For example:
bash ExtendPersistentImg.sh persistence.dat 2048  ---->  Extend persistence.dat by 2048MB
That is to say, persistence.dat file will grow to 3GB size (assume that it is 1GB size before extend)

Please refer https://www.ventoy.net/en/plugin_persistence.html for details.