Upgrade to repository main: Difference between revisions
(→Upgrading basic packages: verify apk version) |
m (Marked page as historical. Nowiki'd a dead link.) |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{Historical|This was for ancient versions of Alpine.<br>URLs on this page may no longer work.}} | |||
= How to upgrade to signed repositories = | = How to upgrade to signed repositories = | ||
Line 5: | Line 7: | ||
We used this occation to also merge the core and extra repositories into a single repository: main. | We used this occation to also merge the core and extra repositories into a single repository: main. | ||
If you boot from CF, USB, cdrom and run from tmpfs, then | If you boot from CF, USB, or cdrom and run from tmpfs, then it's just a matter of replacing the boot media and reboot. If you boot and run from a harddisk, then it's really recommended to reinstall the system. | ||
This document shows how to upgrade to the signed 'main' repository if you still want to try it. It might work, it might not. | This document shows how to upgrade to the signed 'main' repository if you still want to try it. It might work, it might not. | ||
Line 17: | Line 19: | ||
== Upgrading basic packages == | == Upgrading basic packages == | ||
Then you will need a newer version of apk-tools. Use wget to download a static version of apk. | Then you will need a newer version of apk-tools. Use wget to download a static version of apk. | ||
wget http://dl-3.alpinelinux.org/alpine/v1.9/apk.static | wget <nowiki>http://dl-3.alpinelinux.org/alpine/v1.9/apk.static</nowiki> | ||
chmod +x apk.static | chmod +x apk.static | ||
Line 32: | Line 28: | ||
./apk.static --version | ./apk.static --version | ||
Now, replace the core and extra repositories with 'main' in /etc/apk/repositories with a text editor. Then | Now, replace the 'core' and 'extra' repositories with 'main' in '/etc/apk/repositories' with a text editor. | ||
vi /etc/apk/repositories | |||
Then upgrade latest alpine-base, which will include the needed keys. | |||
./apk.static add --update-cache --upgrade --allow-untrusted alpine-base | |||
Now we should have the keys and latest apk-tools. Start the upgrade and re-install of the recompiled and signed packages.<BR> | |||
'''''Note:''' It might work, it might break your system, so, again, make sure you have that backup.'' | |||
apk upgrade --available | |||
If things went well, it should be a matter of rebooting and you are done. | |||
reboot | |||
[[Category:Installation]] | |||
[[Category:Package Manager]] |
Latest revision as of 00:10, 4 September 2023
This material is retained only for historical reasons ... This was for ancient versions of Alpine. |
How to upgrade to signed repositories
From Alpine 1.9 alpha18 and newer the packages and repositories are signed. Due to this change the index format changed. Index was also renamed from APK_INDEX.gz to APKINDEX.tar.gz.
We used this occation to also merge the core and extra repositories into a single repository: main.
If you boot from CF, USB, or cdrom and run from tmpfs, then it's just a matter of replacing the boot media and reboot. If you boot and run from a harddisk, then it's really recommended to reinstall the system.
This document shows how to upgrade to the signed 'main' repository if you still want to try it. It might work, it might not.
Make backup
Before you start, you should make a backup of your configuration. This can be done with the lbu utility.
lbu package backup.apkovl.tar.gz
Copy the backup.apkovl.tar.gz to a safe place. Might be handy in case the upgrade fail and you end up reinstalling.
Upgrading basic packages
Then you will need a newer version of apk-tools. Use wget to download a static version of apk.
wget http://dl-3.alpinelinux.org/alpine/v1.9/apk.static chmod +x apk.static
Verify that the apk version is atleast 2.0_rc1.
./apk.static --version
Now, replace the 'core' and 'extra' repositories with 'main' in '/etc/apk/repositories' with a text editor.
vi /etc/apk/repositories
Then upgrade latest alpine-base, which will include the needed keys.
./apk.static add --update-cache --upgrade --allow-untrusted alpine-base
Now we should have the keys and latest apk-tools. Start the upgrade and re-install of the recompiled and signed packages.
Note: It might work, it might break your system, so, again, make sure you have that backup.
apk upgrade --available
If things went well, it should be a matter of rebooting and you are done.
reboot