-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
have plans to make this lib work on Flutter Windows #3
Comments
This package currently doesn't support desktop operating systems. I haven't used Windows much for quite a while now, but can you use the Linux subsystem to call ssh directly using Process.run? |
Opa amigo, estou com uma situação parecida, estou cria um app desktop com flutter onde preciso uma SSH FLUTTER, só que no desktop estar dando erro. o pacote é este ( https://pub.dev/packages/ssh2 ), o erro é este ( MissingPluginException(No implementation found for method listen on channel shell_sftp)). preciso resolver este problema e não sei como peço uma dica. |
@sandoval-san eu fiz um um pacote que implementa os protocolos SSH/SCP/SFTP para usar com o Flutter desktop em cima da libssh, irei publicar no pub.dev |
@insinfo I'd be very interested to see your Flutter package when it's ready. Using libssh directly through FFI is a much better solution that I've looked at some, but haven't had the time to get to yet. Let us know if we can help with development and testing efforts. |
I just published libssh_binding I haven't had a lot of time to document and write tests, but it's working fine for me in production, I use it for a server backup application called "fsbackup" which I'm also writing will be open source, in my internal testing i'm getting the same performance if not better than native scp, i'll be glad to get any help with documentation or improvements. https://pub.dev/packages/libssh_binding |
I'm currently developing an App Flutter for windows, where I need to send commands to a linux server via SSH, this commands will make the server mount a network share and copy backup files to this share, I'm trying to do this with this SSH lib https://github.com/TerminalStudio/dartssh
I currently have this code:
but it doesn't seem quite right
The text was updated successfully, but these errors were encountered: