127
Can you please ELI5 tmux?
(lemmy.ml)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
To understand why you might want to use tmux try the following:
You will have lost your progress, next we can repeat but this time using tmux so you don't lose your session:
tmux
tmux a
to re-attach to the existing sessionNote that this time none of your progress is lost.
Aside from enabling you to have a persistent session, tmux also allows you to have multiple terminal panes open so you can do more than one thing at a time in the window, to see what I mean try this:
tmux
top
to begin listing processesctrl b
then%
to make a new split panels
or other terminal commandsYou will see that you can use more than one panel to do things. This can be useful for example if you want to watch run tests and also run other commands.
All of this is way more useful when all you have to work with is a tty or an ssh session. No X? No problem.