nexmon克隆与配置中的报错与解决方式
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
解决方法:
修改postBuffer大小
git config --global http.postBuffer 1048576000
clone depth 1
git clone https://github.com/seemoo-lab/nexmon.git --depth 1
clone完成后进入该目录下进行unshallow
cd nexmon
git fetch --unshallow
…
autoreconf: not found
解决方法:安装automake autoconf工具
sudo apt-get install automake autoconf libtool
…
missing: line 81: aclocal-1.15: command not found
WARNING:'aclocal-1.15' is missing on your system
解决方法:
sudo autoreconf -ivf