以前看过一些资料说ubuntu默认是安装ssh的,而我是自己安装了一个ssh,并且安装之后,看到ssh服务已经启动。总之目的就是希望有一个ssh服务,并且已经启动,如果没有安装,就先安装一个;如果该服务没有启动,就启动一下,由于我的已经启动了,所以我没有考虑这个问题。关于启动ssh服务,我在网上看到的资料是:
wahaha@ubuntu-K55VD:~$ /etc/init.d/ssh start
安装一个ssh服务器,我的做法是在终端输入ssh,然后按Tab键补全,选择安装服务器。
wahaha@ubuntu-K55VD:~$ sudo apt-get install ssh
ssh ssh-contact-service ssh-krb5
ssh-askpass sshfp sshm
ssh-askpass-fullscreen sshfs sshmenu
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com)ssh-askpass-gnome sshfs-dbg sshpass
ssh-contact sshguard sshuttle
ssh-contact-client ssh-import-id
wahaha@ubuntu-K55VD:~$ sudo apt-get install ssh-contact-service
之后我输入密码进行安装。[sudo] password for wahaha:
正在读取软件包列表... 完成
正在分析软件包的依赖关系树
正在读取状态信息... 完成
将会安装下列额外的软件包:
openssh-server ssh-import-id
建议安装的软件包:
rssh molly-guard openssh-blacklist openssh-blacklist-extra monkeysphere
下列软件包将被安装:
openssh-server ssh-contact-service ssh-import-id
升级了 0 个软件包,新安装了 3 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级。
需要下载 352 kB 的软件包。
解压缩后会消耗掉 944 kB 的额外空间。
您希望继续执行吗?[Y/n]y
获取:1 http://cn.archive.ubuntu.com/ubuntu/ precise-updates/main openssh-server amd64 1:5.9p1-5ubuntu1.3 [338 kB]
获取:2 http://cn.archive.ubuntu.com/ubuntu/ precise/universe ssh-contact-service amd64 0.6-1build1 [7,476 B]
获取:3 http://cn.archive.ubuntu.com/ubuntu/ precise/main ssh-import-id all 2.10-0ubuntu1 [6,598 B]
下载 352 kB,耗时 1秒 (314 kB/s)
正在预设定软件包 ...
Selecting previously unselected package openssh-server.
(正在读取数据库 ... 系统当前共安装有 320267 个文件和目录。)
正在解压缩 openssh-server (从 .../openssh-server_1%3a5.9p1-5ubuntu1.3_amd64.deb) ...
Selecting previously unselected package ssh-contact-service.
正在解压缩 ssh-contact-service (从 .../ssh-contact-service_0.6-1build1_amd64.deb) ...
Selecting previously unselected package ssh-import-id.
正在解压缩 ssh-import-id (从 .../ssh-import-id_2.10-0ubuntu1_all.deb) ...
正在处理用于 man-db 的触发器...
正在处理用于 ureadahead 的触发器...
正在处理用于 ufw 的触发器...
正在设置 openssh-server (1:5.9p1-5ubuntu1.3) ...
Creating SSH2 RSA key; this may take some time ...
Creating SSH2 DSA key; this may take some time ...
Creating SSH2 ECDSA key; this may take some time ...
ssh start/running, process 27543
正在设置 ssh-contact-service (0.6-1build1) ...
正在设置 ssh-import-id (2.10-0ubuntu1) ...
wahaha@ubuntu-K55VD:~$
之后我检测ssh服务有没有启动,根据显示的信息可知,我的已经启动了。
wahaha@ubuntu-K55VD:~$ ps -e | grep ssh
602 ? 00:00:00 sshd
2082 ? 00:00:00 ssh-agent
wahaha@ubuntu-K55VD:~$
然后我下载一个PuTTY的软件,下载完之后,直接双击运行。
然后我查看我电脑的IP。
wahaha@ubuntu-K55VD:~$ ifconfig
eth0 Link encap:以太网 硬件地址 08:60:6e:14:00:cf
UP BROADCAST MULTICAST MTU:1500 跃点数:1
接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
碰撞:0 发送队列长度:1000
接收字节:0 (0.0 B) 发送字节:0 (0.0 B)
lo Link encap:本地环回
inet 地址:127.0.0.1 掩码:255.0.0.0
inet6 地址: ::1/128 Scope:Host
UP LOOPBACK R图老师UNNING MTU:65536 跃点数:1
接收数据包:6027 错误:0 丢弃:0 过载:0 帧数:0
发送数据包:6027 错误:0 丢弃:0 过载:0 载波:0
碰撞:0 发送队列长度:0
接收字节:650313 (650.3 KB) 发送字节:650313 (650.3 KB)
wlan0 Link encap:以太网 硬件地址 20:68:9d:f7:53:f1
inet 地址:218.87.104.65 广播:218.87.104.127 掩码:255.255.255.128
inet6 地址: fe80::2268:9dff:fef7:53f1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 跃点数:1
接收数据包:43824 错误:0 丢弃:0 过载:0 帧数:0
发送数据包:27107 错误:0 丢弃:0 过载:0 载波:0
碰撞:0 发送队列长度:1000
接收字节:24782722 (24.7 MB) 发送字节:4217911 (4.2 MB)
wahaha@ubuntu-K55VD:~$
然后我在Windows 7 进行ping,看看虚拟机和物理(m.tulaoshi.com)机之间的网络是否畅通,根据显示可知,它们之间已经互通了。Microsoft Windows [版本 6.1.7600]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:UsersLi_Junping 218.87.104.65
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com)正在 Ping 218.87.104.65 具有 32 字节的数据:
来自 218.87.104.65 的回复: 字节=32 时间1ms TTL=63
来自 218.87.104.65 的回复: 字节=32 时间1ms TTL=63
来自 218.87.104.65 的回复: 字节=32 时间1ms TTL=63
来自 218.87.104.65 的回复: 字节=32 时间1ms TTL=63
218.87.104.65 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
往返行程的估计时间(以毫秒为单位):
最短 = 0ms,最长 = 0ms,平均 = 0ms
C:UsersLi_Jun
然后我就开始远程登入。
最后显示,我已经成功远程登入了。
注:更多精彩教程请关注图老师电脑教程栏目,图老师电脑群:189034526欢迎你的加入
1、打开控制面板,在控制面板中点击轻松访问。
2、在轻松访问中心下选择更改鼠标的工作方式,在打开的使鼠标更易于使用窗口里,勾选上通过鼠标悬停在窗口上来激活窗口,应用确定后,退出就搞定了。
很多时候用户在使用windows7系统的时候都会遇到需要同时打开多个程序窗口的操作,为了让操作更方便,更加快速地激活目标程序窗口,用户可以通过设置鼠标的操作习惯来设置,方法很简单哦。