Ubuntu ssh远程登录

前言

ssh协议可以通过网线登录到目标设备,访问和控制设备,也可以传输文件,本文主要介绍ubuntu下远程登录的方法。

一、安装openssh-server

sudo apt install openssh-server

此时可能会提示缺少依赖,提示如下。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 linux-headers-4.4.0-209-generic : Depends: linux-headers-4.4.0-209 but it is not going to be installed
 openssh-server : Depends: openssh-client (= 1:7.2p2-4ubuntu2.10)
                  Depends: openssh-sftp-server but it is not going to be installed
                  Recommends: ncurses-term but it is not going to be installed
                  Recommends: ssh-import-id but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

只需用apt把依赖装上即可。

sudo apt install linux-headers-4.4.0-209
sudo apt install openssh-client
sudo apt install openssh-server

二、远程登录

给设备和电脑接上网线,用ping检查是否连接成功。

ping 192.168.1.200
PING 192.168.1.200 (192.168.1.200) 56(84) bytes of data.
64 bytes from 192.168.1.200: icmp_seq=1 ttl=128 time=1.71 ms
64 bytes from 192.168.1.200: icmp_seq=2 ttl=128 time=2.00 ms
64 bytes from 192.168.1.200: icmp_seq=3 ttl=128 time=2.56 ms
64 bytes from 192.168.1.200: icmp_seq=4 ttl=128 time=1.67 ms
64 bytes from 192.168.1.200: icmp_seq=5 ttl=128 time=1.43 ms

连接成功后,使用ssh远程登录。(有些设备可能要输入账号密码)
在这里插入图片描述
此时终端为远程设备的终端,可以访问设备的文件系统。

三、可视化远程登录

如果要传输文件,使用命令行远程登录不太方便,ubuntu提供了可视化的远程登录。
Ubuntu ssh远程登录_第1张图片
进入文件系统,左侧会有Connect to Server这个选项。
Ubuntu ssh远程登录_第2张图片
在输入框内以以下格式输入目标设备的用户名、ip号及进入的目录,点击Connect即可登录到文件系统。

用户名:root
ip号:192.168.1.1
目录:app
sftp://[email protected]/app

你可能感兴趣的:(ubuntu,ssh,linux)