Posts: 18
Threads: 2
Joined: Sep 2022
Reputation:
0
09-28-2022, 03:14 PM
(This post was last modified: 09-28-2022, 04:06 PM by Werner .)
Hello,
Tails is the distri, which will I use :-)
Yes, I use the "ventoy-json" -File
{
"persistence":[
{
"image": "/iso/kali-linux-2021.4a-live-amd64.iso",
"backend":[
"/persistence/persistence.dat"
]
},
{
"image": "/iso/Parrot-security-5.0.1_amd64.iso",
"backend":[
"/persistence/persistence.dat"
]
},
{
"image": "/iso/tails-amd64-5.4.iso",
"backend":[
"/persistence/persistence.dat"
]
},
{
"image": "/img/tails-amd64-5.4.img",
"backend":[
"/persistence/persistence_ext4_4GB_persistence.dat"
]
}
]
}
Posts: 1,357
Threads: 85
Joined: Apr 2020
Reputation:
132
Only kali was tesed.
Parrot and tails are not tested with persistence and are not guaranteed to work.
Posts: 426
Threads: 17
Joined: Jul 2020
Reputation:
35
I don't think a Live Tails ISO will work with a persistence file. Parrot and Kali should work provided you use a 'persistence.conf' type of persistence file and choose the persistence boot option.
Posts: 18
Threads: 2
Joined: Sep 2022
Reputation:
0
10-03-2022, 08:24 AM
(This post was last modified: 10-03-2022, 08:25 AM by Werner .)
Hello,
when i press "F6", I get the following message:
ventoy_grub.cfg not exist
Kind regards
Werner
Posts: 330
Threads: 20
Joined: Jan 2021
Reputation:
37
copy the ventoy folder in the plugin folder to the 1 usb partition
Attached Files
Thumbnail(s)
Posts: 18
Threads: 2
Joined: Sep 2022
Reputation:
0
10-03-2022, 09:32 AM
(This post was last modified: 10-03-2022, 02:20 PM by Werner .)
Thanks :-)
can I boot from one pc (ventoy) to annother pc (Ventoy2) to transfer
the (boot/grub/grub.cfg)?
Kind regards
WErner
Posts: 18
Threads: 2
Joined: Sep 2022
Reputation:
0
Hello,
I have two Computer,s a Mac (efi) and a normal PC.
Here is the config-file (grub.cfg) ot the Mac:
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
set linux_gfx_mode=
export linux_gfx_mode
load_video
set grub_dir="/EFI/debian/grub"
# Load background image
insmod gfxterm
insmod png
loadfont ${grub_dir}/unicode.pf2
terminal_output gfxterm
background_image ${grub_dir}/splash.png
set timeout=4
probe --set rootuuid --fs-uuid ($root)
# Based on the output of `grub-syslinux2cfg /EFI/BOOT/syslinux.cfg`
menuentry 'Tails' --id 'live' {
echo "Loading the Linux kernel..."
linux /live/vmlinuz initrd=/live/initrd.img boot=live config live-media=removable nopersistence noprompt timezone=Etc/UTC splash noautologin module=Tails slab_nomerge slub_debug=FZ mce=0 vsyscall=none init_on_free=1 mds=full,nosmt page_alloc.shuffle=1 FSUUID=${rootuuid} quiet
echo "Loading the initramfs..."
initrd /live/initrd.img
echo "Booting..."
boot
}
menuentry 'Tails (Troubleshooting Mode)' --id 'livefailsafe' {
echo "Loading the Linux kernel..."
linux /live/vmlinuz initrd=/live/initrd.img boot=live config live-media=removable nopersistence noprompt timezone=Etc/UTC splash noautologin module=Tails slab_nomerge slub_debug=FZ mce=0 vsyscall=none init_on_free=1 mds=full,nosmt page_alloc.shuffle=1 FSUUID=${rootuuid} noapic noapm nodma nomce nolapic nomodeset nosmp vga=normal
echo "Loading the initramfs..."
initrd /live/initrd.img
echo "Booting..."
boot
}
menuentry 'Tails (External Hard Disk)' --id 'livenonremovable' {
echo "Loading the Linux kernel..."
linux /live/vmlinuz initrd=/live/initrd.img boot=live config nopersistence noprompt timezone=Etc/UTC splash noautologin module=Tails slab_nomerge slub_debug=FZ mce=0 vsyscall=none init_on_free=1 mds=full,nosmt page_alloc.shuffle=1 FSUUID=${rootuuid} quiet
echo "Loading the initramfs..."
initrd /live/initrd.img
echo "Booting..."
boot
}
How can I copy this to a normal PC (Legacy Boot)?
Kind regards
Werner
Posts: 330
Threads: 20
Joined: Jan 2021
Reputation:
37
Upload it to the cloud and then download it
Posts: 18
Threads: 2
Joined: Sep 2022
Reputation:
0
Please, can you help me ?