Executando verificação de segurança...
1

Aproveitando a linha de indicações, eu gosto mais do UserLand para emular terminal no android. Essa solução permite escolher qual distro prefere e funciona muito parecido com um raspberry, apesar das limitações.

Ademais, com o UserLand é possível configurar ssh reverso e acessar o terminal do celular a partir de um pc comum (que permita acesso ssh):

$ apt update
$ apt install openssh-server -y
$ ssh -R <port>:localhost:22 <user>@<host> 
# the chosen port must be unused in the remote machine
# the user and host are those from the machine you'd like to connect from

# once set the reverse connection, it is possible to access from the remote machine
$ ssh <android-user>@localhost -p <port>
# this tutorial used the port 40000 and named the user as `android`:
# from the android device
# ssh -R 40000:localhost:22 ur_user@ur_host_ip
$ ssh android@localhost -p 40000
# Insert the same password chosen when configuring the emulator.
1