1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-09-28 19:51:48 +02:00

Add install guide for VyOS

This commit is contained in:
Pavel Odintsov 2015-05-02 19:07:00 +03:00
parent f069e81bd4
commit 3712cd2eca
2 changed files with 26 additions and 0 deletions

@ -15,6 +15,7 @@ What can we do? We can detect hosts in our own network with a large amount of pa
- [Manual install on FreeBSD and Dragonfly BSD](docs/FreeBSD_INSTALL.md)
- [Manual install on Mac OS X](docs/MAC_OS_INSTALL.md)
- [Manual install on Slackware](docs/SLACKWARE_INSTALL.md)
- [Manual install for VyOS](docs/VyOS_INSTALL.md)
- You could order VPS with preinstalled FastNetMon: http://vps2fast.com/vds/
[![Build Status](https://travis-ci.org/FastVPSEestiOu/fastnetmon.svg?branch=master)](https://travis-ci.org/FastVPSEestiOu/fastnetmon) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/FastVPSEestiOu/fastnetmon?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

25
docs/VyOS_INSTALL.md Normal file

@ -0,0 +1,25 @@
# 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
```