Qt remote coding issue
-
-
I'm working on an embedded system debugging:
-
I mounted the code directory (remote embedded device) to my host.
-
After writting the code, the Qt does not allows me to save the code.
-
Propositions please
@said_oslo said in Qt remote coding issue:
Propositions please
How did you mount? Maybe it is mounted read-only?
"Qt does not allows me to save the code" - has nothing to do with Qt, Qt is C++ framework.
-
-
Hi @jsulm
This the command used:sudo sshfs -o allow_other,defer_permissions,IdentityFile=~/.ssh/id_rsa user@10.0.12.10:/home/user/code_dir ~/Desktop/remote_dir
@said_oslo said in Qt remote coding issue:
~/Desktop/remote_dir
Can you write in this folder? Like creating folders or editing files (with an editor not QtCreator)?
How are access rights set on /home/user/code_dir and ~/Desktop/remote_dir? -
Hi @jsulm
This the command used:sudo sshfs -o allow_other,defer_permissions,IdentityFile=~/.ssh/id_rsa user@10.0.12.10:/home/user/code_dir ~/Desktop/remote_dir
@said_oslo
The error message says nothing about "permissions", it says "Function not implemented". Which sounds like you cannot access some remote path directly.What happens if you try
echo hello > /Users/said/Desktop/doorbell_x15/RtmpBroadcaster-master/RtmpBroadcaster.pro
? (Take a backup copy of the
.pro
file first!)How does that path relate to the
/home/user/code_dir ~/Desktop/remote_dir
you pass in yoursshfs
command line? -
@said_oslo said in Qt remote coding issue:
~/Desktop/remote_dir
Can you write in this folder? Like creating folders or editing files (with an editor not QtCreator)?
How are access rights set on /home/user/code_dir and ~/Desktop/remote_dir?