Include:Using Internet Repositories for apk-tools: Difference between revisions
Ginjachris (talk | contribs) mNo edit summary |
(Add community repo) |
||
Line 12: | Line 12: | ||
{{Cat|/etc/apk/repositories|/media/cdrom/apks | {{Cat|/etc/apk/repositories|/media/cdrom/apks | ||
http://dl-3.alpinelinux.org/alpine/v2.7/main}} | http://dl-3.alpinelinux.org/alpine/v2.7/main}} | ||
{{Note|Starting with version 3.3, there is a new repository called '''community'''. Many packages have been moved from the main repository to community to indicate that they are not guaranteed to be supported beyond six months. If you are using any of these packages, be sure to add the community repository. For example: <code><nowiki>http://dl-3.alpinelinux.org/alpine/v3.3/community</nowiki></code>}} | |||
Only one repository is shown above; however, you may also replace <code><nowiki>http://dl-3.alpinelinux.org/alpine/</nowiki></code> with any of the mirrors below: | Only one repository is shown above; however, you may also replace <code><nowiki>http://dl-3.alpinelinux.org/alpine/</nowiki></code> with any of the mirrors below: |
Revision as of 13:54, 3 February 2016
Edit the /etc/apk/repositories file using an editor (nano for instance) 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
Another example: upgrading from version 2.6 to 2.7 simply change:
http://dl-3.alpinelinux.org/alpine/v2.6/main
to
http://dl-3.alpinelinux.org/alpine/v2.7/main
Thus, the file will now look like this:
Contents of /etc/apk/repositories
http://dl-3.alpinelinux.org/alpine/v3.3/community
Only one repository is shown above; however, you may also replace http://dl-3.alpinelinux.org/alpine/
with any of the mirrors below:
- 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
-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.