Ubuntu 9.10 - getlibs - Bibliotecas não encontradas?

1

Estou usando o pacote getlibs para obter dependências Android de 32 bits para a ferramenta aapt. No entanto, quando isso é executado, eu recebo o seguinte- Observe o Não encontrado nas bibliotecas ubuntu16. Eu verifiquei o servidor e com certeza, eles não estão lá. No entanto ubuntu15 e ubuntu17 são. O que da?

Eu até mudei o http para ftp e revisei o site aqui: ftp: //archive.ubuntu .com / ubuntu / pool / main / e / eglibc / e o ubuntu16 parece ter desaparecido.

Mesmo se eu executar um apt-get como:

apt-get install ia32-libs

Ainda vejo que as fontes não podem ser encontradas. Alguma ideia? Se eles forem movidos para as versões * 17. Como mudo de 16 para 17 localmente?

root@myserver:/opt/android-sdk/platforms/android-8/tools# getlibs aapt
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  lib32asound2 lib32bz2-1.0 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32v4l-0 lib32z1 libc-bin libc6 libc6-i386 libv4l-0
Suggested packages:
  lib32asound2-plugins glibc-doc
The following NEW packages will be installed:
  ia32-libs lib32asound2 lib32bz2-1.0 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32v4l-0 lib32z1 libc6-i386 libv4l-0
The following packages will be upgraded:
  libc-bin libc6
2 upgraded, 10 newly installed, 0 to remove and 8 not upgraded.
Need to get 8661kB/39.1MB of archives.
After this operation, 145MB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Err http://archive.ubuntu.com karmic-updates/main libc-bin 2.10.1-0ubuntu16
  404  Not Found [IP: 91.189.88.46 80]
Err http://archive.ubuntu.com karmic-updates/main libc6 2.10.1-0ubuntu16
  404  Not Found [IP: 91.189.88.46 80]
Err http://archive.ubuntu.com karmic-updates/main libc6-i386 2.10.1-0ubuntu16
  404  Not Found [IP: 91.189.88.46 80]
Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/e/eglibc/libc-bin_2.10.1-0ubuntu16_amd64.deb  404  Not Found [IP: 91.189.88.46 80]
Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.10.1-0ubuntu16_amd64.deb  404  Not Found [IP: 91.189.88.46 80]
Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6-i386_2.10.1-0ubuntu16_amd64.deb  404  Not Found [IP: 91.189.88.46 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
This application isn't missing any dependencies
    
por Donn Felker 30.08.2010 / 17:37

1 resposta

1

Descobri isso. Eu precisava atualizar o sistema. Eu fiz isso com o seguinte:

apt-get update

Então eu corri:

getlibs aapt

... e depois todas as dependências foram baixadas.

    
por 30.08.2010 / 19:13