1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-23 17:26:10 +02:00
fastnetmon-rewritten/docs/VyOS_INSTALL.md

29 lines
886 B
Markdown
Raw Normal View History

2015-05-02 18:07:00 +02:00
# VyOS install reference
2015-08-20 12:39:06 +02:00
This guide well tested with VyOS 1.1.5 only.
2015-05-02 18:07:00 +02:00
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
2015-06-12 15:51:33 +02:00
exit
2015-05-02 18:07:00 +02:00
```
Update packages list:```sudo apt-get update```
Run installer with curl:
```bash
2017-12-03 22:06:43 +01:00
curl https://raw.githubusercontent.com/pavel-odintsov/fastnetmon/master/src/fastnetmon_install.pl > fastnetmon_install.pl
2015-05-02 18:07:00 +02:00
sudo perl fastnetmon_install.pl
```