mirror of
https://github.com/hufrea/byedpi.git
synced 2024-12-20 21:02:38 +03:00
25 lines
402 B
Markdown
25 lines
402 B
Markdown
|
# 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
|
||
|
```
|