Skip to content

Instantly share code, notes, and snippets.

@b9AcE
b9AcE / tmux.conf
Last active October 13, 2017 07:28
My tmux configuration. Very simple.
#
# "/etc/tmux.conf" or "~/.tmux.conf"
#
# Revision 20171013-01
#
# Configures the terminal multiplexer tmux(1), which behaves similar to the older screen(1).
# This configuation is intended to provide a basic, sane default, without fancy features.
#
# Change the prefix key to <control>+a instead, because it is easier to press and is the default of screen(1) so no reason to use <control>+b, the default of tmux(1).
@b9AcE
b9AcE / ki
Created April 19, 2017 01:23
Very tiny scriptlet to easily install a newly compiled Linux kernel on x86_64 using just version-name as argument.
#!/bin/bash
\/bin/cp -v arch/x86_64/boot/bzImage /boot/vmlinuz-"${1}"
\/bin/cp -v vmlinux /boot/vmlinux-"${1}"
\/bin/cp -v System.map /boot/System.map-"${1}"
\/bin/cp -v .config /boot/config-"${1}"