Quote:
Originally Posted by Dirk-71
Ok thanks, I would prefer FTP. SSH ist not an adequate replacement for my needs.
|
You could try enabling FTP on your Kobo and then connecting after creating the password using SSH. I haven't used FTP on a Kobo in quite a while but the NickelMenu options I used were:
Code:
menu_item :main :FTP (status) :cmd_output :500:quiet: /usr/bin/pgrep -f "^/usr/bin/tcpsvd -E 0.0.0.0 1021"
chain_success :dbg_toast :FTP active on port 1021
chain_failure :dbg_toast :FTP inactive on port 1021
Code:
menu_item :main :FTP (toggle) :cmd_output :500:quiet: /usr/bin/pgrep -f "^/usr/bin/tcpsvd -E 0.0.0.0 1021"
chain_success:skip:4
chain_failure :cmd_spawn :quiet :exec /usr/bin/tcpsvd -E 0.0.0.0 1021 /usr/sbin/ftpd -w -t 30 /mnt/onboard
chain_success :dbg_toast :Started FTP server for KOBOeReader partition on port 1021
chain_failure :dbg_toast :Error starting FTP server on port 1021
chain_always:skip:-1
chain_success :cmd_spawn :quiet :/usr/bin/pkill -f "^/usr/bin/tcpsvd -E 0.0.0.0 1021"
chain_always :dbg_toast :Stopped FTP server on port 1021