APT
(重定向自Apt)
APT是一套套件管理系统,源自Debian。
工具
把Legacy Format转成DEB822格式,这边要注意只支援GNU Awk:
gawk '{if ($1 ~ /^deb/) {printf("Enabled: yes\nTypes: %s\nURIs: %s\nSuites: %s\nComponents: %s\n%s", $1, $(NF-2), $(NF-1), $NF, signedby); if (match($0, /arch=([^ \]]*)/, a)) printf("Architectures: %s\n", a[1]); if (match($0, /signed-by=([^ \]]*)/, a)) printf("Signed-by: %s\n", a[1])}}'
范例
将HTTP与HTTPS都使用HTTPS Proxy:
sudo env http_proxy=https://user:pass@proxy-tls.example.com:4128/ https_proxy=https://user:pass@proxy-tls.example.com:4128/ apt update
相关连结
外部链接
- 官方网站 (英文)