File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 84
84
85
85
if $GREP -q 64 $VTOY_PATH /ventoy_arch; then
86
86
echo " use veritysetup64" >> $VTLOG
87
- $BUSYBOX_PATH /cp -a $VTOY_PATH /tool/veritysetup64 $VTOY_PATH /tool/veritysetup
87
+ if [ -f $VTOY_PATH /tool/veritysetup64 ]; then
88
+ $BUSYBOX_PATH /cp -a $VTOY_PATH /tool/veritysetup64 $VTOY_PATH /tool/veritysetup
89
+ fi
88
90
else
89
91
echo " use veritysetup32" >> $VTLOG
90
- $BUSYBOX_PATH /cp -a $VTOY_PATH /tool/veritysetup32 $VTOY_PATH /tool/veritysetup
92
+
93
+ if [ -f $VTOY_PATH /tool/veritysetup32 ]; then
94
+ $BUSYBOX_PATH /cp -a $VTOY_PATH /tool/veritysetup32 $VTOY_PATH /tool/veritysetup
95
+ fi
91
96
fi
92
97
fi
93
98
Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ Please refer https://www.ventoy.net/en/doc_start.html for details.
22
22
2. open your browser and visit http://127.0.0.1:24680
23
23
24
24
25
+ ========= VentoyGUI ===================
26
+ VentoyGUI is native GUI program for Linux (GTK/QT)
27
+ 1. Just double-click the file (e.g. VentoyGUI.x86_64)
28
+ 2. If it can not startup after double-click, you can open the terminal and just execute the file (e.g. ./VentoyGUI.x86_64)
29
+
30
+
25
31
========== CreatePersistentImg.sh ===============
26
32
27
33
sudo sh CreatePersistentImg.sh [ -s SIZE_IN_MB ] [ -t FSTYPE ] [ -l LABEL ] for example:
Original file line number Diff line number Diff line change @@ -1963,7 +1963,7 @@ function img_unsupport_menuentry {
1963
1963
#############################################################
1964
1964
#############################################################
1965
1965
1966
- set VENTOY_VERSION=" 1.0.51 "
1966
+ set VENTOY_VERSION=" 1.0.52 "
1967
1967
1968
1968
#ACPI not compatible with Window7/8, so disable by default
1969
1969
set VTOY_PARAM_NO_ACPI=1
You can’t perform that action at this time.
0 commit comments