Como posso obter toda a URL das dependências de um pacote deb?

4

Eu quero verificar se é possível listar os URLs que são necessários para todas as dependências de um sistema especificado.

Vamos supor que eu queira instalar um software e ele depende de mais de 100 pacotes individuais e eu preciso pegar algumas dezenas desses pacotes. acontece que eu estou dentro de um proxy restritivo (é claro !!! é claro) que me pede para especificar cada URL que eu preciso acessar.

Eu descobri que posso usar o apt-rdepends para obter uma lista dos pacotes dependentes. mas como faço para obter as dependências corretas para URLs (supondo que * .ubuntu.com está bem)

    
por haribabu 28.10.2013 / 23:54

1 resposta

3

Você pode usar o apt-get e a opção --print-uris para mostrar as URIs:

sudo apt-get --print-uris install geany
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  geany-common
Suggested packages:
  libvte9
The following NEW packages will be installed:
  geany geany-common
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 3,242 kB of archives.
After this operation, 8,894 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
'http://archive.ubuntu.com/ubuntu/pool/universe/g/geany/geany-common_1.22+dfsg-2ubuntu1_all.deb' geany-common_1.22+dfsg-2ubuntu1_all.deb 2153292 MD5Sum:e7dc7ca72d4e3b27ebfeadaea9fb3289
'http://archive.ubuntu.com/ubuntu/pool/universe/g/geany/geany_1.22+dfsg-2ubuntu1_amd64.deb' geany_1.22+dfsg-2ubuntu1_amd64.deb 1089150 MD5Sum:e201bf70fc0ef23b0f64c410125814cb

Este é o método mais simples e sem instalar nada extra.

trecho do apt-get man:

--print-uris
       Instead of fetching the files to install their URIs are printed. Each URI will have the path, the
       destination file name, the size and the expected MD5 hash. Note that the file name to write to
       will not always match the file name on the remote site! This also works with the source and update
       commands. When used with the update command the MD5 and size are not included, and it is up to the
       user to decompress any compressed files. Configuration Item: APT::Get::Print-URIs.
    
por Braiam 29.10.2013 / 00:03