Thread: iLiad Semi-Standalone sshd?
View Single Post
Old 10-20-2007, 11:57 PM   #2
jharker
Developer
jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.jharker could sell banana peel slippers to a Deveel.
 
Posts: 345
Karma: 3473
Join Date: Apr 2007
Location: Brooklyn, NY, USA
Device: iRex iLiad v1, Blackberry Tour, Kindle DX, iPad.
Umm... maybe I don't understand what you're asking... if you want to run an ssh server on the iLiad, so you can log on to the iLiad through a terminal, then you just need the "unbrickable" package, which is available in this thread.

The "unbrickable" package installs dropbear, and runs dropbear and wired dhcp networking at iLiad boot time, so you can ssh or sftp to the iLiad easily. Modifying this to simply install dropbear without running at boot time would not be too hard...

Then you can make a few simple scripts to manually turn on/off networking and dropbear... Mine look something like this:

startDropbear.sh
Code:
#!/bin/sh
/etc/init.d/dropbear start
stopDropbear.sh
Code:
#!/bin/sh
/etc/init.d/dropbear stop
startlan.sh
Code:
#!/bin/sh
ifup eth0
and so on...
jharker is offline   Reply With Quote