安卓手机termux ssh连接

前提概要

在开启 ssh 前需要先安装 termux,使用 termux 安装 ssh

目录

  1. 安装 openssh
  2. termux 设置 ssh 密码
  3. termux 设置自动开启 ssh
  4. 连接 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
2
~ $ echo "sshd" >> ~/.bashrc  # 设置自动开启
~ $ source ~/.bashrc # 刷新配置

4. 连接 ssh

电脑使用 xshell 或其他工具连接到 ssh

  1. 使用 ifconfig 命令查看本机的内网ip
  2. 使用 whoami 查看本地用户名
  3. 使用 sshd 开启远程连接(只有安装后首次连接需要手动开启)
  4. 电脑上使用 xshell 连接

参考文章

参考文章