Ubuntu 9.10 – getlibs – 找不到库?

我正在使用getlibs包来获取aapt工具的Android 32位依赖关系。 但是,运行时,我得到以下 – 注意ubuntu16库上的Not Found 。 我检查了服务器,果然,他们不在那里。 不过ubuntu15和ubuntu17都是。 是什么赋予了?

我甚至把http改成了ftp,并在这里查看了这个站点:ftp: //archive.ubuntu.com/ubuntu/pool/main/e/eglibc/和ubuntu16似乎已经不存在了。

即使我执行一个apt-get如:

apt-get install ia32-libs 

我仍然看到无法find消息来源。 有任何想法吗? 如果他们被转移到* 17版本。 我如何从本地更改为17?

 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 

弄清楚了。 我需要升级系统。 我是这样做的:

 apt-get update 

然后我跑了:

 getlibs aapt 

…然后所有的依赖关系被下载。