flutter_ssh icon indicating copy to clipboard operation
flutter_ssh copied to clipboard

Linux support

Open piecubed opened this issue 4 years ago • 4 comments

I'm running into this issue when I run this on linux.

[ERROR:flutter/lib/ui/ui_dart_state.cc(166)] Unhandled Exception: MissingPluginException(No implementation found for method connectToHost on channel ssh)

I'm guessing this is an issue with the plugin not being registered, so this might be an upstream error.

piecubed avatar Aug 01 '20 18:08 piecubed

This is because the author didn't write implementation for linux platform.

PegasisForever avatar Aug 08 '20 09:08 PegasisForever

Well can the author write an implementation?

piecubed avatar Aug 12 '20 01:08 piecubed

well he can, but I doubt he knows how, and I don't know how either.

If you need ssh on linux now, you can use Process to run command line ssh directly.

PegasisForever avatar Aug 12 '20 01:08 PegasisForever

well he can, but I doubt he knows how, and I don't know how either.

If you need ssh on linux now, you can use Process to run command line ssh directly.

Could you possibly elaborate a little more on using Process? Would it be in conjunction with this plugin? (Looking to figure out how to get a Flutter app to run some commands and get output via SSH)

Thank you!

W2NJL avatar Sep 05 '21 16:09 W2NJL