wiki.xw3.org

Welcome to the xw3 Wiki! Powered by hanez

User Tools

Site Tools


linux:alpine_linux

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
linux:alpine_linux [2025-03-18] – removed - external edit (Unknown date) 127.0.0.1linux:alpine_linux [2025-03-18] (current) – ↷ Page moved from alpine_linux to linux:alpine_linux hanez
Line 1: Line 1:
 +====== Alpine Linux ======
  
 +[[https://wiki.alpinelinux.org/wiki/Alpine_Package_Keeper|Alpine Package Keeper]]
 +
 +===== Useful commands =====
 +
 +  * [[https://linuxiac.com/alpine-apk-command-guide/]]
 +  * [[https://www.cyberciti.biz/faq/10-alpine-linux-apk-command-examples/|https://www.cyberciti.biz/faq/10-alpine-linux-apk-command-examples/]]
 +  * [[https://www.tecmint.com/apk-command-examples/]]
 +
 +==== Upgrading Alpine ====
 +
 +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:
 +
 +<code>apk add --upgrade apk-tools</code>
 +
 +Next, to upgrade all installed packages:
 +
 +<code>apk upgrade --available</code>
 +
 +Source: [[https://wiki.alpinelinux.org/wiki/Upgrading_Alpine]]
 +
 +==== Update package resposories ====
 +
 +<code>apk update</code>
 +
 +==== Show available package updates ====
 +
 +<code>apk upgrade -s</code>
 +
 +==== Upgrade all available package updates ====
 +
 +<code>apk upgrade</code>
 +
 +==== Show files of a package ====
 +
 +<code>apk info -qL PACKAGE</code>
 +
 +Or:
 +
 +<code>apk info -L PACKAGE</code>
 +
 +==== Show which package owns a file ====
 +
 +<code>apk info -qW FILE</code>
 +
 +Or:
 +
 +<code>apk info -W FILE</code>
 +
 +==== Reinstall all packages ====
 +
 +<code>apk info | xargs sudo apk fix</code>
 +
 +Source: [[https://unix.stackexchange.com/questions/619478/how-do-i-reinstall-all-installed-packages-in-alpine-linux]]
 +
 +===== Alpine Tor Wifi AP =====
 +
 +  * [[https://learn.adafruit.com/onion-pi]]
 +  * [[https://learn.adafruit.com/setting-up-a-raspberry-pi-as-a-wifi-access-point]]
 +  * [[https://wiki.alpinelinux.org/wiki/Raspberry_Pi]]
 +  * [[https://wiki.alpinelinux.org/wiki/Upgrading_Alpine#Upgrading_Alpine_Linux_on_other_removable_media_(such_as_CF/USB)]]
 +  * [[https://wiki.alpinelinux.org/wiki/Configure_Networking#IPv4_Static_Address_Configuration]]