-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from tomeshnet/develop
Release 0.3
- Loading branch information
Showing
3 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
|
||
This installs a statically linked copy of tmate. | ||
|
||
To use | ||
To use: | ||
|
||
- Make sure your connected to the internet | ||
- run tmate | ||
- on the yellow bar note the hash ie: `ssh [email protected]` | ||
- tell your remote party the website to visit ie: `https://tmate.io/t/kukBdPDnaYObQmyFxMyBzSp3o` | ||
- Make sure you are connected to the internet | ||
- Run `tmate` | ||
- On the yellow bar note the hash before `@` symbol, e.g. `ssh [email protected]` | ||
- Tell your remote party the website to visit, e.g. `https://tmate.io/t/kukBdPDnaYObQmyFxMyBzSp3o` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
#!/bin/sh | ||
|
||
wget https://github.com/tmate-io/tmate/releases/download/2.2.1/tmate-2.2.1-static-linux-armv7l.tar.gz | ||
tar xvfz tmate-2.2.1-static-linux-armv7l.tar.gz | ||
sudo mv tmate-2.2.1-static-linux-armv7l/tmate /usr/local/bin | ||
rm -rf tmate-2.2.1-static-linux-armv7l | ||
ssh-keygen | ||
tar xvfz tmate-2.2.1-static-linux-armv7l.tar.gz -C /tmp | ||
sudo mv /tmp/tmate-2.2.1-static-linux-armv7l/tmate /usr/local/bin | ||
rm -rf /tmp/tmate-2.2.1-static-linux-armv7l | ||
|
||
# Generate RSA key pair for tmate SSH session | ||
ssh-keygen -t rsa -f ~/.ssh/id_rsa -N '' |