ubuntu - docker apt-get multiple gets (can it be reduced?) -
i living in netherlands , each apt-get update
, that's why got translations of program dutch.
the trouble there many gets needed achieve full list of packages needed updated.
how can reduce these many (apparently same) gets? i've looked in docker.list
, contains deb https://get.docker.com/ubuntu docker main
when run apt-get update
, long list of gets of packagelists:
ophalen:1 https://get.docker.com docker inrelease genegeerd https://get.docker.com docker inrelease geraakt https://get.docker.com docker release.gpg geraakt https://get.docker.com docker release geraakt https://get.docker.com docker/main amd64 packages geraakt https://get.docker.com docker/main i386 packages ophalen:2 https://get.docker.com docker/main translation-nl_nl ophalen:3 https://get.docker.com docker/main translation-nl [77,0 kb] ophalen:4 https://get.docker.com docker/main translation-en_gb [77,0 kb] ophalen:5 https://get.docker.com docker/main translation-en [77,0 kb] ophalen:6 https://get.docker.com docker/main translation-nl_nl [77,0 kb] ophalen:7 https://get.docker.com docker/main translation-nl [77,0 kb] ophalen:8 https://get.docker.com docker/main translation-en_gb [77,0 kb] ophalen:9 https://get.docker.com docker/main translation-en [77,0 kb] ophalen:10 https://get.docker.com docker/main translation-nl_nl [77,0 kb] ophalen:11 https://get.docker.com docker/main translation-nl [77,0 kb] ophalen:12 https://get.docker.com docker/main translation-en_gb [77,0 kb] ophalen:13 https://get.docker.com docker/main translation-en [77,0 kb] ophalen:14 https://get.docker.com docker/main translation-nl_nl [77,0 kb] ophalen:15 https://get.docker.com docker/main translation-nl [77,0 kb] ophalen:16 https://get.docker.com docker/main translation-en_gb [77,0 kb] ophalen:17 https://get.docker.com docker/main translation-en [77,0 kb] ophalen:18 https://get.docker.com docker/main translation-nl_nl [77,0 kb] genegeerd https://get.docker.com docker/main translation-nl_nl ophalen:19 https://get.docker.com docker/main translation-nl [77,0 kb] genegeerd https://get.docker.com docker/main translation-nl ophalen:20 https://get.docker.com docker/main translation-en_gb [77,0 kb] genegeerd https://get.docker.com docker/main translation-en_gb ophalen:21 https://get.docker.com docker/main translation-en [77,0 kb] genegeerd https://get.docker.com docker/main translation-en
add following block /etc/apt/apt.conf
:
acquire { languages "none"; };
and run this:
sudo rm -f /var/lib/apt/lists/*i8n*
Comments
Post a Comment