-
-
Notifications
You must be signed in to change notification settings - Fork 381
Discussion of multiplexing terminals with tmux #249
Conversation
|
||
#### Basic usage | ||
|
||
To start tmux we just execute its binary: ```$ tmux```, that will create a new |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A single backtick is sufficient for inline code.
On Thu, Jan 23, 2014 at 11:02:52AM -0800, David Rio Deiros wrote:
I love terminal multiplexers, but I have a hard time imagining a boot
|
the difficulties of controlling all the multiple processes (and its | ||
input/output) you may be running concurrently. | ||
|
||
[Tmux](http://tmux.sourceforge.net/) can help with that. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make this statement more general?
Terminal multiplixer, like Tmux, can help with that.
Thanks for the feedback. I will work on these and get back to you with an updated pull request. |
My feeling is that this belongs in supplementary material, but I'll leave it up to the people wrangling the intermediate shell stuff to decide. |
Please redirect to intermediate/shell/tmux.md. |
Thanks for the comments and suggestions, I have taken care of them. This should be ready to merge. |
On Thu, Feb 20, 2014 at 07:16:22AM -0800, David Rio Deiros wrote:
@jiffyclub's “single backtick is sufficient for inline code” meant -By default that is: Block code should use triple tildes (see #201 and #194): $ tmux ls
0: 8 windows (created Wed Dec 4 10:00:35 2013) [178x49] I'd also avoid prompts in the inline code:
|
Thanks at @wking. Let me know if you see anything else otherwise this is good to go. |
On Sat, Mar 29, 2014 at 10:02:58AM -0700, David Rio Deiros wrote:
There's still a:
that should be: $ tmux attach |
Ok, fixed. |
On Sat, Mar 29, 2014 at 12:15:04PM -0700, David Rio Deiros wrote:
As of ffa1425 there's still a trailing backtick after attach. |
Fixed. |
Getting closer :).
|
On 2014-03-29 10:42 PM, W. Trevor King wrote:
|
On Sun, Mar 30, 2014 at 04:24:04AM -0700, Greg Wilson wrote:
I think that's trademarked 1, and doesn't apply to Linux (and some The Open Group requests that UNIX is always used as an adjective |
@drio When I run
at the begin of the file it build properly. (Maybe this only happens with my current version of Jekyll, 1.4.3.) What about using |
so, we use the `-s` option: `tmux new -s first` where `first` is | ||
the name of the session. | ||
|
||
To communicate with tmux, we use a shortcuts prefixed with a key combination. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Later you use PREFIX key
and you can make here a little clear what it means. What about:
To communicate with tmux, we use a shortcut prefixed with a key combination, e.g. PREFIX c
that means press the prefixed followed by the c
key. By default PREFIX
is Ctrl-b
.
While it adds a layer of explanatory complexity, I tend to use byobu, which is simple to set up and comes well-configured for cloud computing work out of the box. Might you add a link to that? |
More informations about byobu: http://byobu.co/ |
Thanks for the surprisingly polite request to post more. I see you've got a link to byobu now, but the ubuntu page provides a little more of a rationale: https://help.ubuntu.com/14.04/serverguide/byobu.html It starts, "One of the most useful applications for any system administrator is screen. It allows the execution of multiple shells in one terminal. To make some of the advanced screen features more user friendly, and provide some useful information about the system, the byobu package was created." In particular, it can use screen or tmux as a backend, and currently uses tmux by default. |
Intended for intermediate lessons.