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

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

Site Tools


wiki:ventoy

This is an old revision of the document!


Ventoy

Ventoy, Ventoy. Get the latest version: GitHub.

Fedora

Установка и запуск Вентой в Fedora GNU/Linux Workstation:

sudo dnf copr enable karlisk/ventoy -y && sudo dnf install -y ventoy
cd /opt/ventoy && sudo bash ./VentoyWeb.sh

karlisk/ventoy Copr.

Ручной запуск из скачанного архива

cd "/home/dragonserw/Public/AppImage/Hailong Sun/ventoy-1.1.15-linux/ventoy-1.1.15/" && sudo bash ./VentoyWeb.sh # https://dragonserw.ru/wiki:ventoy
cd "/home/dragonserw/Общедоступные/AppImage/Hailong Sun/ventoy-1.1.15-linux/ventoy-1.1.15/" && bash ./VentoyWeb.sh # https://dragonserw.ru/wiki:ventoy

Terminal emulator, bash: Use systemd to Start a Linux Service at Boot.

systemd

Use systemd to Start a Linux Service at Boot.

  1. test_service.sh
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

И еще один файл:

  1. myservice.service
[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
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

LOR.

Альтернатива

wiki/ventoy.1782387373.txt.gz · Last modified: by serw