/*************************************************************************
* Android telnet RPi 2B
* 说明:
* 本文记录RPi 2B如何使用安装telnet服务,Android如何通过busybox telnet
* 进入RPi 2B系统,RPi 2B系统默认不带telnet服务,所以需要先ssh进入系统安装
* 相关服务,本人通过WIFI将Android手机、笔记本、RPI 2B组合在一个局域网内,
* 同时通过笔记本网卡与RPI 2B网卡连接进行初期网络配置,在前面已经有记录,
* 这里不再阐述。
*
* 2016-5-14 深圳 南山平山村 曾剑锋
************************************************************************/ 一、参考文章:
如何使用telnet命令登录树莓派?
http://tieba.baidu.com/p/4517066851 二、安装流程:
. sudo apt-get install openbsd-inetd
. sudo apt-get install telnetd
. sudo /etc/init.d/openbsd-inetd restart 三、测试现象:
u0_a85@dior:/ $ busybox telnet 192.168.1.106 Entering character mode
Escape character is '^]'. Raspbian GNU/Linux
raspberrypi login: pi
Password:
Last login: Sat May :: UTC from 192.168.1.101 on pts/
Linux raspberrypi 4.1.-v7+ # SMP PREEMPT Fri Nov :: GMT armv7l The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
pi@raspberrypi:~ $ ls
Desktop Music python_games
Documents Pictures Templates
Downloads Public Videos
pi@raspberrypi:~ $

Android telnet RPi 2B的更多相关文章

  1. RPi 2B Android telnet ssh

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

  2. RPi 2B USB 远程桌面

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

  3. RPi 2B Documentation

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

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

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

  5. RPi 2B Raspbian system install

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

  6. RPi 2B SD read-only filesytem

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

  7. RPi 2B 中文语言包

    /************************************************************************* * RPi 2B 中文语言包 * 声明: * 本文 ...

  8. RPi 2B apache2 mysql php5 and vsftp

    /************************************************************************* * RPi 2B apache2 mysql ph ...

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

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

随机推荐

  1. jstl 的应用 java

    JSTL :JSP Standard Tag Library,JSP标准标签库 1.导入包 jstl.jar standard.jar 2.页面中添加标识 <%@taglib uri=" ...

  2. 一、Android NDK编程预备之Java jni简介

    转自:  http://www.eoeandroid.com/thread-264384-1-1.html 游戏开发 视频教程 博客 淘帖     论坛›eoe·Android应用开发区›Androi ...

  3. mysql 连接数的最大数

    mysql默认最大连接数是100,增加加默认MYSQL连接数的方法有两个 方法一:进入MYSQL安装目录 打开MYSQL配置文件 my.ini(windows) 或 my.cnf(linux环境)查找 ...

  4. 李洪强iOS开发之【Objective-C】07-自定义构造方法和description方法

    知识回顾 在前面已经介绍了如何定义类和创建并初始化对象,比如有Student这个类 1.Student.h 1 #import <Foundation/Foundation.h> 2 3 ...

  5. ruby 学习 -- string --1

    # define french_string = "il \xc3\xa9tait une fois" long_string = <<EOF Here is a lo ...

  6. GDB调试方法精粹

    http://blog.chinaunix.net/uid-26922071-id-3756018.html 一.多线程调试 1. 多线程调试,最重要的几个命令: info threads       ...

  7. How a woman's glance can tell a man if she's interested

    How a woman's glance can tell a man if she's interested揭秘:女人是否喜欢你?看眼神就知道The female mind has always b ...

  8. SPRING IN ACTION 第4版笔记-第十章Hitting the database with spring and jdbc-002-本章的源代码

    0.结构 一.JDBC层 1. package spittr.db; import java.util.List; import spittr.domain.Spitter; /** * Reposi ...

  9. QQ群共享文件下载很慢解决办法

    QQ群共享文件下载很慢解决办法.我们经常会不群里面共享文件,文件文件稍大,下载非常慢.家庭是20M的网速,一般正常下载能够达到2.5MB左右,而在QQ群实际下载网速却只有80KB左右.如果要下1G,就 ...

  10. iOS 库文件制作

    一.静态库和动态库的介绍 一.什么是库? 库是共享程序代码的方式,一般分为静态库和动态库. 二.静态库与动态库的区别? 静态库:链接时完整地拷贝至可执行文件中,被多次使用就有多份冗余拷贝. 动态库:链 ...