Skip to content

uoaerg/wavemon

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
November 20, 2020 17:59
October 24, 2021 21:48
September 18, 2021 16:54
November 21, 2020 19:47
November 20, 2020 20:15
February 15, 2021 14:33
November 20, 2020 20:15
May 9, 2023 10:22
February 15, 2021 14:33

wavemon screenshot

Synopsis

wavemon is a wireless device monitoring application that allows you to watch signal and noise levels, packet statistics, device configuration and network parameters of your wireless network hardware. It should work (though with varying features) with all devices supported by the Linux kernel.

See the man page for an in-depth description of operation and configuration.

Where to obtain

Apart from debian/ubuntu packages (apt-cache search wavemon) and slackbuild scripts for wavemon, this repository contains the full source code.

Dependencies

Minimally the following are required:

  • the pkg-config package,
  • netlink libnl-cli-3-dev at least version 3.2 (pulls in libnl-3-dev, libnl-genl-3-dev),
  • ncurses development files (libncursesw6, libtinfo6, libncurses-dev).

On Debian/Ubuntu, this can be done using

apt-get -y install pkg-config libncursesw6 libtinfo6 libncurses-dev libnl-cli-3-dev

Please note the "w" in libncursesw6, which stands for the wide-character variant of ncurses. This is required for proper rendering on UTF-8 terminals.

How to build

wavemon uses autoconf, so that in most cases you can simply run

./configure && make && sudo make install

to build and install the package. Type make uninstall if not happy.

Using custom CFLAGS

Pass additional CFLAGS to configure, like this:

CFLAGS="-O2 -pipe" ./configure

Passing CFLAGS to make is not encouraged, since that will replace the settings found by configure.

Installation with privileges

To grant users access to restricted networking operations (scanning), use

sudo make install-suid-root

Resetting autoconf state

If you have changed some of the autoconf files or use a git version, run

./config/bootstrap

(This requires a recent installation of autotools.)