安装很简单,到github上面它的教程就有
地址:https://github.com/longld/peda
在这里主要是讲述一个问题
使用sudo pip install peda这个命令直接安装peda在高版本的gdb中会有问题
也可能是python2或者3的兼容问题,我的是ubuntu16.04的系统,
所以不能使用pip安装这个
所以切换到cd /usr/local/lib/python2.7这个文件夹,然后就是和github的教程做就行了
git clone https://github.com/longld/peda.git ~/peda
echo "source ~/peda/peda.py" >> ~/.gdbinit
echo "DONE! debug your program with gdb and enjoy"
运行一下gdb就可以看到peda这个插件已经正常装载了