Skip to content

Instantly share code, notes, and snippets.

@terceranexus6
Created January 15, 2019 13:01
Show Gist options
  • Save terceranexus6/18465e88458451e7838e86e3801cf3b7 to your computer and use it in GitHub Desktop.
Save terceranexus6/18465e88458451e7838e86e3801cf3b7 to your computer and use it in GitHub Desktop.
install radare easily
#!/bin/bash
BLUE='\033[0;36m'
RED='\033[0;31m'
PURPLE='\033[0;35m'
NC='\033[0m' # No Color
echo -e "${BLUE}Let's install radare. Please execute the configuration script before. For more information please visit https://www.radare.org/r/down.html${NC}"
echo -e "${BLUE}Getting the tar file${NC}"
wget https://github.com/radare/radare2/archive/3.2.1.tar.gz
echo -e "${BLUE}Unpacking radare${NC}"
tar xzvf 3.2.1.tar.gz
cd radare2-3.2.1/
./configure --prefix=/usr
make -j8
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment