byedpi/dist/linux/README.md

25 lines
402 B
Markdown
Raw Normal View History

2024-09-11 15:53:41 +03:00
# Installing on Linux
## Building
```sh
cd byedpi/
make
sudo make install
```
## Systemd Service (optional)
Copy and enable the service:
```sh
cp byedpi.service ~/.config/systemd/user/
systemctl --user daemon-reload
systemctl --user enable byedpi.service
systemctl --user start byedpi.service
```
You should see the service now marked as "active":
```sh
systemctl --user status byedpi.service
```