Is there any way to use session multiplexing (Control Master) from windows?

439

Solution 1

I use PuTTY for this. The setting you're looking for is called "Share SSH connection if possible" under the "Connection->SSH" section. From other answers, it seems to be available from PuTTY 0.64 onward.

Solution 2

The pre-release of PuTTY 0.64 now has connection sharing support. Have not yet tried it myself. http://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/ssh2-generality.html

Solution 3

copssh claims to allow session multiplexing but it doesn't seem like it actually does. Maybe it means that it allows multiplexing on the client side.

You could also try running Linux virtualized through andLinux and writing directly to the file system through there.

Share:
439

Related videos on Youtube

Robson Fernandes
Author by

Robson Fernandes

Updated on September 17, 2022

Comments

  • Robson Fernandes
    Robson Fernandes over 1 year

    I'd like to know how to implement MFMailComposeViewController correctly using storyboards. When I implement it like a non-storyboard project (where it works fine), the Title Bar stays over the address field "To:"

    screenshot

    enter image description here

    Is there another way to do the same operation?

    • NULL
      NULL almost 11 years
      Could u give some detail information such as ur code for presenting the MFMailComposeViewController....
    • Robson Fernandes
      Robson Fernandes almost 11 years
      Inside view controller, I wrote this: MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init]; mailComposer.mailComposeDelegate = self; [self presentModalViewController:mailComposer animated:YES]; It works fine in an Non-Storyboard Project.