Using Tmuxinator with Netkit-JH

Billy Bromell

Billy Bromell

Billy Bromell

Why is Tmuxinator Useful?#

With tmuxinator we can set up a 'project', so that when we are in a lab directory and we run tmuxinator start LABNAME, it will then run lstart for us, and open tmux panes and windows in a configuration we specify, which automatically connect to netkit machine tmux sessions when they are started.

Example:

$ tmuxinator start abr

Result:

Example banner

Installing#

On Ubuntu 20.04 you can install tmuxinator with:

$ sudo apt install tmuxinator
info

You will also need tmux installed - take a look at the guide for using tmux before using tmux!

Create a Tmuxinator 'Project'#

For this I think it makes sense to have a local project - this will make a file called .tmuxinator.yml in your current working directory, instead of adding the project to a collection in ~/.config/tmuxinator. If we do this in our lab directory, it means that if we share the lab or use source control such as git to track changes, the tmuxinator file will be there.

Let's create a local project:

$ cd abr
$ tmuxinator new --local abr # This can be named anything, but it makes sense to give it the same name as the netkit lab

This will open a template yaml file in your default editor. If you want to edit this again later you can use tmuxinator open --local abr.

We can then start tmuxinator with:

$ tmuxinator start abr

Assuming we didn't make any changes to the yaml file, this start a demo tmuxinator session, which isn't very useful.

Setting Up Windows#

We want tmuxinator to start the lab for us, so somewhere we'll need to run lstart. For example we could do this on the first window.

name: abr
root: . # Change root to our current directory, as this is where we will start the lab from
windows:
- lstart_window:
layout: even-vertical
panes:
- lstart --tmux-detached

With this simple config, you can start the lab by typing tmuxinator start abr. This will run lstart --tmux-detached in a window named lstart_window. It looks like the machines have started successfully, but it's not very useful as we can't see our machines. We want to add some panes to display the machines' tmux sessions.

We can add the following to the list of windows:

...
- ab_window:
layout: even-vertical
panes:
- vconnect -m a -r 20 -n 3
- vconnect -m b -r 20 -n 3
- r_window:
layout: even-vertical
panes:
- vconnect -m r -r 20 -n 3

This will add a window named 'ab_window', with two panes, one for machine a and one for b. It will also add a window named 'r_window' with one pane - for machine r.

It attempts to connect to the machines by running vconnect in the panes, with the options to retry every 3 seconds for up to 20 attempts. This means you can run tmuxinator start abr and not worry about vconnect failing because it tries to connect before lstart has managed to start the machines.

note

If you are using lots of machines, remember that some of them could end up much longer than a minute from when lstart is run to when they are created, meaning vconnect will fail. You can either increase the retry count and interval for vconnect, or you can use vconnect manually when the machine has started.

Let's try to start the lab now:

$ tmuxinator start abr

This should now start the lab, and if you cycle through the windows using leader then n, you'll see that there is a window for lstart (just a normal shell when lstart has finished running), a window with machines a and b, and a window with machine r.

The .tmuxinator.yml file as a whole now looks like this (with a few additions that I thought would be useful). You can use this as a template when creating tmuxinator labs.

# ./.tmuxinator.yml
#
name: abr
root: .
tmux_options: -f ~/.config/tmux/tmux.conf
on_project_stop: lcrash
windows:
- lstart_window:
layout: even-vertical
panes:
- lstart --tmux-detached
- ab_window:
layout: even-vertical
panes:
- vconnect -m a -r 20 -n 3
- vconnect -m b -r 20 -n 3
- r_window:
layout: even-vertical
panes:
- vconnect -m r -r 20 -n 3

Advanced#

Layouts#

There are 5 available layouts. Here are the descriptions from the tmux man pages:

even-horizontal
Panes are spread out evenly from left to right across the window.
even-vertical
Panes are spread evenly from top to bottom.
main-horizontal
A large (main) pane is shown at the top of the window and the remaining panes are
spread from left to right in the leftover space at the bottom. Use the
main-pane-height window option to specify the height of the top pane.
main-vertical
Similar to main-horizontal but the large pane is placed on the left and the others
spread from top to bottom along the right. See the main-pane-width window option.
tiled
Panes are spread out as evenly as possible over the window in both rows and columns.

To visualise this, there are some good diagrams and explanations here. You can additionally set the layout to something custom. The easiest way to make a custom layout is to start tmuxinator with one of the built in layouts, then manually resize and shuffle panes as you wish, then run tmux list-windows in that tmux session. You should then get a list of windows with their current layouts, which you can copy and use in your .tmuxinator.yml - as shown in this guide.

Changing the Startup Window and Pane#

By default, tmuxinator will attach you to the first pane of the first window. You can change that with

startup_window: ab_window
startup_pane: 1

This example would connect you to the pane for machine b when you run tmuxinator start abr.

Nesting Sessions#

You need to remember when you nest sessions, that the outer session will intercept key presses first, and process them before they are passed to the next inner layer. This means if you had the same leader key for an outer session and an inner session, you would have to hit the leader key twice in a row to send commands to the inner session. This can get very annoying, so it is recommended to use a different leader key for each layer of nesting. Using tmuxinator with netkit will give you at least two layers - as you have the main session - created with tmuxinator, which has panes that are attached to sessions which are created for the Netkit machines.

By default, the netkit machine sessions will use a leader key of ctrl + d. If you use the same leader key in your tmux config, this will conflict and it is recommended to change it! If you haven't changed your tmux config , the leader key will be ctrl + b - so you don't need to worry about this.

In theory you can nest multiple layers of sessions - for example here I have a tmux session on my host, with a pane SSHd into an Ubuntu VM, which has a tmux session started by tmuxinator. The tmuxinator session is attached to netkit machine sessions, and one of the netkit machines (a) has its own tmux session open. In general it's recommended to keep it simple, especially if you are starting out with tmux, but if you want to try more complex sessions, make sure you use different leader keys for each layer!

Nested Tmux Sessions

Extra#

For more info on using tmuxinator, the readme on their GitHub repo here contains documentation. Tmuxinator is quite simple so there isn't much more to cover. If you want to increase your productivity I would suggest learning more about tmux. Here are some resources for learning more about tmux:

  • Daniel Miessler - Tactical Tmux link
  • The Valuable Dev - A Detailed tmux Walkthrough to Boost Your Productivity link
  • Tony Narlock - The Tao of Tmux link

An Ode to the Netkit-JH Sponge

Freya Thompson

Freya Thompson

Freya Thompson

The Challenge#

It was a difficult task, being given the challenge of making an icon for this netkit project. Such a small space, such a big project. It’s tough to know where to begin on an assignment like this. With the help of an associate, I had my first stroke of inspiration: a sponge.

Artist's Opinion#

The common, everyday object resembles simplicity and efficiency, two important attributes that inspired the creator, one Josh Hawking. Its flowing curves and incredible way of absorbing reflects the free flow of information and the way we students absorb it.

The purple N, standing for netkit, was colour coordinated to match the purple theme of this website. Purple, a colour famously linked to royalty, shows the importance of this project. Minimalism was my aim; to shrink something this big into one small image was challenging and fascinating.

The Eulogy#

It was an absolute honour to be chosen for this job. As someone with little to no technical skills, it was one way I could be a part of this new and exciting technical movement.

I hope you all download it and reap the benefits of the hard work from all those involved.

The Sponge

Netkit Version 1.0 Released!

TechSupportJosh

TechSupportJosh

TechSupportJosh

Netkit V1 Release#

Compiling#

  • Improved build process for the filesystem (decreasing build times from 40 minutes to 10 minutes!) which will make updating and maintaining the filesystem easier.
  • Improved build process for all modules
  • Moved core tools into the build repo
  • Updated UML tools to 64 bit (hoorah!)
  • Use the UK debian repos to make downloading packages that little bit faster
  • Added dockerfile to compile using Docker - thanks @b177y

New in this release#

  • LFTP & at packages
  • Added support for Kitty & Alacritty terminal emulators
  • New install script which asks what terminal emulator you wish to use (and handles installation of it!)
  • Added message about 'lclean' when labs don't start properly

Bug fixes#

  • Removed mmapper_init failed error message
  • Removed failed to load autofs4 module error message
  • Set timeout of startup script service to 5 minutes
  • vstart --version now lists the correct kernel/fs version

Removed#

  • Netkit welcome message has been removed (was broken before due to a bad systemd service config)

Coming in the future#

  • Removing net-tools dependancy from core tools
  • Exploring the concept of different distros for filesystems
  • Making it more stable :-)

Massive thanks to @okman12 and @b177y for assisting me in improving this version :-)

Most importantly, we're now at v1.0.0 of our new Netkit :) Our improvements to the building process (removal of rootstrap, combining of the two repos) and our upgrade to Debian Bullseye + Linux Kernel 5.9 justify a big version jump in my opinion. So welcome to v1.0.0, the best update we've had so far :-)