Reputation:
so here's the question.. I'm developing a embedded linux program using qt 4.7.. I was able to cross compile and run withou success, but i'm trying to run thru my pc Qt (with remotely deploy) I was able to initialize and connect with ssh and i get "test successfull" when i make it with qt option. I searched that i needed to include the target path in the project to solve "Cannot run: no command given"
The problem is, when i add:
target.files = EmbeddedSystem
target.path = /home/plg
INSTALLS += target
to the .pro, i get the error "error: SFTP initialization failed: The SFTP server finished unexpectedly with exit code 127."
Btw, i'm using mini6410.. Thanks!!
Upvotes: 0
Views: 1710
Reputation: 2211
This error might comes from your ssh
server/client on your embedded device.
Running the connexion test successfully doesn't mean that you can transfer files using SFTP.
If you are using OpenSSH
then it is ok but Dropbear
(for example) is a lightweight server/client that supports ssh
but not SFTP.
Upvotes: 2