Include:Upgrading to latest release: Difference between revisions
Prabuanand (talk | contribs) (fixed heading names to add clarity and added # to clarify that the commands require root privileges) |
Prabuanand (talk | contribs) (rephrased the sentence and moved the warning) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=== Update Repositories File === | === Update Repositories File === | ||
The Repositories file {{Path|/etc/apk/repositories}} can be updated using one of the following methods. | |||
==== Using setup-apkrepos script==== | ==== Using setup-apkrepos script==== | ||
Launch the [[Alpine_setup_scripts#setup-apkrepos|<Code>setup-apkrepos</Code>]] script: {{Cmd|# setup-apkrepos}} Pressing {{Key|e}} will open the file to edit using [[BusyBox#vi|'''vi''' editor]]. Edit the repository lines to reflect the new version number. | |||
==== Using sed command ==== | ==== Using sed command ==== | ||
Use a one-line command to edit all version numbers in the file "in place". Here's how you'd change <var>v3.20</var> to <var>v3.21</var>: {{Cmd|# sed -i -e 's/<var>v3\.20</var>/<var>v3\.21</var>/g' /etc/apk/repositories}} | |||
==== Manual editing of {{Path|/etc/apk/repositories}}==== | ==== Manual editing of {{Path|/etc/apk/repositories}}==== | ||
Line 13: | Line 13: | ||
==== Using '''latest-stable''' instead of version number==== | ==== Using '''latest-stable''' instead of version number==== | ||
{{Warning|Changing the repositories to <code>latest-stable</code> may initiate unexpected release upgrades. Beware of the consequences.}} | |||
Manual changes of the version numbers may be avoided for future release upgrades by having the repository lines refer to "latest-stable" instead of an absolute value in the {{Path|/etc/apk/repositories}} file as follows:{{Cat|/etc/apk/repositories|http://dl-3.alpinelinux.org/alpine/latest-stable/main | |||
http://dl-3.alpinelinux.org/alpine/latest-stable/community}} | |||
=== Updating package lists === | === Updating package lists === | ||
Line 40: | Line 38: | ||
reboot}} | reboot}} | ||
}} | }} | ||
Latest revision as of 11:45, 9 February 2025
Update Repositories File
The Repositories file /etc/apk/repositories can be updated using one of the following methods.
Using setup-apkrepos script
Launch the setup-apkrepos
script:
# setup-apkrepos
Pressing e will open the file to edit using vi editor. Edit the repository lines to reflect the new version number.
Using sed command
Use a one-line command to edit all version numbers in the file "in place". Here's how you'd change v3.20 to v3.21:
# sed -i -e 's/v3\.20/v3\.21/g' /etc/apk/repositories
Manual editing of /etc/apk/repositories
Edit the /etc/apk/repositories file using any editor of your choice (nano for instance).
Contents of /etc/apk/repositories
In the above file, to upgrade Alpine Linux from version 3.20 to 3.21, simply replace the number 3.20 by 3.21 in all the places:
Contents of /etc/apk/repositories
Using latest-stable instead of version number
![](/images/d/d8/Tango-dialog-warning.png)
latest-stable
may initiate unexpected release upgrades. Beware of the consequences.
Manual changes of the version numbers may be avoided for future release upgrades by having the repository lines refer to "latest-stable" instead of an absolute value in the /etc/apk/repositories file as follows:
Contents of /etc/apk/repositories
Updating package lists
With the correct repositories file in place, the latest index list of available packages can be obtained with:
# apk update
--update-cache
or -U
to another apk command, as in apk add -U ...
or apk upgrade -U
, has the same effect as always running apk update
immediately before the other apk command. Instead of auto-update it only if the index has not been updated recently.Upgrading packages
At times it is required to first upgrade just the Alpine Linux Package Manager itself to the latest available version, before upgrading any other package. This was the case, for example, when upgrading from a version of Alpine before 2.3.0_rc1. But simply always doing so shouldn't hurt, either:
# apk add --upgrade apk-tools
Next, to upgrade all installed packages:
# apk upgrade --available
The --available
switch is used to force all packages to be upgraded, even if they have the same version numbers. Sometimes changes in musl require doing this.
sync reboot