linux基础linux远程登录
Posted 鹅要长大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux基础linux远程登录相关的知识,希望对你有一定的参考价值。
可以用ssh命令行方式登录。对方需要开启ssh服务。
SSH2是目前广泛使用的ssh版本,SSH协议是TCP协议,其占用的端口号是 22;
绝大多数Linux版本默认使用的SSH是openssh,通过 ssh -V 命令可以查看ssh的信息;
SSH分为服务器端和客户端,对于服务器端,SSH是默认开机启动的,作为常驻服务存在,我们可以通过 service sshd status 命令来查看;
ssh root@172.25.215.40 命令来进行登陆,root是我们需要登陆的用户名,@后面跟的是我们的ip地址
scp 命令是用以在两台计算机之间进行快速的、加密的数据传输,命令的语法格式为:
scp 源文件 目标地址
如果是复制连续文件目录,可以添加-r属性;
明安装了ssh,但不知道是安装client还是server,
发现,默认只安装了openssh-client
5 使用命令dpkg-l|grep ssh查看安装的结果,发现已安装openssh-server,该
ubuntu也可以使用ssh命令远程连接
本机防火墙关闭;
检查是否能够ping通:ping hostIP
工作站关机重启之后,IP发生了变化,所以出现time out的问题;
怎么可以设置工作站的IP不变呢?这就涉及到设置为静态IP而非DHCP,需要专门写一篇博客;
默认情况,ubuntu 16.04是已安装openssh-client,没安装openssh-server,所以可以使用该ubuntu的ssh命令去远程连接别的安装过openssh-server的ubuntu主机,而该ubuntu却不能被远程连接的,因为没装openssh-server ;
https://blog.csdn.net/qq_19339041/article/details/79967109
https://blog.csdn.net/qq_32599479/article/details/78782775
https://www.cnblogs.com/zlslch/p/6861364.html
https://blog.csdn.net/hongchangfirst/article/details/37529507
https://blog.csdn.net/m0_37864814/article/details/82961927
https://blog.csdn.net/qq_32599479/article/details/78782775
https://blog.csdn.net/qq_19339041/article/details/79967109
1.
https://blog.csdn.net/zilaike/article/details/78922524
2.
https://blog.csdn.net/qq_32599479/article/details/78782775
3.
https://blog.csdn.net/testcs_dn/article/details/69498797
4.
https://blog.csdn.net/pucao_cug/article/details/64492550
5.
https://blog.csdn.net/qq_32599479/article/details/78782775
6.
https://blog.csdn.net/qq_19339041/article/details/79967109
7.
https://blog.csdn.net/m0_37864814/article/details/82961927
8.
https://blog.csdn.net/hongchangfirst/article/details/37529507
end
以上是关于linux基础linux远程登录的主要内容,如果未能解决你的问题,请参考以下文章