byedpi/dist/linux
2024-09-24 14:05:52 +03:00
..
byedpi.conf Separate options from service, add system service (#152) 2024-09-24 14:05:52 +03:00
byedpi.service Separate options from service, add system service (#152) 2024-09-24 14:05:52 +03:00
README.md Separate options from service, add system service (#152) 2024-09-24 14:05:52 +03:00

Installing on Linux

Building

cd byedpi/
make
sudo make install

Systemd Service (optional)

You can configure the program to run as systemd service, user- or system-wide (only one at a time).

As user service:

cp byedpi.service ~/.config/systemd/user/
cp byedpi.conf ~/.config/
systemctl --user enable --now byedpi.service

You should see the service now marked as "active":

systemctl --user status byedpi.service

As system service:

sudo cp byedpi.service /etc/systemd/system/
sudo cp byedpi.conf /etc/
sudo systemctl enable --now byedpi.service

You should see the service now marked as "active":

systemctl status byedpi.service