安卓手机termux ssh连接
前提概要
在开启 ssh
前需要先安装 termux
,使用 termux
安装 ssh
目录
- 安装
openssh
termux
设置ssh
密码termux
设置自动开启ssh
- 连接
ssh
安装 ssh
1. 使用 termux
安装 openssh
1
2
~ $ pkg update # pkg 源更新
~ $ pkg install openssh # 安装 openssh
2. termux
设置 ssh
密码
使用 passwd
命令设置密码
1
2
3
4~ $ passwd
New password: # 设置密码
Retype new password: # 确认密码
New password was successfully set. # 看到这个提示则设置密码成功
3. termux
设置自动开启 ssh
1 | ~ $ echo "sshd" >> ~/.bashrc # 设置自动开启 |
4. 连接 ssh
电脑使用 xshell
或其他工具连接到 ssh
- 使用
ifconfig
命令查看本机的内网ip - 使用
whoami
查看本地用户名 - 使用
sshd
开启远程连接(只有安装后首次连接需要手动开启) - 电脑上使用
xshell
连接