88
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
I suspect what they meant was copy and paste from the console and not a terminal.
I don't know how else somebody could do copy and paste at the console. And I don't necessarily know that tmux can do this (I still haven't graduated from 'screen'), but this interpretation makes the most sense.
If it can do this, presumably with just the keyboard, that's a pretty decent feature.
Yeah, doing it with the keyboard is key. I know some terminals have a way to do it, but it's so ingrained in my muscle memory that I struggle without it, and having something that works everywhere (including try) is nice.
I'm not familiar with the terminology. What's the distinction between a terminal and a console?
Tmux does let you copy from a shell to your system clipboard using the keyboard, which is nice. But many terminal emulators like mobaxterm on windows let you copy as well.
The console is the virtual terminal (VT) seen initially at boot before the desktop login starts up, or where you land if there is no desktop, and where the kernel spits its raw output. It could even be configured to be a physical serial port.
I'm using the term in a similar manner to describe the virtual terminals spawned at boot (typically 7 of them) and occupied either by a login prompt (getty) or the desktop session, and switchable with Alt-Left/Right or using the
chvt
command. These are analogous to the real terminals of old such as VT100 or even typewriters.This is in contrast to what we normally call a terminal like xterm or Konsole which runs in the GUI where it is resizable, zoomable, etc. The console, and virtual terminals, are pretty limited in the interactivity they have. For instance, there's no mouse interaction or copy-paste functionality, at least not without some exotic setup.