操作环境:
Windows10 64位
Ubuntu14.04 32位
在vmvare里安装好了Ubuntu(32/64都可以)
Xshell6 软件
操作流程
- 在window10上安装好Xshell;
- Ubuntu安装
openssh-server
。Xshell 和Ubuntu通过ssh远程协议连接。sudo apt-get install openssh-server
正常出现下面的情况:
[email protected]:~$ sudoapt-get install openssh-server Reading package lists... Done Building dependencytree Reading state information... Done Some packages could not be installed. This may mean thatyou have requested an impossiblesituation or if you are using the unstable distribution that somerequired packages have not yet been created or been moved out of Incoming. The following informationmay help to resolve the situation: The following packageshave unmet dependencies: openssh-server : Depends: openssh-client (= 1:6.6p1-2ubuntu1) but 1:6.6p1-2ubuntu2.7 is to beinstalled Recommends: ncurses-term but it is not going to beinstalled Recommends: ssh-import-id but it is not going to beinstalled E: Unable to correct problems, youhave held broken packages.
那是因为openssh-server 依赖于openssh-client,Ubuntu不是自带了openssh-client了吗? 因为自带的openssh-client的版本与openssh-client所依赖的不同,因此需
要执行下面的命令:sudo apt-get install openssh-client=1:6.6p1-2ubuntu1
再执行命令:
sudo apt-get install openssh-server
安装完成后可以通过
ps -e|grep ssh
查看openssh-server是否安装成功;
Xshell 建立连接
- 获取Ubuntu的ip
- 新建连接;
- 在打开的窗口中填写信息;
- 选择“用户身份验证”,输入Ubuntu的登录账户与密码;
- SSH安全警告,选择接受并保存;(忘记截图了)
- 愉快的使用xshell 了
原文地址:https://www.cnblogs.com/benjieqiang/p/11404165.html
时间: 2024-10-09 07:11:48