在Ubuntu上通过SSH服务远程连接其他机器
首先通过以下命令判断是否安装SSH服务:
shell
ssh localhost
如果出现 ssh: connect to host localhost port 22: Connection refused
则表示还未安装SSH。
通过以下命令安装SSH:
shell
sudo apt update
sudo apt install openssh-server
安装完成后,通过以下命令启动SSH服务:
shell
sudo /etc/init.d/ssh start
启动后,可以通过以下命令查看SSH服务是否正确启动:
shell
ps -e | grep ssh
出现类似 6212 ? 00:00:00 sshd
的内容则表示成功启动。
通过以下命令可连接远程设备:
shell
ssh root@192.168.23.55
通过以下命令可将此设备文件传输到远程设备上:
shell
scp /home/aibc/example.cpp root@192.168.23.55:/home/root/oxi_model