我正在与openvswitch合作,在mininet平台上创建mpls vpn网络。我使用的是ubuntu 14.04服务器,内核版本:4.4.0-97-generic。我正在尝试将我的openvswitch从2.0.0版本升级到2.5.2版本,这是由内核版本4.4.0支持的。我正在遵循Openvswitch upgrade guide上提供的openvswitch升级指南的步骤
当我尝试构建Debian包时,会出现以下错误:
ash@ash:~/openvswitch/openvswitch-2.5.2$ DEB_BUILD_OPTIONS='parallel=2 nocheck' fakeroot debian/rules binary
dh binary --with autoreconf,python2 --parallel
dh: unable to load addon autoreconf: Can't locate
Debian/Debhelper/Sequence/autoreconf.pm in @INC (you may need to install the Debian::Debhelper::Sequence::autoreconf module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at (eval 13) line 2.
BEGIN failed--compilation aborted at (eval 13) line 2.
debian/rules:25: recipe for target 'binary' failed
make: *** ***[binary] Error 2***
我不知道是什么导致了这个问题?
我是Linux系统的新手,任何帮助我都很感激。
最佳答案
将dh autoreconf包安装为:
# apt install dh-autoreconf
关于linux - dh:无法在Ubuntu 14.04中加载addon autoreconf,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46958365/