$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Latest Aircrack-NG from Source Code on Debian Bullseye

March 31, 2025 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Dependencies

    Then to Install Required Software
    Run:

    sudo apt install git build-essential autoconf automake libtool pkg-config libnl-3-dev libnl-genl-3-dev libssl-dev ethtool shtool rfkill zlib1g-dev libpcap-dev libsqlite3-dev libpcre2-dev libhwloc-dev libcmocka-dev hostapd wpasupplicant tcpdump screen iw usbutils
  2. 3. Installing Aircrack-ng

    Then to Install Aircrack-ng on Debian
    First, clone the Repo:

    cd ~/Downloads
    git clone http://github.com/aircrack-ng/aircrack-ng

    Access the target:

    cd aircrack-ng

    Then you can simply configure it with:

    ./autogen.sh

    Next Make it:

    make

    Last, to achieve the Setup run:

    sudo make install
    Terminal output

    Last, to Test it show the help with:

    aircrack-ng --help

Contents