Last active
May 26, 2021 12:25
-
-
Save imylomylo/6b16c7e47df80d77ef289c386f9e3923 to your computer and use it in GitHub Desktop.
komodo on arm testers install instructions
This file contains hidden or 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
## 1. Install termux cli on android (tablet or phone) | |
go to store and install termux, andronix (& vnc viewer if you wanna run gui desktop env) | |
## 2. Update termux repos | |
termux in 2021, first command change repo | |
``` | |
# termux-change-repo | |
``` | |
Screenshot here, [in details on why you need to run this command first](https://github.com/termux/termux-packages/issues/6726) | |
I use the griemler repo (3rd one down). | |
## 3. Andronix ubuntu install | |
Open the andronix app, click on the ubuntu icon, and install 18.04 version. i use no-gui for these instructions, a few cli commands. Advanced GUI users (:P) can figure out the really [simple vnc instructions on this timestamped youtube video](https://www.youtube.com/watch?v=jvuufPWKF3k&t=316s). | |
termux command | |
NOTE: if you are security conscious, you would not just run random shell script from internet, so [read the source code here](https://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Installer/Ubuntu/ubuntu.sh) to be sure. | |
``` | |
pkg update -y && pkg install curl proot tar -y && curl https://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Installer/Ubuntu/ubuntu.sh | bash | |
``` | |
## 4. run ubuntu1804 | |
``` | |
./start-ubuntu.sh | |
``` | |
## 5. install some basics | |
``` | |
apt-get install sudo wget git screen | |
``` | |
## 6. install "bloated" coin requirements (with extra tools) | |
``` | |
sudo apt-get update && sudo apt-get upgrade -y | |
sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib-arm-linux-gnueabi autoconf libtool libncurses-dev unzip git python zlib1g-dev wget bsdmainutils automake libboost-all-dev libssl-dev libprotobuf-dev protobuf-compiler libgtest-dev libqt4-dev libqrencode-dev libevent-dev libdb++-dev ntp ntpdate software-properties-common curl libcurl4-gnutls-dev cmake clang libsodium-dev jq htop tmux -y | |
``` | |
## 777. ready for komodo compile testing! | |
we gotta wait for bounty instructions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment