install tmate ubuntu 17.10

1

tentando instalar o tmate no ubuntu 17.10

seguindo as instruções no link para o Ubuntu:

sudo apt-get install software-properties-common 
sudo add-apt-repository ppa:tmate.io/archive    
sudo apt-get update                             
sudo apt-get install tmate

falha em sudo apt-get install tmate , parece ter conflito com dependências:

➜  ~ sudo apt-get install tmate

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 tmate : Depends: libevent-2.0-5 (>= 2.0.10-stable) but it is not installable
E: Unable to correct problems, you have held broken packages.

como isso pode ser resolvido?

    
por dina 23.10.2017 / 13:59

1 resposta

1

Eu tive o mesmo problema, como relatado aqui . Para ter um Tmate totalmente operacional, eu removo o repository on source-list.d .

sudo rm -rf /etc/apt/sources.list.d/tmate_io-ubuntu-archive-artful.list*

E eles instalaram o Tmate normalmente.

sudo apt update sudo apt install tmate

Como descrito na edição, o problema deve ser corrigido, mas isso funcionou para mim até agora.

    
por Denis Costa 16.11.2017 / 11:53