Компьютерные услуги, город Ейск

Г. Ейск, улица Армавирская, дом 45, этаж II, кабинет № 221

Site Tools


wiki:ventoy

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wiki:ventoy [2025/01/25 00:20] – [Ручной запуск из скачанного архива] serwwiki:ventoy [2026/06/25 15:59] (current) – [Ручной запуск из скачанного архива] serw
Line 1: Line 1:
 +====== Ventoy ======
  
 +[[wp>Ventoy]], [[wpru>Ventoy]].
 +Get the latest version: [[https://github.com/ventoy/Ventoy/releases/latest|GitHub]].
 +
 +===== Fedora =====
 +
 +Установка и запуск Вентой в [[fedora|Fedora GNU/Linux Workstation]]:
 +
 +<code=bash>
 +sudo dnf copr enable karlisk/ventoy -y && sudo dnf install -y ventoy
 +</code>
 +
 +<code=bash>
 +cd /opt/ventoy && sudo bash ./VentoyWeb.sh
 +</code>
 +
 +[[https://copr.fedorainfracloud.org/coprs/karlisk/ventoy/|karlisk/ventoy Copr]].
 +
 +===== Ручной запуск из скачанного архива =====
 +
 +<code=bash>
 +cd "/home/dragonserw/Public/AppImage/Hailong Sun/ventoy-1.1.16-linux/ventoy-1.1.16/" && sudo bash ./VentoyWeb.sh # https://dragonserw.ru/wiki:ventoy
 +cd "/home/dragonserw/Общедоступные/AppImage/Hailong Sun/ventoy-1.1.16-linux/ventoy-1.1.16/" && bash ./VentoyWeb.sh # https://dragonserw.ru/wiki:ventoy
 +</code>
 +
 +[[wiki:terminal#use_systemd_to_start_a_linux_service_at_boot|Terminal emulator, bash]]: Use systemd to Start a Linux Service at Boot.
 +
 +===== systemd =====
 +
 +[[https://www.linode.com/docs/guides/start-service-at-boot/|Use systemd to Start a Linux Service at Boot]].
 +
 +  - test_service.sh
 +
 +<WRAP prewrap>
 +<code=bash>
 +DATE=`date '+%Y-%m-%d %H:%M:%S'`
 +echo "Example service started at ${DATE}" | systemd-cat -p info
 +
 +while :
 +do
 +echo "Looping...";
 +sleep 30;
 +done
 +</code>
 +</WRAP>
 +
 +И еще один файл:
 +
 +  - myservice.service
 +
 +<WRAP prewrap>
 +<code=bash>
 +[Unit]
 +Description=My Shell Script (VentoyWeb 1.0.93)
 +Wants=network-online.target
 +After=network.target network-online.target
 + 
 +[Service]
 +cd "$HOME/Public/Hailong Sun/ventoy-1.0.93-linux/ventoy-1.0.93/"
 +ExecStart="$HOME/Public/Hailong Sun/ventoy-1.0.93-linux/ventoy-1.0.93/VentoyWeb.sh" -H 192.168.88.42
 + 
 +[Install]
 +WantedBy=multi-user.target
 +</code>
 +</WRAP>
 +
 +<WRAP prewrap>
 +<code=bash>sudo cp test_service.sh /usr/bin/test_service.sh && sudo chmod +x /usr/bin/test_service.sh && sudo cp myservice.service /etc/systemd/system/myservice.service && sudo chmod 644 /etc/systemd/system/myservice.service && sudo systemctl enable myservice #https://dragonserw.ru/wiki:ventoy</code>
 +</WRAP>
 +
 +[[https://www.linux.org.ru/forum/admin/17009696|LOR]].
 +
 +===== Альтернатива =====
 +
 +[[wiki:woeusb-ng|WoeUSB-ng]].
 +[[windows:yumi-multiboot-usb-creator|]].