that mean i just type below code can or not ? sry ,i not familiar about the command . Code: Select All sudo mkdir /usr/local/bin sudo make sudo make install
You need root permissions to make a folder and install files in your /usr account @chewzzqq It will ask for your password and you should enter it then push enter. Mac OS X: sudo command requires a non-blank admin password
i have this error : In file included from iwlib.c:14: ./iwlib.h:54:10: fatal error: 'linux/types.h' file not found #include <linux/types.h> /* for "caddr_t" et al */ ^ mavericks 10.9.1
on Snow Leopard it succesfully compiled&installed - but I've got a problem: I now have the binaries /usr/local/bin/aircrack-ng /usr/local/bin/airdecap-ng /usr/local/bin/airdecloak-ng /usr/local/sbin/airbase-ng /usr/local/sbin/airodump-ng /usr/local/sbin/airserv-ng /usr/local/sbin/aireplay-ng /usr/local/sbin/airodump-ng-oui-update /usr/local/sbin/airtun-ng ... but no airmon-ng, which was the reason I installed the packet!!! What did I wrong?
faq [Aircrack-ng] Is Mac OS X supported? The aircrack-ng suite has limited Mac OS X support. Currently it only supports the following tools: aircrack-ng, packetforge-ng, ivstools and makeivs. Any program which requires opening a wireless interface is not supported.
Hi all! i'va correct this problem: In file included from iwlib.c:14: ./iwlib.h:54:10: fatal error: 'linux/types.h' file not found #include <linux/types.h> on my Mavericks. but now i have ./iwlib.h:512:17: error: no member named 'ifr_name' in 'struct iwreq' strncpy(pwrq->ifr_name, ifname, IFNAMSIZ); ./iwlib.h:572:39: error: use of undeclared identifier 'ETH_ALEN' memset((char *) sap->sa_data, 0xFF, ETH_ALEN); iwlib.c:156:22: error: use of undeclared identifier 'AF_AX25' AF_INET, AF_IPX, AF_AX25, AF_APPLETALK .... etc etc etc... someone tell me the solution? ps. my solution of linux/types.h Code: Select All #ifndef my_linux_types_h #define my_linux_types_h #ifdef __linux__ # include "linux/types.h" #else # include <stdint.h> typedef int32_t __s32; typedef uint32_t __u32; typedef uint8_t __u8; typedef uint16_t __u16; typedef int16_t __s16; #endif #endif Many thanks