This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
set -g history-limit 50000 | |
set -g set-clipboard on | |
set -g default-terminal "tmux-256color" | |
# vim-like copy | |
set-window-option -g mode-keys vi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# compile kernel selftests for pseudo_mm | |
# cd /root/linux && make O=/root/ -C tools/testing/selftests TARGETS=pseudo_mm | |
# create a initramfs | |
# do not forget to run make modules_install when compiling linux kernel code | |
# mkinitramfs -o ~/initramfs-6.1.0 6.1.0-rc8+ | |
# | |
# rm -f /root/multipass-shared/rootfs-work |