Não é possível instalar o pacote com o apt [duplicado]

-1

Estou tentando instalar pacotes do terminal , mas tendo problemas como:

tarlan@tarlan:~/Downloads/git-2.9.5$ sudo apt install git
[sudo] password for tarlan: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package git is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
git-svn git-el

E: Package 'git' has no installation candidate
tarlan@tarlan:~/Downloads/git-2.9.5$ sudo apt install git-svn
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:
 git-svn : Depends: git (> 1:2.14.1) but it is not installable
       Depends: git (< 1:2.14.1-.) but it is not installable
       Depends: libsvn-perl but it is not installable
       Depends: libyaml-perl but it is not installable
 E: Unable to correct problems, you have held broken packages.

Apareceu depois de instalar o Ubuntu no meu PC. Eu acho que o problema está enraizado em pacotes quebrados

Eu tentei isso dessa maneira.

O problema nesta resposta não pode me ajudar, pois não posso listar os pacotes suspensos.

dpkg --get-selections | grep hold

Eu também queria tentar usar dessa maneira

sudo aptitude -f install <packagename>

O problema é que eu não conheço os pacotes quebrados.

Por favor me ajudem, eu sou novo aqui e estou tentando me adaptar ao Ubuntu, então qualquer sugestão será bem-vinda

Editado

Eu também tentei desta forma:

sudo apt-get -f install

e experimentou isso e novamente viu a edição anterior:

tarlan@tarlan:~/Downloads/git-2.9.5$ sudo apt-get -f install
[sudo] password for tarlan: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    
por Tarlan Ahad 02.02.2018 / 14:57

1 resposta

0

Realmente duas opções aqui:

  • altere os espelhos de download para versões antigas, conforme descrito na resposta da pergunta duplicada :

    sudo sed -i -re 's/([a-z]{2}\.)?archive.ubuntu.com|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
    sudo apt-get update
    sudo apt-get upgrade
    
  • atualize seu sistema 17.04 para 17.10, conforme descrito na resposta da pergunta duplicada :

    sudo apt-get update
    sudo apt-get install update-manager-core
    sudo do-release-upgrade
    

Se você tiver internet lenta ou não quiser fazer upgrade. Você pode permanecer no dia 17.04, mas não receberá atualizações de segurança.

    
por N0rbert 02.02.2018 / 15:49