Moving `Screen` section
Opened this issue · 5 comments
What do folks think about folding the Screen
section in to the Interactive Jobs
section? I might be wrong, but isn't the interactive job user the one that wants to know about screen
? In my opinion, it feels a little odd to me that we have screen
in the software section; it's certainly software, but it feels a bit more like a utility than, for example, Python or R.
Also, I think we want to think about the fast-growing size of our table of contents; I think we can get ourselves some back some real estate by combining sections.
What do others think?
I agree that may be a better section. There could also be a "Tips" section
Also add tmux
This will move to the "common linux commands" section, which @prasadbandarkar is finishing up
Content to be added, once page outline has been finalized:
- Start a new session:
tmux
- Start a new named session:
tmux new -s name
- List existing sessions:
tmux ls
- Attach to the most recently used session:
tmux attach
- Detach from the current session (inside a tmux session):
Ctrl-B d
- Create a new window (inside a tmux session):
Ctrl-B c
- Switch between sessions and windows (inside a tmux session):
Ctrl-B w
- Kill a session by name:
tmux kill-session -t name