-
-
Notifications
You must be signed in to change notification settings - Fork 937
Installing apk on the App Store Version
toraxmalu edited this page Apr 11, 2024
·
19 revisions
Note: Have a look into this Wiki-Artikle: Using Alpine Linux repositories for additional information.
In case Apple demanded removal of apk again, re-installation is possible in two ways:
1st Way: Look in the Wiki for "Install & Activate Alternate Filesystem". There apk is integrated already.
2nd Way:
- Check the Settings for the current Alpine Version. On April 11th, 2024 this was App-Version 1.3.2 (Build 494) and root-FS Apline 3.14 managed by a iSH-Repo.
- On the Alpine-Website have a look for your Alpine-Version.
- Then search in Sub-folder main/x86 for "apk-tools-static-….apk" - remember that name and path. Currently it is "apk-tools-static-2.12.7-r0.apk"
- Type following commands:
wget -qO- http://dl-cdn.alpinelinux.org/alpine/v3.14/main/x86/apk-tools-static-2.12.7-r0.apk | tar -xz sbin/apk.static && ./sbin/apk.static add apk-tools && rm sbin/apk.static
Explanation for the command:
-
wget -qO- http://
Be silent (-q
), stream the download to STDOUT (O-
) from targethttp://…
. -
| tar -xz sbin/apk.static
Take the output from wget (|
), unpack the filesbin/apk.static
from stream and begin new command (&&
) - start Programm
./sbin/apk.static
- add the apk-tools and start new command (
&&
) - cleap-up (
rm sbin/apk.static
)
- Contributing to iSH Development
- How to add a new Character Device to iSH
- How to add a new entry to /proc/ish
- Fixing hostname localhost
- Running nmap
- Running Ruby Programs
- Installing PHP with a TLS certificate and a PHP filemanager
- Installing R and any package from the CRAN
- iSH Alpine Release Issues
- Using Alpine Linux repositories
- Upgrading to a new release
- Install & Activate Alternate Filesystems