brown-ccv/oscar-documentation

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:

  1. Start a new session:
    tmux
  2. Start a new named session:
    tmux new -s name
  3. List existing sessions:
    tmux ls
  4. Attach to the most recently used session:
    tmux attach
  5. Detach from the current session (inside a tmux session):
    Ctrl-B d
  6. Create a new window (inside a tmux session):
    Ctrl-B c
  7. Switch between sessions and windows (inside a tmux session):
    Ctrl-B w
  8. Kill a session by name:
    tmux kill-session -t name
eldu commented

This is dependent on the linux cheat sheet issue #32