Linux/apt: Difference between revisions
Appearance
< Linux
mNo edit summary |
mNo edit summary |
||
| Line 28: | Line 28: | ||
</pre> | </pre> | ||
* | * add proxxy to apt | ||
<pre> | <pre> | ||
Acquire::http::Proxy "http://192.168.111.11:3142"; | touch /etc/apt/apt.conf.d/00aptproxy | ||
echo 'Acquire::http::Proxy "http://192.168.111.11:3142";' > /etc/apt/apt.conf.d/00aptproxy | |||
</pre> | </pre> | ||
[[Category:Linux/System]] | [[Category:Linux/System]] | ||
[[Category:Linux]] | [[Category:Linux]] | ||
Revision as of 19:43, 8 December 2021
unattended upgrades
apt install unattended-upgrades dpkg-reconfigure --priority=low unattended-upgrades
compare mirrors
http://mirrors.ubuntu.com/DE.txt
curl -s http://mirrors.ubuntu.com/DE.txt | xargs -n1 -I {} sh -c 'echo `curl -r 0-1024000 -s -w %{speed_download} -o /dev/null {}/ls-lR.gz` {}' |sort -gr
apt cacher with docker
- docker-compose.yml
version: '3'
services:
aptcacher:
image: sameersbn/apt-cacher-ng
restart: always
container_name: aptcacher
ports:
- "3142:3142"
volumes:
- /srv/docker-data/aptcacher:/var/cache/apt-cacher-ng
- add proxxy to apt
touch /etc/apt/apt.conf.d/00aptproxy echo 'Acquire::http::Proxy "http://192.168.111.11:3142";' > /etc/apt/apt.conf.d/00aptproxy