| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 288 online users. » 0 Member(s) | 283 Guest(s) Applebot, Baidu, Bing, Google, Yandex
|
| Latest Threads |
Running Out of Disk Space...
Forum: Ventoy Discussion Forum
Last Post: longpanda
2 hours ago
» Replies: 15
» Views: 1,006
|
Confusing instruction
Forum: Ventoy Discussion Forum
Last Post: nimareq
8 hours ago
» Replies: 0
» Views: 36
|
CachyOS vDisk (vtoyboot) ...
Forum: Ventoy Discussion Forum
Last Post: alain81
05-08-2026, 01:25 PM
» Replies: 0
» Views: 172
|
Persistence not working w...
Forum: Ventoy Discussion Forum
Last Post: petergb
05-08-2026, 10:47 AM
» Replies: 2
» Views: 306
|
Resolution issue on Windo...
Forum: Ventoy Discussion Forum
Last Post: pete
04-28-2026, 01:38 AM
» Replies: 10
» Views: 17,589
|
- Add a "Quality of Life"...
Forum: Ventoy Discussion Forum
Last Post: crasadure
04-24-2026, 03:57 PM
» Replies: 0
» Views: 489
|
Problem with Vantoy and a...
Forum: Ventoy Discussion Forum
Last Post: capitainealbator
04-24-2026, 07:51 AM
» Replies: 3
» Views: 685
|
problems installing windo...
Forum: iVentoy Discussion Forum
Last Post: roy
04-23-2026, 12:36 PM
» Replies: 1
» Views: 1,460
|
Ventoy enroll key manager...
Forum: Ventoy Discussion Forum
Last Post: MBSTech
04-22-2026, 03:23 PM
» Replies: 33
» Views: 103,154
|
iVentoy 1.0.27 release
Forum: iVentoy Discussion Forum
Last Post: longpanda
04-21-2026, 12:33 AM
» Replies: 0
» Views: 391
|
|
|
| How to boot of a third btrfs partion on a usb drive |
|
Posted by: wolf2482#1639 - 04-25-2022, 02:04 AM - Forum: Ventoy Discussion Forum
- No Replies
|
 |
Ok I was wondering how could I install arch linux on to a third btrfs partion and have that as a boot option I assume it is possible because Ventoy uses grub but I don't know how. could anyone tell me what changes in the arch install process I would have to do. I have never messed with grub before so and I struggled installing on my pc and once I got it to work I have no idea why it worked. So anyway what resources would be useful for me to do this?
|
|
|
| Linux updating shell script |
|
Posted by: johnca - 04-21-2022, 08:30 PM - Forum: Ventoy Discussion Forum
- No Replies
|
 |
Hello everyone.
Could we update the main scrip for terminal execution?
old scrip
Code: #!/bin/sh
OLDDIR=$(pwd)
if ! [ -f ./tool/ventoy_lib.sh ]; then
if [ -f ${0%Ventoy2Disk.sh}/tool/ventoy_lib.sh ]; then
cd ${0%Ventoy2Disk.sh}
fi
fi
if [ -f ./ventoy/version ]; then
curver=$(cat ./ventoy/version)
fi
if uname -m | egrep -q 'aarch64|arm64'; then
export TOOLDIR=aarch64
elif uname -m | egrep -q 'x86_64|amd64'; then
export TOOLDIR=x86_64
elif uname -m | egrep -q 'mips64'; then
export TOOLDIR=mips64el
else
export TOOLDIR=i386
fi
export PATH="./tool/$TOOLDIR:$PATH"
echo ''
echo '**********************************************'
echo " Ventoy: $curver $TOOLDIR"
echo " longpanda admin@ventoy.net"
echo " https://www.ventoy.net"
echo '**********************************************'
echo ''
if ! [ -f ./boot/boot.img ]; then
if [ -d ./grub ]; then
echo "Don't run Ventoy2Disk.sh here, please download the released install package, and run the script in it."
else
echo "Please run under the correct directory!"
fi
exit 1
fi
echo "############# Ventoy2Disk $* [$TOOLDIR] ################" >> ./log.txt
date >> ./log.txt
#decompress tool
echo "decompress tools" >> ./log.txt
cd ./tool/$TOOLDIR
ls *.xz > /dev/null 2>&1
if [ $? -eq 0 ]; then
[ -f ./xzcat ] && chmod +x ./xzcat
for file in $(ls *.xz); do
echo "decompress $file" >> ./log.txt
xzcat $file > ${file%.xz}
[ -f ./${file%.xz} ] && chmod +x ./${file%.xz}
[ -f ./$file ] && rm -f ./$file
done
fi
cd ../../
chmod +x -R ./tool/$TOOLDIR
if [ -f /bin/bash ]; then
/bin/bash ./tool/VentoyWorker.sh $*
else
ash ./tool/VentoyWorker.sh $*
fi
if [ -n "$OLDDIR" ]; then
CURDIR=$(pwd)
if [ "$CURDIR" != "$OLDDIR" ]; then
cd "$OLDDIR"
fi
fi
new scrip
Code: #!/bin/sh
OLDDIR=$(pwd)
if ! [ -f ./tool/ventoy_lib.sh ]; then
if [ -f ${0%Ventoy2Disk.sh}/tool/ventoy_lib.sh ]; then
cd ${0%Ventoy2Disk.sh}
fi
fi
if [ -f ./ventoy/version ]; then
curver=$(cat ./ventoy/version)
fi
if uname -m | egrep -q 'aarch64|arm64'; then
export TOOLDIR=aarch64
elif uname -m | egrep -q 'x86_64|amd64'; then
export TOOLDIR=x86_64
elif uname -m | egrep -q 'mips64'; then
export TOOLDIR=mips64el
else
export TOOLDIR=i386
fi
export PATH="./tool/$TOOLDIR:$PATH"
echo \
"
**********************************************
Ventoy: $curver $TOOLDIR
longpanda admin@ventoy.net
https://www.ventoy.net
**********************************************
$(lsblk)
==============================================
run: umount /dev/sdX*
if necesary
"
if ! [ -f ./boot/boot.img ]; then
if [ -d ./grub ]; then
echo "Don't run Ventoy2Disk.sh here, please download the released install package, and run the script in it."
else
echo "Please run under the correct directory!"
fi
exit 1
fi
echo "############# Ventoy2Disk $* [$TOOLDIR] ################" >> ./log.txt
date >> ./log.txt
#decompress tool
echo "decompress tools" >> ./log.txt
cd ./tool/$TOOLDIR
ls *.xz > /dev/null 2>&1
if [ $? -eq 0 ]; then
[ -f ./xzcat ] && chmod +x ./xzcat
for file in $(ls *.xz); do
echo "decompress $file" >> ./log.txt
xzcat $file > ${file%.xz}
[ -f ./${file%.xz} ] && chmod +x ./${file%.xz}
[ -f ./$file ] && rm -f ./$file
done
fi
cd ../../
chmod +x -R ./tool/$TOOLDIR
if [ -f /bin/bash ]; then
/bin/bash ./tool/VentoyWorker.sh $*
else
ash ./tool/VentoyWorker.sh $*
fi
if [ -n "$OLDDIR" ]; then
CURDIR=$(pwd)
if [ "$CURDIR" != "$OLDDIR" ]; then
cd "$OLDDIR"
fi
fi
|
|
|
| Ventoy Boot Conf Replace Plugin - improvement ? |
|
Posted by: fuse59 - 04-20-2022, 07:41 AM - Forum: Ventoy Plugin Forum
- Replies (1)
|
 |
Hello !
Is it possible in a future version for the same linux iso to replace several files ?
Code: {
"conf_replace": [
{
"iso": "/iso/clonezilla-live-2.8.1-12-amd64.iso",
"org1": "/boot/grub/grub.cfg",
"new1": "/path/new-grub.cfg",
"org2": "/boot/grub/ocswp-grub2.png",
"new2": "/path/new-logo.png"
}
]
}
|
|
|
| Fichier ISO bootables |
|
Posted by: danfranjo - 04-13-2022, 01:56 PM - Forum: Ventoy Discussion Forum
- Replies (4)
|
 |
Hello to all of you,
I am using Ventoy and I like it a lot
The question I have is that I have many ISO files that are either CSM bootable or UEFI bootable
Is there a way to convert an CSM bootable file to an UEFI bootable file and vice versa ?
Thanks in advance
|
|
|
| 自定义菜单插件的问题, |
|
Posted by: edpcnet - 04-12-2022, 04:56 AM - Forum: Ventoy Plugin Forum
- No Replies
|
 |
我是小白,请问各位大神,怎么把下面这段代码写进Ventoy的自定义菜单插件里去。
运行 绕过密码启动windows
map --mem /你的IMA放置目录/KONBOOT.ima (fd0)
地图 (hd0) (hd1)
地图 (hd1) (hd0)
地图——钩子
链式装载机 (fd0)+1
rootnoverify (fd0)
menuentry "我的自定义菜单" --class=custom {
echo '这是自定义菜单...'
sleep 1
}
submenu '我的自定义子菜单 -->' --class=customsub {
menuentry "我的自定义菜单2" --class= custom2 {
echo '这是自定义 menu2 ... '
sleep 1
}
menuentry '<-- 返回上一级菜单 [Esc]' --class=vtoyret VTOY_RET {
echo 'Return ...'
}
}
menuentry '<-- 返回到上一个菜单 [Esc]' --class=vtoyret VTOY_RET {
echo 'Return ...'
}
|
|
|
|