README 2.25 KB
Newer Older
longpanda's avatar
longpanda committed
1
2
3

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

longpanda's avatar
longpanda committed
4
sudo sh Ventoy2Disk.sh { -i | -I | -u } /dev/sdX   sdX is the USB device, for example /dev/sdb.
longpanda's avatar
longpanda committed
5
6
7
8
9
10
11
12
13
14
15

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)
longpanda's avatar
longpanda committed
16
17
18
19

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


20
========== VentoyWeb.sh ===============
longpanda's avatar
longpanda committed
21
22
1. sudo sh VentoyWeb.sh 
2. open your browser and visit http://127.0.0.1:24680
longpanda's avatar
longpanda committed
23

longpanda's avatar
longpanda committed
24

25
26
27
28
29
========== VentoyPlugson.sh ===============
1. sudo sh VentoyPlugson.sh 
2. open your browser and visit http://127.0.0.1:24681


longpanda's avatar
longpanda committed
30
31
32
33
34
35
========= 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)


longpanda's avatar
longpanda committed
36
37
========== CreatePersistentImg.sh ===============

longpanda's avatar
longpanda committed
38
39
40
41
42
43
44
45
46
47
sudo sh CreatePersistentImg.sh  [ -s SIZE_IN_MB ] [ -t FSTYPE ] [ -l LABEL ]   for example:

sh CreatePersistentImg.sh                 ---->  persistence.dat in 1GB size and ext4 filesystem and casper-rw label
sh CreatePersistentImg.sh -l MX-Persist   ---->  persistence.dat in 1GB size and ext4 filesystem and MX-Persist label
sh CreatePersistentImg.sh -s 2048         ---->  persistence.dat in 2GB size and ext4 filesystem and casper-rw label
sh 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.


longpanda's avatar
longpanda committed
48

longpanda's avatar
longpanda committed
49
50
51
52
53
54
55
========== ExtendPersistentImg.sh ===============
sudo sh ExtendPersistentImg.sh  file size   
For example:
sh 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.
longpanda's avatar
longpanda committed
56
57