Difference between revisions of "PinePhone Updating Instructions"
(added category) |
(Added detailed info for using pacman to apply update's) |
||
Line 9: | Line 9: | ||
== Other OSs == | == Other OSs == | ||
== Manjaro, or other Arch Linux based OSs == | |||
To first download all new package's | |||
$ sudo pacman -Suuyyw | |||
and do the same without the 'w' | |||
$ sudo pacman -Suy | |||
(--cache-dir can be used for a separate download location, otherwise consider reading https://wiki.archlinux.org/index.php/Pacman#Configuration for further optimization) | |||
Please add the information | Please add the information | ||
[[Category:PinePhone]] | [[Category:PinePhone]] |
Revision as of 02:41, 4 February 2021
Mobian
There is no need to regularly flash the newest images to your phone. You can use the pre-installed program "Software" or because Mobian is based on Debian you can open a terminal and use apt to keep the system updated. The following command will check for updates and install them:
$ sudo apt-get update && sudo apt-get upgrade
If some packages were held back, you can update them with:
$ sudo apt-get dist-upgrade
If the update included changes related to the bootloader (e.g. a new kernel) run the following command:
$ sudo u-boot-install-pinephone
Other OSs
Manjaro, or other Arch Linux based OSs
To first download all new package's $ sudo pacman -Suuyyw
and do the same without the 'w' $ sudo pacman -Suy
(--cache-dir can be used for a separate download location, otherwise consider reading https://wiki.archlinux.org/index.php/Pacman#Configuration for further optimization)
Please add the information