winScp 连接linux 机器

来源:互联网 发布:淘宝店铺差评 编辑:程序博客网 时间:2024/05/17 18:27

1. 需要安装ssh的包

apt-get install ssh

2. 检查ssh的服务是不是开启

service --status-all > file1

可以将查询的结果放入到file1中

或者 service --status-all|grep ssh, 会将ssh的指令标示为红色

3. 如果ssh的服务没有开启,用以下命令开启

service ssh start

(可以在连接之前先ping 对方机器的ip地址)

http://blog.csdn.net/shuo_wanda/article/details/7022846

 

http://mymbk.blog.sohu.com/167047928.html

先查看ssh是否安装

view plainprint?
  1. shuo@ubuntu:~$ ssh localhost ssh  
  2. ssh: connect to host localhost port 22: Connection refused  

没安装

view plainprint?
  1. shuo@ubuntu:~$ sudo apt-get install openssh-server    

启动ssh

view plainprint?
  1. shuo@ubuntu:~$ sudo /etc/init.d/ssh start  
  2. Rather than invoking init scripts through /etc/init.d, use the service(8)  
  3. utility, e.g. service ssh start  
  4.   
  5.   
  6. Since the script you are attempting to invoke has been converted to an  
  7. Upstart job, you may also use the start(8) utility, e.g. start ssh  

查看服务是否正确启动

view plainprint?
  1. shuo@ubuntu:~$ ps -e | grep ssh  
  2.  1719 ?        00:00:00 ssh-agent  
  3.  2235 ?        00:00:00 sshd  

查看IP

view plainprint?
  1. shuo@ubuntu:~$ ifconfig  
  2. eth0      Link encap:以太网  硬件地址 00:0c:29:5a:24:59    
  3.           inet 地址:192.168.1.112  广播:192.168.139.255  掩码:255.255.255.0  
  4.           inet6 地址: fe80::20c:29ff:fe5a:2459/64 Scope:Link  
  5.           UP BROADCAST RUNNING MULTICAST  MTU:1500  跃点数:1  
  6.           接收数据包:120 错误:0 丢弃:0 过载:0 帧数:0  
  7.           发送数据包:36 错误:0 丢弃:0 过载:0 载波:0  
  8.           碰撞:0 发送队列长度:1000   
  9.           接收字节:11641 (11.6 KB)  发送字节:5531 (5.5 KB)  
  10.           中断:19 基本地址:0x2024   
  11.   
  12.   
  13. lo        Link encap:本地环回    
  14.           inet 地址:127.0.0.1  掩码:255.0.0.0  
  15.           inet6 地址: ::1/128 Scope:Host  
  16.           UP LOOPBACK RUNNING  MTU:16436  跃点数:1  
  17.           接收数据包:12 错误:0 丢弃:0 过载:0 帧数:0  
  18.           发送数据包:12 错误:0 丢弃:0 过载:0 载波:0  
  19.           碰撞:0 发送队列长度:0   
  20.           接收字节:720 (720.0 B)  发送字节:720 (720.0 B) 

通过 winscp 连接ubuntu

填写 主机名为192.168.1.112 端口默认为22

用户名:shuo 密码:*******

登录OK


 

附winscp下载地址:http://sourceforge.net/projects/winscp/files/WinSCP/4.3.5/winscp435setup.exe/download


 

原创粉丝点击