Como instalar o jq no RHEL6.5

14

Parece que está pronto o pacote yum. Então baixei o tarball , mas assim que Eu corri autoreconf -i , eu tenho o seguinte:

configure.ac:14: warning: macro 'AM_PROG_AR' not found in library

configure.ac:10: error: Autoconf version 2.64 or higher is required

configure.ac:10: the top level

autom4te: /usr/bin/m4 failed with exit status: 63

aclocal: autom4te failed with exit status: 63

autoreconf: aclocal failed with exit status: 63

Então, como se pode instalar o jq no RHEL 6.5?

Obrigado!

    
por Amit Dunsky 04.04.2016 / 15:18

3 respostas

27

Como diz na página de desenvolvimento do jq, "jq é escrito em C e não possui dependências de tempo de execução". Então, basta baixar o arquivo e colocá-lo no lugar com o seguinte:

wget -O jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
chmod +x ./jq
cp jq /usr/bin
    
por 04.04.2016 / 17:35
19
yum install -y epel-release

yum install -y jq
    
por 30.11.2016 / 12:15
13

jq está no repositório EPEL, que você já deveria ter ativado .

Depois de ativar o EPEL, você pode usar apenas yum install jq como todo o resto.

    
por 04.04.2016 / 20:35

Tags