0

I'm trying to install reaver-1.4 in my Ubuntu 18.04 system, but it shows this error:

root@rashedul-ubuntu:~/Desktop/reaver-1.4/src# ./configure
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/rashedul/Desktop/reaver-1.4/src':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

How can I fix this?

Zanna
  • 69,223
  • 56
  • 216
  • 327
  • The ./configure step failed as it told you; you don't have `gcc` (c compiler needed to compile; or `cc` or `cl` which are alternative compilers) - hence it cannot proceed. You need a compiler to compile source which it repeats with the message "no acceptable C compiler found" (*source code is compiled into the binary executables*) – guiverc Aug 03 '18 at 09:45
  • how can i install C compiler in my system? – Rashedul Islam Emon Aug 03 '18 at 09:48
  • Why are you running as root? You should compile software with normal user privileges. – Zanna Aug 03 '18 at 12:52
  • See [How can I install software or packages without internet offline](https://askubuntu.com/questions/974/how-can-i-install-software-or-packages-without-internet-offline) since you mentioned in a comment you want to install offline – Zanna Aug 03 '18 at 13:32

1 Answers1

0

Reaver-1.4 can be installed in Ubuntu 18.04 from the terminal. Open a terminal and type:

sudo apt install reaver
Akhil
  • 142
  • 7