mirror of
https://github.com/pavel-odintsov/fastnetmon
synced 2024-11-15 13:34:32 +01:00
26 lines
835 B
Markdown
26 lines
835 B
Markdown
|
# VyOS install reference
|
||
|
|
||
|
First of all you should enable Debian Squeeze stable and lts repos on VyOS box:
|
||
|
```bash
|
||
|
configure
|
||
|
# squeeze
|
||
|
set system package repository squeeze components 'main contrib non-free'
|
||
|
set system package repository squeeze distribution 'squeeze'
|
||
|
set system package repository squeeze url 'http://mirrors.kernel.org/debian'
|
||
|
|
||
|
# lts
|
||
|
set system package repository squeeze-lts components 'main contrib non-free'
|
||
|
set system package repository squeeze-lts distribution 'squeeze-lts'
|
||
|
set system package repository squeeze-lts url 'http://mirrors.kernel.org/debian'
|
||
|
commit
|
||
|
save
|
||
|
```
|
||
|
|
||
|
Update packages list:```sudo apt-get update```
|
||
|
|
||
|
Run installer with curl:
|
||
|
```bash
|
||
|
curl https://raw.githubusercontent.com/FastVPSEestiOu/fastnetmon/master/src/fastnetmon_install.pl > fastnetmon_install.pl
|
||
|
sudo perl fastnetmon_install.pl
|
||
|
```
|