SSH访问虚拟机

目的

为方便操作远程linux操作系统,这里介绍SSH远程连接linux的方法

开始

centos7虚拟机搭建简易手册(1)-安装第一台虚拟机:https://blog.csdn.net/gyh1991/article/details/89003853
centos7虚拟机搭建简易手册(2)-双网卡设置:https://blog.csdn.net/gyh1991/article/details/89091710

下载git,官网:https://git-scm.com/,安装。
SSH访问虚拟机_第1张图片
安装完成后,鼠标右键即出现git相关的指令
SSH访问虚拟机_第2张图片
在任意位置,选择“Git Bash Here”
SSH访问虚拟机_第3张图片
ssh命令

usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
           [-D [bind_address:]port] [-e escape_char] [-F configfile]
           [-i identity_file] [-L [bind_address:]port:host:hostport]
           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]
           [-R [bind_address:]port:host:hostport] [-S ctl_path]
           [-W host:port] [-w local_tun[:remote_tun]]
           [user@]hostname [command]

执行

ssh [email protected]

ssh

yes

然后即可输入密码远程访问linux了。

你可能感兴趣的:(linux)