Devo permitir que os pacotes sejam rebaixados pelo synaptic?

2

No synaptic, eu quero instalar o dkpg-dev, mas o synaptic precisa fazer o downgrade da libdkpg-perl para isso. É uma boa ideia permitir isso ou vou me deparar com problemas com pacotes quebrados. Que regra geral você usa nesses casos? Eu tenho um Ubuntu 14.04 recém-instalado. Como eu me deparo com isso? Obrigado. .

.

-------------------------------- EDIT 1

Aqui está minha sources.list:

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the    Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the    Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu trusty main
deb-src http://extras.ubuntu.com/ubuntu trusty main

e meu /etc/apt/sources.list.d/ está vazio

-------------------------------- EDIT 2

Na verdade, eu instalei a libdkpg-perl. Foi

"versão instalada: 1.17.5ubuntu5.3 e mais recente: 1.17.5ubuntu5"

Não sei bem como chegar a isso. É devido a minha sources.list?

Depois de reinstalar, tenho:

"versão instalada: 1.17.5ubuntu5 e mais recente: 1.17.5ubuntu5"

É equivalente a um downgrade

.

    
por Bob Yoplait 19.04.2015 / 15:54

2 respostas

2

Execute os seguintes comandos em um terminal, para atualizar as fontes de pacotes:

sudo apt-get update

Em seguida, execute a instalação de dkpg-dev novamente:

sudo apt-get install dkpg-dev

Com base no seu sources.list e um /etc/apt/sources.list.d vazio, aceitar o downgrade não deve representar nenhum problema.

    
por A.B. 19.04.2015 / 17:14
1

Você pode permitir isso, isso não é um problema. As ofertas sinápticas dos pacotes são as dependências dos pacotes que você deseja instalar.

    
por Haris LinuxOS 19.04.2015 / 16:20