update 404
1 | Ign:1 http://security.ubuntu.com/ubuntu disco-security InRelease |
原因,Ubuntu 更新换代很快. 你的ubuntu一旦不是最新版本后,其仓库 (repository)就会被移到另外的服务器上面。所以不再是 http://archive.ubuntu.com/ubuntu/dist/ 这里能找到的。
解决方法
修改souse.list
文件内容为阿里源,由于没有vim,所以通过echo一条一条加进去
1 | echo "deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse" > /etc/apt/sources.list |
之后中apt-get update
安装 git 报错
1 | # apt-get install git -y |
原因,上面阿里面源的问题,将souse.list替换为以下内容即可(都是找错源惹的祸)
1 | deb http://mirrors.aliyun.com/ubuntu/ eoan main restricted universe multiverse |
apt-get install libc6-dbg:i386 -y报错
1 | E: Unable to locate package libc6-dbg:i386 |
解决方法:
1 | dpkg --add-architecture i386 |
安装pwntools
报错
1 | 9 | #include <Python.h> |
解决方法
python2:
1 | apt-get install python-dev \ |
python3:
1 | apt-get install python3 python-dev python3-dev \ |
python2亲测有效,python3不知道