All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker
. This will install the whole docker suite, left only Tini to be compiled manually.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-10-30T19:55:49.351Z","extensionVersion":"v3.4.3"} |
- I am using a docker container for this process in order not to mess around with my current setup
- The output is named as pyarrow-1.0.1-cp37-cp37m-linux_armv7l.whl, under the folder /build/arrow/python/dist inside the docker container.
- The output wheel can also be downloaded here - https://drive.google.com/drive/folders/13rdy69jtjF4rtf2K5-REzTPeFPQW4Uyy?usp=sharing
- Special thanks to kpine/rpi-pyarrow-plasma
Attached the Dockerfile.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH RECURSIVE | |
positions(i) as ( | |
VALUES(0) | |
UNION SELECT ALL | |
i+1 FROM positions WHERE i < 63 | |
), | |
solutions(board, n_queens) AS ( | |
SELECT '----------------------------------------------------------------', cast(0 AS bigint) | |
FROM positions | |
UNION |
Follow below steps to migrate the setup of Termux from Device A to Device B
Step 1. Backup termux on device A and run below command one by one.
cd /data/data/com.termux/files
tar -zcvf ./termux-backup_20211031.tar.gz home usr
mv ./termux-backup_20211031.tar.gz /storage/[Device A ID]/Android/data/com.termux/files/termux-backup_20211031.tar.gz
Step 2. Restore the setup of Termux on Device B.