DhavalKapil / icmptunnel

Transparently tunnel your IP traffic through ICMP echo and reply packets.
https://dhavalkapil.com/icmptunnel/
3.09k stars 345 forks source link

Make Problem #31

Open yildirimserkan opened 5 years ago

yildirimserkan commented 5 years ago

Hello, I installed icmptunnel on ubuntu 14.04 and when wrote make I getting this error,

gcc -c -o icmptunnel.o icmptunnel.c -I. -O3 -Wall make: gcc: Command not found make: *** [icmptunnel.o] Error 127

Can you help me with this problem? Sorry if the problem is so basic. I'm new guy

bjorn3 commented 5 years ago

You will need to install gcc. Running

$ sudo apt install build-essential

will install the programs necessary to build many programs.