如题:
方式 1:使用apt-get命令行选项:apt-get update --allow-insecure-repositories
方式 2:使用/etc/apt/apt.conf配置。(麻烦,现在忘了配置参数了)
杂项:
1 : 使用apt-get 只下载deb文件时,只能自动下载大部分的系统依赖的未安装的deb包,并
不能100%保证依赖deb包都下载下来! 切记!
as of:
apt-get update --allow-insecure-repositories apt-get install gcc-4.4 make libc6-dev --reinstall -d apt-cache search -n libaio apt-cache policy libaio1 apt-get install libaio1=0.3.109-2ubuntu1 --reinstall -d apt-cache policy libaio-dev apt-get install libaio-dev=0.3.109-2ubuntu1 --reinstall -d apt-get install libaio1=0.3.109-2ubuntu1 libaio-dev=0.3.109-2ubuntu1 --reinstall -d
2:使用新版的apt-get 下载deb包的方式(指定版本、no有效签名、仅仅下载、不希望依赖)
# 该方式下载的系统的apt的cache下
apt-get -y install libc6-dev=2.15-0ubuntu10.18 --reinstall -d -m
apt-get -y install libc6-dev=2.15-0ubuntu10.18 --reinstall -d -m
apt-get -y install libc6-dev=2.15-0ubuntu10.18 --reinstall -d -m
#该方式直接下载到当前工作目录
apt-get -y download libc6-dev=2.15-0ubuntu10.18 -d -m --allow-unauthenticated apt-get -y download libc6-dev=2.15-0ubuntu10.18 -d --allow-unauthenticated apt-get -y download libc6-dev=2.15-0ubuntu10.18 -m --allow-unauthenticated apt-get -y download libc6-dev=2.15-0ubuntu10.18 --allow-unauthenticated