Skip to content

Commit 922c849

Browse files
author
Leonardo Parente
committed
bump release 4.0.0
1 parent 9eec308 commit 922c849

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ cmake_minimum_required(VERSION 3.13)
55
#######################################################
66

77
# this is the source of truth for semver version
8-
project(visor VERSION 3.4.0)
8+
project(visor VERSION 4.0.0)
99

1010
# for main line release, this is empty
1111
# for development release, this is "-develop"
1212
# for release candidate, this is "-rc"
13-
set(VISOR_PRERELEASE "-develop")
13+
set(VISOR_PRERELEASE "-rc")
1414

1515
#######################################################
1616

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ the built in [REST API](https://app.swaggerhub.com/apis/ns1labs/pktvisor/3.0.0-o
9090
docker run -it --rm --net=host ns1labs/pktvisor pktvisor-cli
9191
```
9292

93-
### Linux Static Binary (AppImage)
93+
### Linux Static Binary
9494

9595
You may also use the Linux static binary, built with [AppImage](https://appimage.org/), which is available for
9696
download [on the Releases page](https://github.com/ns1labs/pktvisor/releases). It is designed to work on all modern
@@ -122,6 +122,33 @@ background), and either the `--log-file` or `--syslog` argument to record logs.
122122

123123
Also see [Advanced Agent Example](#advanced-agent-example).
124124

125+
### StandAlone Static Binaries
126+
127+
Pktvisor also provides standalone linux static binaries. It is also designed to work on Linux distributions and does not
128+
require installation or any other dependencies.
129+
130+
You can run pktvisord by typing the following commands in your linux machine.
131+
```shell
132+
curl -L http://pktvisor.com/download/pktvisord -o pktvisord-x86_64
133+
chmod +x pktvisord-x86_64
134+
./pktvisord-x86_64 -h
135+
```
136+
137+
The command line UI (`pktvisor-cli`) can also be downloaded and run over an environment which contains an agent collector.
138+
```shell
139+
curl -L http://pktvisor.com/download/cli -o pktvisor-cli-x86_64
140+
chmod +x pktvisor-cli-x86_64
141+
./pktvisor-cli-x86_64 -h
142+
```
143+
144+
Also, The pcap and dnstap file analyzer (`pktvisor-reader`) can be run over input files to analyze network data.
145+
146+
```shell
147+
curl -L http://pktvisor.com/download/reader -o pktvisor-reader-x86_64
148+
chmod +x pktvisor-reader-x86_64
149+
./pktvisor-reader-x86_64 -h
150+
```
151+
125152
### Other Platforms
126153

127154
If you are unable to use the Docker container or the Linux binary, then you will have to build your own executable,

0 commit comments

Comments
 (0)