ubuntu18.04 使用ssh 远程的命令
时间: 2023-10-26 07:36:40 浏览: 190
SSH远程ubuntu
1. 安装 OpenSSH 服务器:
sudo apt-get install openssh-server
2. 启动 SSH 服务:
sudo systemctl start ssh
3. 配置 SSH 服务自动启动:
sudo systemctl enable ssh
4. 查看 SSH 服务状态:
sudo systemctl status ssh
5. 在本地进行 SSH 登录远程主机:
ssh username@remote_host_ip_address
6. 在本地进行 SCP 传输文件到远程主机:
scp local_file_path username@remote_host_ip_address:remote_file_path
7. 在本地进行 SCP 从远程主机下载文件到本地:
scp username@remote_host_ip_address:remote_file_path local_file_path
8. 在远程主机执行命令:
ssh username@remote_host_ip_address command
9. 在远程主机执行交互式 shell:
ssh username@remote_host_ip_address
阅读全文