Como instalar o tmux 2.2+ no Ubuntu 16.04 [fechado]

1

Eu git o tmux clonado do github, tag 2.2 e execute sh autogen.sh e ./configure && make . Para o último eu tive que instalar automake . Eu também tenho todas as dependências que eu encontrei necessárias. Quando tento executar sudo make install , obtenho

$ sudo make install                                                                                                                                         [22:58:28]
make[1]: Entering directory '/home/kode/tmux-2.2'
 /bin/mkdir -p '/usr/local/bin'
  /usr/bin/install -c tmux '/usr/local/bin'
make  install-exec-hook
make[2]: Entering directory '/home/kode/tmux-2.2'
if test xmdoc = xmdoc; then \
    sed -e "s|@SYSCONFDIR@|/etc|g" ./tmux.1 \
        >./tmux.1.mdoc; \
else \
    sed -e "s|@SYSCONFDIR@|/etc|g" ./tmux.1| \
        mawk -f./mdoc2man.awk >./tmux.1.man; \
fi
/bin/mkdir -p /usr/local/share/man/man1
/usr/bin/install -c -m 644 ./tmux.1.mdoc \
    /usr/local/share/man/man1/tmux.1
make[2]: Leaving directory '/home/kode/tmux-2.2'
make[1]: Nothing to be done for 'install-data-am'.
make[1]: Leaving directory '/home/kode/tmux-2.2'

Como consertar isso e instalar o tmux 2.2 +?

Estou no Ubuntu 16.04. Agradecemos antecipadamente.

    
por kode 03.10.2016 / 22:04

1 resposta

2

Mas você instalou tmux em /usr/local/bin :

/usr/bin/install -c tmux '/usr/local/bin'

e tmux.1 em /usr/local/share/man/man1/tmux.1

/usr/bin/install -c -m 644 ./tmux.1.mdoc \
/usr/local/share/man/man1/tmux.1

Você pode agora man tmux e type -p tmux e até tmux , se /usr/local/bin estiver em $PATH .

    
por waltinator 04.10.2016 / 06:12