Missing tmux info

The tmux part was lost when adapting this project to Vagrant. I think it's interesting, and it is still referenced in other parts of the documentation.
pull/634/head
Jorge Martí 2019-12-06 20:08:19 +01:00 committed by GitHub
parent 8d3311a507
commit 0e67d003d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 1 deletions

View File

@ -27,3 +27,15 @@ Download and Install [Vagrant](https://www.vagrantup.com/) on your platform.
- Linux
- macOS
- Arch Linux
## Running Commands in Parallel with tmux
[tmux](https://github.com/tmux/tmux/wiki) can be used to run commands on multiple compute instances at the same time. Labs in this tutorial may require running the same commands across multiple compute instances, in those cases consider using tmux and splitting a window into multiple panes with synchronize-panes enabled to speed up the provisioning process.
> The use of tmux is optional and not required to complete this tutorial.
![tmux screenshot](images/tmux-screenshot.png)
> Enable synchronize-panes by pressing `ctrl+b` followed by `shift+:`. Next type `set synchronize-panes on` at the prompt. To disable synchronization: `set synchronize-panes off`.
Next: [Installing the Client Tools](02-client-tools.md)