NICMx / Jool

SIIT and NAT64 for Linux
GNU General Public License v2.0
320 stars 66 forks source link

installation errs while deploy Jool on centos7.4 #294

Closed GeorgeGuo2018 closed 4 years ago

GeorgeGuo2018 commented 4 years ago

This records what errors i meet while install Jool on centos7.4 kernel:3.10.0-693.el7.x86_64 according to the installation file(https://jool.mx/en/install.html), and the way I fix them.

Hope those would do some help to those who might meet the same problem.

1.during the installation process, i need to install kernel-devel and kernel-headers, but if you use "yum install kernel-devel", you will install a kernel-devel with version 3.10.0-1062, which is high than the version of the kernel and thus lead to error during "dkms install Jool" How I fix:download the rpm of kernel-devel and kernel-header (in accordance with your kernel's version) and install them manually using 'rpm -ivh xxx';

2.exec "./autogen.sh" in the last step get a error "aclocal: warning: couldn't open directory 'm4'" How I fix:exec "aclocal --install" to installing 'm4/pkg.m4' to make it there

3.exec "./autogen.sh" get "Libtool library used but 'LIBTOOL' is undefined" How I fix: "yum install libtool"

ydahhrk commented 4 years ago

Patching documentation.

Thank you!

ydahhrk commented 4 years ago

Note: The documentation tweaks have been uploaded to github.io, but might take a few days to be mirrored in jool.mx.

About 2: I added the aclocal --install to autogen.sh, because the warning was actually appearing in other distributions as well. The manual aclocal should no longer be necessary.