website/content/blog/wormhole.md

29 lines
829 B
Markdown
Raw Normal View History

2020-01-16 02:51:49 +00:00
---
2023-01-18 16:50:40 +00:00
title: "Wormhole: Easiest way to transfer files between two linux machines"
2020-01-16 02:51:49 +00:00
date: 2019-11-20T21:21:23-05:00
draft: false
2022-01-02 19:24:29 +00:00
tags: [ "Linux" ]
2023-01-05 19:04:45 +00:00
medium_enabled: true
2020-01-16 02:51:49 +00:00
---
2022-12-18 04:48:56 +00:00
A dead simple way to send files between two Linux machines not on the same network is to use a utility called [Magic Wormhole](https://github.com/warner/magic-wormhole). It is typically included in the standard repositories and is so simple the this blog post is going to end soon.
2020-01-16 02:51:49 +00:00
**Send a file:**
```bash
wormhole send filename
```
This will generate a code for you to share like `6-speculate-allow`
**Receive a file:**
```bash
wormhole receive 6-speculate-allow
```
Done.
2020-06-27 03:24:24 +00:00
You can also rest in the fact that your data is secured by a [Password-Authenticated Key Agreement (PAKE)](https://en.wikipedia.org/wiki/Password-authenticated_key_agreement).