Install ssh server on embedded device

依然范特西╮ 提交于 2019-12-06 07:04:19

You need to cross compile OpenSSH for your embedded device,Follow below steps

  1. Download OpenSSH from http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.6p1.tar.gz
  2. extract it and cross-compile it using toolchain

    ./configure --host="board architecture"

    make

  3. Copy sshd from compiled source and download it in your embedded device and run it

    /path/sshd

  4. Try to connect with your embedded device

This may come a bit late, but may be useful for someone, but for a embedded device you may want also to consider:

As far as I know all of them should work on ARM, you will probably have to cross compile as Rahul R Dhobi said.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!