Include:Using Internet Repositories for apk-tools: Difference between revisions
Dubiousjim (talk | contribs) (add note/link about APK caching) |
Dubiousjim (talk | contribs) (prune -U from "apk update", add explanation) |
||
Line 7: | Line 7: | ||
{{Mirrors}} | {{Mirrors}} | ||
After updating the repositories file, obtain the latest index | After updating the repositories file, obtain the latest index of available packages: | ||
{{Cmd|apk update --update-cache}} | {{Cmd|apk update}} | ||
{{Tip|Adding the <code>-U</code>/<code>--update-cache</code> to another apk command, as in <code>apk add -U ...</code> or <code>apk upgrade -U</code>, has the same effect as running <code>apk update</code> before the other apk command.}} |
Revision as of 18:49, 29 October 2012
Edit the /etc/apk/repositories file and if necessary, add references to the Alpine package repositories. In the example below, the reference to the Alpine CD is maintained, so that if the requested package is available on the local media, it will be obtained from there instead of being downloaded from the remote repository:
Contents of /etc/apk/repositories
/media/cdrom/apks
http://dl-3.alpinelinux.org/alpine/v2.4/main
Only one repository is shown above; however, you may also replace http://dl-3.alpinelinux.org/alpine/
with any of these (if you wish to use another version, also replace v2.4
with the desired version):
- http://dl-cdn.alpinelinux.org/alpine/
- http://nl.alpinelinux.org/alpine/
- http://dl-2.alpinelinux.org/alpine/
- http://dl-3.alpinelinux.org/alpine/
- http://dl-4.alpinelinux.org/alpine/
- http://dl-5.alpinelinux.org/alpine/
- http://dl-6.alpinelinux.org/alpine/
- http://dl-8.alpinelinux.org/alpine/
- http://distrib-coffee.ipsl.jussieu.fr/pub/linux/alpine/alpine/
- http://mirror.yandex.ru/mirrors/alpine/
- http://mirrors.gigenet.com/alpinelinux/
- http://mirror1.hs-esslingen.de/pub/Mirrors/alpine/
- http://liskamm.alpinelinux.uk/
- http://mirrors.2f30.org/alpine/
- http://mirror.leaseweb.com/alpine/
- http://repository.fit.cvut.cz/mirrors/alpine/
- http://alpine.mirror.far.fi/
- http://lasca.ic.unicamp.br/pub/alpine/
- http://alpinelinux.c3sl.ufpr.br/
- http://mirrors.cug.edu.cn/alpine/
- http://mirrors.cicku.me/alpine/
After updating the repositories file, obtain the latest index of available packages:
apk update
Tip: Adding the
-U
/--update-cache
to another apk command, as in apk add -U ...
or apk upgrade -U
, has the same effect as running apk update
before the other apk command.