1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

ssh,ssh-copy-id: add Chinese translation (#15513)

* ssh: add chinese translation

* ssh-copy-id: add chinese translation

* Update pages.zh/common/ssh-copy-id.md

Co-authored-by: P2Tree <dicksonliuming@gmail.com>

* Update pages.zh/common/ssh-copy-id.md

Co-authored-by: P2Tree <dicksonliuming@gmail.com>

* Update pages.zh/common/ssh-copy-id.md

Co-authored-by: P2Tree <dicksonliuming@gmail.com>

* Update pages.zh/common/ssh.md

Co-authored-by: P2Tree <dicksonliuming@gmail.com>

* Update pages.zh/common/ssh.md

Co-authored-by: P2Tree <dicksonliuming@gmail.com>

---------

Co-authored-by: P2Tree <dicksonliuming@gmail.com>
This commit is contained in:
witt 2025-01-19 16:55:26 +08:00 committed by GitHub
parent 69dd258011
commit 41d90b5ba8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# ssh-copy-id
> 在远程机器的 authorized_keys 中安装您的公钥。
> 更多信息:<https://manned.org/ssh-copy-id>.
- 将您的密钥复制到远程主机:
`ssh-copy-id {{用户名}}@{{远程主机}}`
- 将给定的公钥文件复制到远程主机:
`ssh-copy-id -i {{路径/到/公钥文件}} {{用户名}}@{{远程主机}}`
- 将给定的公钥文件通过特定端口复制到远程主机:
`ssh-copy-id -i {{路径/到/公钥文件}} -p {{端口}} {{用户名}}@{{远程主机}}`

37
pages.zh/common/ssh.md Normal file
View file

@ -0,0 +1,37 @@
# ssh
> 安全 Shell 是一种用于安全登录远程系统的协议。
> 它可用于在远程服务器上记录或执行命令。
> 更多信息:<https://man.openbsd.org/ssh>.
- 连接到远程服务器:
`ssh {{用户名}}@{{远程主机地址}}`
- 使用特定身份(私钥)连接到远程服务器:
`ssh -i {{路径/到/私钥文件}} {{用户名}}@{{远程主机地址}}`
- 使用指定端口号连接到远程服务器:
`ssh {{用户名}}@{{远程主机地址}} -p {{端口号}}`
- 在具有伪终端分配的远程服务器上运行命令,允许与远程命令进行交互:
`ssh {{用户名}}@{{远程主机地址}} -t {{命令}} {{命令参数}}`
- SSH 隧道:动态端口转发(`localhost:1080` 上的 SOCKS 代理):
`ssh -D {{1080}} {{用户名}}@{{远程主机地址}}`
- SSH 隧道:转发特定端口(`localhost:9999``example.org:80`)以及禁用伪终端分配和远程命令的执行:
`ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{用户名}}@{{远程主机地址}}`
- SSH 转发:通过跳转主机连接到远程服务器(可以指定多个跳转,以逗号分隔):
`ssh -J {{用户名}}@{{跳转主机地址}} {{用户名}}@{{远程主机地址}}`
- 关闭挂起的会话:
`<回车键> ~ .`