Last active
April 30, 2018 20:36
-
-
Save rupurt/87598ac8e179f4bd479c2873d5f386f9 to your computer and use it in GitHub Desktop.
Host & Connect to tmux session
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hoster | |
# Serveo | |
ssh -R 1500:localhost:22 serveo.net | |
# ngrok | |
ngrok tcp 22 | |
# tmux | |
tmux -S /tmp/pair | |
chmod 777 /tmp/pair | |
# Attendee | |
# Serveo | |
ssh -p 1500 pairing@[AssignedIPOrHostname] | |
# ngrok | |
ssh -p 19918 [email protected] | |
# tmux | |
tmux -S /tmp/pair attach -t pairing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment