ProfGra . org

Search

Search IconIcon to open search

Termux

# Purpose

I mainly use Termux on Android for:

# Basic install

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
termux-setup-storage

apt update
# dl.bintra.com/grimler/science-packages-24 no Release file
# same with game-packages-24

apt upgrade
# use the new conf file for openssl and bash

pkg install vim git python  # and openssh if github needed
cp dotfiles/* .
mkdir .vim-tmp

# Github

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
pkg install openssh
# creates some key pairs
ssh-keygen -t ed25519 -C "your_email@example.com"
# fingerprint EIdKDiH4TUhx...
eval "$(ssh-agent -s)"  # ?

# copy the public key to github

ssh -T git@github.com  # OK, add to known_hosts

git clone git@github.com:Grahack/profgra.org.git .

Last updated Aug 20, 2023 Edit Source