in ,

A Quick and Easy Guide to tmux, Hacker News

A Quick and Easy Guide to tmux, Hacker News


  

I love working with the command line. Seriously, I think there’s hardly any more productive and more versatile tool for a software developer than the terminal. Maybe it’s the hacker / wizard / neckbeard kind of feeling I get when using a terminal, I don’t know.

At work we dolotsof pair programming. Everyone’s got their own laptop and can set it up the way they like. And since I love working with the command line I’ve spent quite some time doing (only sane! I swear!) Modifications to my terminal environment that make working with the command line more pleasant and streamlined. This is why my pair usually will be greeted by something like this:

tmux in action

If they’ve worked with me before they know what they are up to. But every once in a while there will be a new team member who doesn’t know my environment. Usually this is the point where they will ask something like “WTF am I looking at?” And it’s my time to shine!

Because what they’re looking at is nothing less than the best thing since sliced ​​bread. It’stmux, a so-calledterminal multiplexer. Simply speaking, tmux acts as a window manager within your terminal1and allows you to create multiple windows and panes within a single terminal window.

I’ll proceed to give them a two minute tour about what you can do with tmux. After that they’re either hooked and want to try it themselves or they tell me to go away with my ancient neckbeard tools and just use iTerm2. In the former case I’ll usually end up helping them installing tmux on their machine and will give them a 10 minute guide to learn the most important basics.

This post will give you the same two minute introduction about tmux and its possibilities, followed by the typical 10 minute hands-on guide to set up and get to know tmux yourself. If you’ve got 10 minutes to spare and finally want to be more proficient with tmux: read on!

What’s tmux?

tmux’s authors describe it as aterminal multiplexer. Behind this fancy term hides a simple concept: Within one terminal window you can open multiple windows and split-views (called“panes”in tmux lingo). Each pane will contain its own, independently running terminal instance. This allows you to have multiple terminal commands and applications running visually next to each other without the need to open multiple terminal emulator windows.

On top of that tmux keeps these windows and panes in a session. You can exit a session at any point. This is called“detaching”. tmux will keep this session alive until you kill the tmux server (eg when you reboot)2. This is incredibly useful because at any later point in time you can pick that session up exactly from where you left it by simply“attaching”to that session.

If you’ve ever worked with remote servers or a Raspberry Pi over ssh you can guess where this will be useful: When you lose your ssh connection the tmux session will simply be detached but will keep running on the server in the background including all the processes that run within your session. To continue your session simply ssh to the server again and attach to the running session.

But tmux is not only helpful when working on a remote machine. Not only for its window management features but also for the session handling. Personally I find myself detaching from sessions when I’m switching context. I’ll just start a new session for my new task and attach to the old session whenever I want to continue with my old task.

You see that tmux basically offers two big features: Window management in your terminal and session management. If you are familiar withGNU Screenthis is nothing new. Think of tmux as an easier-to-use and a little more powerful alternative to Screen (obviously I’m being opinionated here).

Enough with the talking already. Let’s get our hands ready in the hands-on guide!

Getting Started

This hands-on guide will get you up and running with tmux pretty quickly. It will only cover the basic features which should be more than enough to get started and be productive with tmux. Simply open your terminal and follow the instructions.

Installation

Fortunately installing tmux is pretty straightforward on most distributions a simplesudo apt-get install tmux(Ubuntu and derivatives) or (brew install tmux(Mac) should be sufficient.

Starting Your First Session

For your first session simply start tmux with a new session:

This will create a new tmux session with a nice all-green status bar at the bottom:

vanilla tmux on startup

The status bar is an important part of tmux. Apart from the currently opened windows (on the left) it also shows some system information like date and time (on the right). The status bar can also be customized and I’ve seen some really fancy stuff around (upcoming calendar events, battery status, to name a few) but this is something we’ll leave for later.

Splitting Panes

Now that we’ve created our first session we can get a feeling for panes. When you create a new session, tmux will by default start with one window and a single panel inside. We want a nice split-screen, so let’s split this bad boy.

All commands in tmux are triggered by aprefix keyfollowed by acommand key(quite similar to emacs). By default, tmux usesCbas prefix key. This notation might read a little weird if you’re not used to it. In this emacs notationC -means “press and hold theCtrlkey ”(3). ThusCbsimply means press theCtrlandbkeys at the same time.

The shortcut to split panes into a left and a right pane isCb%. Remembering what I’ve just told you about tmux’s sequence ofprefixandcommand keythis means to split your single pane into a left and a right pane you pressCtrlandbat the same time, release both, and then type the%key. Voilà! You’ve just invoked your first tmux command and split your pane in two.

tmux with two split panes

Where there’s a split into left and right, there’s also a split into top and bottom pane. To split a pane into top and bottom panes use theCb "shortcut.

Right now we’re trapped in the newly created pane. But we really really want to go back to the left one. Easy peasy: Switching to a different pane uses theCbshortcut, whereis the arrow key pointing to the pane you want to switch to. In our case we want to switch to the panel on the left so it’sCb leftfor us. Just once more, so that we fully understand this: This means you pressCtrlandb(your prefix) followed by theleftarrow key to get to the pane on the left.

You can now go ahead and split each of your new panels even further. Feel free to experiment and split your panes like a maniac to get a feeling for it.

Closing Panes

Closing a pane is as simple as closing a regular terminal session. Either typeexitor hitCtrl-dand it’s gone.

Creating Windows

Windows in tmux can be compared to creating new virtual desktops; if you’ve ever worked with one of the major Linux deskop environments (KDE, Gnome) you’ll hopefully find this analogy helpful.

Creating new windows is as easy as typingCb c(one last time: that’sCtrlandbat once, thenc). The new window will then be presented to you in tmux’s status bar.

tmux with two windows

You can now divide the pane in your new window as you like. Or don’t. That’s up to you.

To switch to thepreviouswindow (according to the order in your status bar) useCb p, to switch to thenextwindow useCb n. If you’ve created many windows you might find it useful to go to a window directly by typing its number (the status bar will tell you which window has which number), just useCbwhereis the number in front of the window’s name in your status bar.

Session Handling

If you’re done with your session you can either get rid of it by simply exiting all the panes inside or you can keep the session in the background for later reuse.

To detach your current session useCb d. You can also useCb Dto have tmux give you a choice which of your sessions you want to detach. This will detach your session but will leave you’re doing in that session running in the background.

Now that your session is detached you can pick it up from where you left it at any later point in time. To re-attach to a session you need to figure out which session you want to attach to first. Figure out which sessions are running by using

This will give you a list of all running sessions, which in our example should be something like

  

0: 2 windows (created Sat Aug 15 17: (***********************************************************************: 34 2015) [199×44] (detached)

To connect to that session you start tmux again but this time tell it which session to attach to:

Note that the- t 0is the parameter that tells tmux which session to attach to. “0” is the first part of yourtmux lsoutput.

If you prefer to give your sessions a more meaningful name (instead of a numerical one starting with 0) you can create your next session using

This will create a new session with the name “database”.

You could also rename your existing session:

tmux rename-session -t 0 database

The next time you attach to that session you simply usetmux attach -t database. If you’re using multiple sessions at once this can become an essential feature.

And that’s it! Congratulations, you’ve just completed your first tmux session and got your hands dirty with its window and session management. Yes, there’s more stuff tmux can do. But what you’ve just learned should be everything to start using tmux in the future.

Why tmux?

A response that I get quite often is: “Great, I get it. But why should I use tmux and its weird key combinations instead of just using iTerm2? ”

And you’re right, when it’s only basic window management,iTermfor Mac supports tabs and panes as well. For Linux there’s Terminator. So why would anyone feel the urge to learn some archaic technology in this day and age?

But you’re missing out. There are a couple of reasons why I favor tmux over iTerm et al .:

  • session handling: detaching from and attaching to sessions helps me with context switching and remote working
  •   

  • platform independence: I can use tmux on my Macbook, my Linux notebook, Cloud servers, Raspberry Pis, BeagleBones, etc.
  •   

  • customizable: there are many ways I can customize the look and behavior of my tmux environment. And I can sync this across different platforms using a simple dotfile
  •   

  • street credibility: you don’t want others to call you a lamer, do you? : P

Moving on

If you’re curious now to learn what else tmux can do that’s a great thing. And luckily most of the stuff is quite simple to discover. Just typeCb?to see a list of all available commands and start experimenting.

Some of the commands that I’m using myself quite often are:

  • Cb z: make a pane go full screen. HitCb zagain to shrink it back to its previous size
  •   

  • Cb C -: Resize pane in direction of4) **********
  •   

  • Cb,: Rename the current window

On top of that there are plenty of resources out there that help you getting further with tmux. People like me are blogging about their tmux experience and share what they’ve discovered. You can find people sharing their tmux configurations in their dotfiles repos on Github. There’s even abook by Brian Hogandedicated to tmux.

For now it’s best to discover some stuff on your own. Experiment, fool around and maybe try to use tmux in your daily work. It takes a while to get used to and you’ll probably feel slow in the very beginning. I can only encourage you to keep using it. Get a feeling for its functionality and in no time you’ll find out that your work with the terminal will be pure bliss and insanely fast.

If you’re interested in customizing your tmux experience I recommend that you read myGuide to Customizing your tmux.conf.


(Footnotes) ****************************

Brave Browser
Read More
Payeer

What do you think?

Leave a Reply

Your email address will not be published. Required fields are marked *

GIPHY App Key not set. Please check settings

Working at Ribbon, Hacker News

Working at Ribbon, Hacker News

AB 5 ballot measure: Uber and Lyft are asking voters for an exemption, Recode

AB 5 ballot measure: Uber and Lyft are asking voters for an exemption, Recode