mirror of
https://github.com/hufrea/byedpi.git
synced 2024-12-19 04:12:06 +03:00
24 lines
402 B
Markdown
24 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
|
|
```
|