如何从桌面远程登录Linux服务器?
时间:2020-01-09 10:41:46 来源:igfitidea点击:
问题描述:如何从笔记本电脑或者台式机系统远程登录到Red Hat Enterprise Linux 5?
解决方法:您需要使用ssh客户端。
您的主机提供商必须为您提供root密码。
ssh(SSH客户端)是一个用于登录到远程计算机并在远程计算机上执行命令的程序。
我建议将ssh与GUI进行比较,以节省带宽并避免与安全相关的问题。
使用ssh是小菜一碟。
打开终端或者使用诸如putty之类的程序,并在shell提示符下执行以下命令:ssh root @ server-ip-address
或者ssh [email protected]
出现提示时,输入root用户的密码。
在典型的首次会话之后,在台式机/笔记本电脑与远程Linux服务器之间建立安全连接:
$ ssh [email protected]
输出:
The authenticity of host 'host51.theitroad.com (192.53.12.22)' can't be established. RSA key fingerprint is 10:cd:8e:3b:59:e4:3d:4c:e2:08:a6:12:dd:dd:d8:74. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'host51.theitroad.com' (RSA) to the list of known hosts. [email protected]'s password: HIDDEN-PASSWORD Linux host51 2.6.17-11-generic #2 SMP Thu Feb 1 19:52:28 UTC 2007 i686 The programs included with the Ubuntu system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Mon Apr 9 17:10:27 2007
现在您可以执行以下命令
date clear w top .... ..... ..