从Windows通过ssh连接远程Linux
Ubuntu官网: https://www.ubuntu.com
OpenSSH官网: https://www.openssh.com
这一节要讲的是从本地 Windows 电脑通过 ssh
远程连接到另一台 Linux 电脑或者服务器,那么我们就要确保目标电脑已经安装好了 openssh-server
,如果没有安装,那么就可以通过下面的命令进行快速安装:
sudo apt-get install openssh-server
我们可以通过如下命令来检查有没有安装 openssh-server
ls /etc/init.d
然后我们在本地 Windows 电脑上安装 Git Bash
软件,用来连接远程电脑
Git Bash下载地址: https://git-scm.com/downloads
接着我们可以通过如下命令来连接远程电脑
ssh root@目标电脑IP地址
我们可以通过 ifconfig
命令来查看目标电脑的IP地址
如果它提示你没有安装 ifconfig
, 你就按它的要求安装就好,输入下面命令就能安装
sudo apt-get install net-tools
到这里,我们终于可以愉快的在本地操控远程 Linux 电脑