website/content/blog/wormhole.md

29 lines
829 B
Markdown
Raw Permalink Normal View History

2020-01-15 21:51:49 -05:00
---
2023-01-18 11:50:40 -05:00
title: "Wormhole: Easiest way to transfer files between two linux machines"
2020-01-15 21:51:49 -05:00
date: 2019-11-20T21:21:23-05:00
draft: false
2022-01-02 14:24:29 -05:00
tags: [ "Linux" ]
2023-01-05 14:04:45 -05:00
medium_enabled: true
2020-01-15 21:51:49 -05:00
---
2022-12-17 23:48:56 -05: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-15 21:51:49 -05: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-26 23:24:24 -04: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).