FreeRadius 30.5 - Pacote falha ao instalar - erro 10 (arquivos nomeados incorretamente)

1

Super noob aqui. Provavelmente estou tentando mastigar mais do que posso engolir. Eu só comecei a usar o Ubuntu há uma semana Estou executando o mais recente Ubuntu 14, com BIND9 (tutoriais ajudou a configurar o DNS), e eu tenho lutado com o FreeRadius 2.X e agora 3.X.

Primeiramente, tenho seguido um guia que encontrei ...

link

Os repositórios têm apenas 2.1.12, mas eu baixei o pacote 3.0.5 GZ do site deles. F *** com 2.1.12 muito, longa história curta ... não vai reinstalar corretamente (arquivos, diretórios em falta ... PITA)

Então, 3.0.5, tentei instalar, depois de descompactar, e ambos MAKE e CHECKINSTALL falharam. O Google não conseguiu identificar por que a renomeação de "MAKE.INC.IN" para "MAKE.INC" interrompe a instalação. Existem vários arquivos espalhados pelo diretório que terminam em "IN", então imaginei que isso tenha algo a ver com a origem compactada do pacote. Além disso, o gEDIT confirmou que o MAKEFILE está chamando make.inc. Estou perdido porque não consigo instalar o pacote. As instruções de instalação fornecidas pelo desenvolvedor dizem para usar ./configure, make e make install também.

Abaixo está a saída do meu make install e make, ambos emitem o mesmo "erro 10"

leonardo@consiglieri-DNS:~/Desktop/freeradius-server-3.0.5$ sudo make install
Makefile:10: *** Missing 'Make.inc' Run './configure [options]' and retry.  Stop.

CHECKINSTALL, se eu renomear manualmente de make.inc.in para make.inc:

Installing with make install...

========================= Installation results ===========================
scripts/boiler.mk:623: @abs_top_builddir@/main.mk: No such file or directory
make: *** No rule to make target '@abs_top_builddir@/main.mk'.  Stop.

****  Installation failed. Aborting package creation.

Cleaning up...OK

Bye.

leonardo@consiglieri-DNS:~/Desktop/freeradius-server-3.0.5$ 

Lista de arquivos ...

leonardo@consiglieri-DNS:~/Desktop/freeradius-server-3.0.5$ ls -a
.             autogen.sh    configure     debian          INSTALL.rst  main.mk      mibs        redhat   suse
..            config.guess  configure.ac  doc             install-sh   Makefile     missing     scripts  .travis.yml
acinclude.m4  config.log    COPYRIGHT     .gitattributes  LICENSE      Make.inc.in  raddb       share    VERSION
aclocal.m4    config.sub    CREDITS       .gitignore      m4           man          README.rst  src

Abaixo está a saída do meu ./configure:

leonardo@consiglieri-DNS:~/Desktop/freeradius-server-3.0.5$ sudo ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether gcc needs -traditional... no
checking whether we are using SUNPro C... no
checking for ranlib... ranlib
checking if compiler is clang... no
checking for the compiler flag "-Qunused-arguments"... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking whether byte ordering is bigendian... no
checking for gmake... no
checking for make... /usr/bin/make
checking number of system cores... 2
checking for git... no
checking docdir... ${datadir}/doc/freeradius
checking logdir... ${localstatedir}/log/radius
checking radacctdir... ${logdir}/radacct
checking raddbdir... ${sysconfdir}/raddb
checking dictdir... ${datarootdir}/freeradius
checking for perl... /usr/bin/perl
checking for snmpget... no
configure: WARNING: snmpget not found - Simultaneous-Use and checkrad may not work
checking for snmpwalk... no
configure: WARNING: snmpwalk not found - Simultaneous-Use and checkrad may not work
checking for rusers... /usr/bin/rusers
checking for locate... /usr/bin/locate
checking for dirname... /usr/bin/dirname
checking for grep... (cached) /bin/grep
checking for _talloc in -ltalloc... no
checking for _talloc in -ltalloc in /usr/lib/i386-linux-gnu... no
checking for _talloc in -ltalloc in /usr/share/doc... no
checking for _talloc in -ltalloc in /usr/share/doc/libtalloc2... no
checking for _talloc in -ltalloc in /var/lib/dpkg/info... no
checking for _talloc in -ltalloc in /usr/local/lib... no
checking for _talloc in -ltalloc in /opt/lib... no
configure: WARNING: talloc library not found. Use --with-talloc-lib-dir=<path>.
configure: error: FreeRADIUS requires libtalloc
leonardo@consiglieri-DNS:~/Desktop/freeradius-server-3.0.5$ 
    
por LEONARDO FAYE 23.11.2014 / 11:48

4 respostas

4

Você não concluiu a configuração corretamente antes de executar o make:

Makefile: 10: *** Faltando 'Make.inc' Executar './configure [opções]' e tente novamente. Pare.

E o configure foi interrompido por causa disso:

configure: AVISO: biblioteca talloc não encontrada. Use --with-talloc-lib-dir =. configure: error: FreeRADIUS requer libtalloc

Essa é a "desvantagem" de criar seus próprios binários a partir de fontes - você precisa verificar o que é necessário, revisar algumas opções de compilação para obter os recursos necessários. Também leia a saída, caso haja alguns erros.

Os pacotes de Deb seriam mais fáceis - ao custo de uma versão um pouco mais antiga.

De qualquer forma - por enquanto você precisa do libtalloc. Pode acontecer, no entanto, que você precise de algo mais ainda - você verá ao tentar configurar e compilar novamente.

Boa sorte.

    
por Jacek 23.11.2014 / 12:42
3

Parece que eu também tive esse problema, mas resolvi o problema instalando libtalloc-dev . Eu sei que isso é antigo, mas é uma solução viável, e acho um pouco melhor do que o que está aqui.

sudo apt-get install libtalloc-dev

Espero que isso ajude!

    
por Andrew Collett 04.04.2016 / 18:18
1

Eu entendi, ele realmente funciona, eu crio um diretório chamado freeradius em / etc / freeradius.
sudo mkdir / etc / freeradius
então eu uso isso.
wget link
tar zxvf talloc-2.1.0.tar.gz
cd talloc-2.1.0
./configure --without-gettext
fazer

make install
wget ftp://ftp.freeradius.org/pub/freeradius/freeradius-server -3.0.12.tar.gz
tar -zxvf freeradius-server-3.0.12.tar.gz
cd freeradius-server-3.0.12
./configure --prefix = / etc / freeradius
sudo fazer
sudo make install
sudo ldconfig Obrigado a todos os caras pelo apoio e ajuda!

    
por Miguel Betancourt 30.10.2016 / 04:54
0

Podemos usar isso ( curl deve estar instalado):

curl -LOk https://www.samba.org/ftp/talloc/talloc-2.1.0.tar.gz
tar zxvf talloc-2.1.0.tar.gz
cd talloc-2.1.0
./configure --without-gettext
make
sudo make install
    
por ckjohnwesly 15.05.2015 / 14:29

Tags