Linux: Difference between revisions

461 bytes added ,  5 November 2019
no edit summary
No edit summary
No edit summary
Line 66: Line 66:
==Environment Variables==
==Environment Variables==
[https://help.ubuntu.com/community/EnvironmentVariables Ubuntu Help Reference]
[https://help.ubuntu.com/community/EnvironmentVariables Ubuntu Help Reference]
==Tmux==
[https://tmuxcheatsheet.com/ Tmux cheat sheet]<br>
Tmux, or Terminal Multiplexer is an alternative to screen.<br>
Use it to keep terminals open and tasks running after you disconnect your SSH connection.<br>
Getting Started:
<syntaxhighlight lang="bash">
# Make a new window
tmux
# Make a new named window
tmux new -n my_window
# Detach from a window
ctrl + b, d
# List windows
tmux ls
# Attach to a window
tmux attach -t my_window
</syntaxhighlight>