本文介绍如何在安卓手机上安装和运行Ubuntu系统,并通过ssh连接进行操作,同时给出了一些其他有用的命令和配置说明。
安装
不要从Google Play上安装,正确的安装包地址f-droid
下载完成后,正常安装,但需要额外的给存储空间权限。
虽然说可以免root安装,但没有root权限,有些操作不能很好的完成,如
top
连接
在手机上配置太麻烦,所以可以使用同一局域网下的电脑进行配置
1 2 3 4 5 6 7 8 9 10 11 12
|
pkg install openssh -y
sshd
passwd
ssh root@[ip] -p8022
|
至此,就能在电脑端进行配置
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| pkg install proot git python wget -y
git clone https://github.com/sqlsec/termux-install-linux.git cd termux-install-linux python termux-linux-install.py
cd ~/Termux-Linux/Ubuntu ./start-ubuntu.sh
git clone https://github.com/MFDGaming/ubuntu-in-termux cd ubuntu-in-termux chmod +x ubuntu.sh ./ubuntu.sh -y ./startubuntu.sh
|
这样安装的Linux是与Termux共享文件目录的,所以可以直接将文件拷贝在
ubuntu-fs/root
文件夹中,启动
./startubuntu.sh
后,就能直接看到文件。
注:若进入系统后,无法更新软件源,可能是dns存在问题,可以在termux中更改dns解析(因为系统中不好编辑)。
1 2 3 4 5 6 7
| vim ubuntu-fs/etc/resolv.conf
` nameserver 114.114.114.114 nameserver 8.8.8.8 `
|
其他
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| pkg install vim tmux -y
[https://github.com/fatedier/frp/releases](https://github.com/fatedier/frp/releases)
cat /sys/class/thermal/thermal_zone0/temp
cat /sys/class/power_supply/battery/capacity
vim ~/.bashrc
` sshd
`
|