@@ -90,7 +90,7 @@ the built in [REST API](https://app.swaggerhub.com/apis/ns1labs/pktvisor/3.0.0-o
9090docker run -it --rm --net=host ns1labs/pktvisor pktvisor-cli
9191```
9292
93- ### Linux Static Binary (AppImage)
93+ ### Linux Static Binary
9494
9595You may also use the Linux static binary, built with [ AppImage] ( https://appimage.org/ ) , which is available for
9696download [ 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
123123Also 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
127154If you are unable to use the Docker container or the Linux binary, then you will have to build your own executable,
0 commit comments