(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
# | |
# fair-queue based settings for EdgeRouter Lite traffic shaping | |
# | |
# download is typically 30 and change. everything can burst to 100% | |
# of bandwidth, priority rules keep the garbage in check | |
set traffic-policy shaper download | |
set traffic-policy shaper download bandwidth 30Mbit |
// Thomas Karpiniec, 1 Sep 2017 | |
// Companion code to https://karp.id.au/a/2017/09/01/layer-2-raw-sockets-on-rustlinux/ | |
extern crate libc; | |
use std::io; | |
use std::ptr; | |
use std::mem; | |
use std::collections::HashMap; | |
use std::net::Ipv4Addr; |
This section applies to machines with Secure Boot, such as ThinkPad.