windows ping RPi 2B

时间:2023-01-24 17:30:38
/*************************************************************************
* windows ping RPi 2B
* 声明:
* 本文主要记录如何设置RPi 2B静态IP,并且通过windows来ping通RPi 2B。
*
* 2016-2-15 深圳 南山平山村 曾剑锋
************************************************************************/ 参考文章:
<raspberry pi> raspberry pi 设置wlan 静态ip
http://www.cnblogs.com/keygle/archive/2013/04/27/3048273.html 一、windows ip setting:

    windows ping RPi 2B

二、cat /etc/network/interfaces
# 本人在ubuntu中修改RPi 2B文件系统中的/etc/network/interfaces
......
#iface eth0 inet manual
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.0.5
netmask 255.255.255.0
gateway 192.168.0.1
...... 三、ping 192.168.0.5 > pingdata.txt
Pinging 192.168.0.5 with bytes of data:
Reply from 192.168.0.5: bytes= time<1ms TTL=
Reply from 192.168.0.5: bytes= time<1ms TTL=
Reply from 192.168.0.5: bytes= time=1ms TTL=
Reply from 192.168.0.5: bytes= time<1ms TTL= Ping statistics for 192.168.0.5:
Packets: Sent = , Received = , Lost = (% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 1ms, Average = 0ms

windows ping RPi 2B的更多相关文章

  1. windows ssh RPi 2B

    /************************************************************************* * windows ssh RPi 2B * 声明 ...

  2. windows 远程桌面连接 RPi 2B

    /************************************************************************* * windows 远程桌面连接 RPi 2B * ...

  3. RPi 2B USB 远程桌面

    /******************************************************************** * RPi 2B USB 远程桌面 * 说明: * 用作废的 ...

  4. Android telnet RPi 2B

    /************************************************************************* * Android telnet RPi 2B * ...

  5. RPi 2B Android telnet ssh

    /*********************************************************************** * RPi 2B Android telnet ssh ...

  6. RPi 2B Documentation

    /********************************************************************** * RPi 2B Documentation * 声明: ...

  7. RPi 2B Raspbian SD卡内部架构

    /***************************************************************************** * RPi 2B Raspbian SD卡 ...

  8. RPi 2B Raspbian system install

    /***************************************************************************** * RPi 2B Raspbian系统安装 ...

  9. RPi 2B SD read-only filesytem

    /**************************************************************************** * RPi 2B SD read-only ...

随机推荐

  1. eclipse js 报错解决办法

    最近项目中的js一直红叉叉,本人本来就是那种看见回收站有东西想清理的那种强迫症患者, 所以对于这种红叉叉更是心烦.这个我已经忍了好久了.今天 见这哥们犀利的解决了这个eclipes的bug.很是激动, ...

  2. 关于 Python Iterator 协议的一点思考

    转:http://www.jianshu.com/p/dcf83643deeb Python 中有好几种容器或者序列类型:list tuple dict set str,对于这些类型中的内容,往往需要 ...

  3. IIS FTP文件服务器搭建步骤

    利用IIS搭建需要验证用户用的FTP服务器(当然也可以不用验证,为了安全,添加验证) 1.C盘下创建文件夹,iftppub 2.打开关闭Windows功能,Internet信息服务全选,操作完后,重启 ...

  4. 新环境配置与使用Vim指南

    1.下载源码 git clone git@github.com:vim/vim.git 2.编译 1.安装依赖软件 sudo apt-get install libncurses5-dev libgn ...

  5. HDU-2262 Where is the canteen 概率DP&comma;高斯消元

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2262 题意:LL在一个迷宫里面转,每次走向周围能走的点的概率都是一样的,现在LL要随机的走到cante ...

  6. akka构建简单分布式应用

    http://www.cnblogs.com/hequn/articles/3764630.html 当程序的要求达到一台计算机的极限时,我们便需要将程序分布式化,让程序运行在多台计算机上.akka提 ...

  7. 【PHP伪静态】时获取不规则的URL参数

    $url = explode('/', '/article/category-5/status-2/page-3'); $params = array(); foreach ($url as $v) ...

  8. 使用命令行生成jar包

    测试用类 public class Hello { public static void main(String[] args) { System.out.println("hello wo ...

  9. 5&period;Qt自定义Button按钮的实现

     1.编写自定义按钮 MyButton.h #ifndef MYBUTTON_H #define MYBUTTON_H #include <QWidget> /** * @brief ...

  10. laravel5&period;7 前后端分离开发 实现基于API请求的token认证

    最近在学习前后端分离开发,发现 在laravel中实现前后台分离是无法无法使用 CSRF Token 认证的.因为 web 请求的用户认证是通过Session和客户端Cookie的实现的,而前后端分离 ...