/***********************************************************************
* RPi 2B Android telnet ssh
* 说明:
* 由于我自己的树莓派没有显示屏,现在我自己又没有了电脑,很纠结的就是
* 我无法使用这玩意了,我也确实近2个月没碰过它,于是想到使用Android手机来
* 控制它,telnet、ssh也就成了可能。
*
* 2016-5-12 深圳 南山平山村 曾剑锋
**********************************************************************/ 一、参考文章:
. android手机ssh客户端
http://www.amznz.com/android-ssh-tool/
. connectbot
https://code.google.com/archive/p/connectbot/downloads
. Terminal Emulator for Android
https://play.google.com/store/apps/details?id=jackpal.androidterm 二、telnet:
. application: Terminal Emulator;
. 在里面使用busybox telnet命令来远程到树莓派。 三、ssh:
. application: connectbot;
. 使用其本身功能ssh连接到树莓派。

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

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

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

  2. Android telnet RPi 2B

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

  3. windows ssh RPi 2B

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

  4. Android手机SSH Client客户端推荐JuiceSSH

    Windows上建立ssh服务器 参见: http://www.cnblogs.com/xred/archive/2012/04/21/2461627.html Android手机SSH Client ...

  5. RPi 2B USB 远程桌面

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

  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. HDU2295 Radar (DLX)

    下面的代码99%参考了这个网站http://www.cnblogs.com/183zyz/archive/2011/08/07/2130193.html 人生的第一道DLX肯定是需要作一些参考的啦. ...

  2. Javascript nextElementSibling和nextSibling

    function next(ele) { if (typeof ele.nextElementSibling == 'object') { return ele.nextElementSibling; ...

  3. hdu 4061 A Card Game

    思路: 分析:假设取的牌顺序是一个序列,那么这种序列在末尾为1时是和取牌序列一一对应的,且是符合“游戏结束时牌恰好被取完”的一种情况. 简证:1.在序列中,任一数 i 的后一个数 j 是必然要放在第 ...

  4. poj 3613(经过N条边的最短路)

    题目链接:http://poj.org/problem?id=3613 思路:我们知道如果矩阵A表示经过1条边的方案数,那么A^N矩阵就代表这经过N条边的方案数,而本题中要求经过N条边的最短距离,于是 ...

  5. poj 1724(有限制的最短路)

    题目链接:http://poj.org/problem?id=1724 思路: 有限制的最短路,或者说是二维状态吧,在求最短路的时候记录一下花费即可.一开始用SPFA写的,900MS险过啊,然后改成D ...

  6. 模拟登陆115网盘(MFC版)

    [cpp] view plain copy // 模拟登陆115网盘 #include <afxinet.h> // 包含相关的头文件 /* 用抓包工具抓包可得到需要提交的数据,然后模拟提 ...

  7. 285. Inorder Successor in BST

    题目: Given a binary search tree and a node in it, find the in-order successor of that node in the BST ...

  8. SSIS ->> Parameter

    参数只能外部调用 参数分项目级别的参数和包级别的参数.项目级别的参数可见范围是所有包,而包级别的参数可见范围仅限于该包内. Sensitive选项是加密数据值,这样在Integration Servi ...

  9. 配置VNCserver

    翻译:yunqing原作者:Thomas Chung出处:http://fedoranews.org/tchung/vnc/ 声明: 版权属原作者Thomas Chung所有,转载请注明出处. 再说一 ...

  10. linux怎么运行.SH文件

    执行sh xx.sh命令就可以执行.sh文件了.如果直接执行xx.sh文件,就报权限错误 解决办法:执行chmod u+x xx.sh 来添加执行权限