Como posso obter todas as URLs das dependências de um pacote deb?

Como posso obter todas as URLs das dependências de um pacote deb?

Quero verificar se é possível listar os URLs necessários para todas as dependências de um sistema especificado.

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

Eu descobri que posso usar o apt-rdepends para obter uma lista dos pacotes dependentes. mas como faço para corrigir as dependências dos URLs (assumindo que *.ubuntu.com esteja correto)

Responder1

Você pode usar o apt-get e a --print-urisopção de mostrar 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.

informação relacionada