start new:
tmux
start new with session name:
tmux new -s myname
{ | |
"html": { | |
"body": { | |
"_attributes": { | |
"_class": [ | |
"container", | |
"flex" | |
] | |
}, | |
"_children": { |
#!/bin/bash | |
# Check if command was ran as root. | |
if [[ $(id -u) -eq 0 ]]; then | |
echo "The command \"sphp\" should not be executed as root or via sudo directly." | |
echo "When a service requires root access, you will be prompted for a password as needed." | |
exit 1 | |
fi | |
# Usage |
#!/bin/bash | |
# This script zeroes out any space not needed for packaging a new Ubuntu Vagrant base box. | |
# Run the following command in a root shell: | |
# | |
# bash <(curl -s https://gist.githubusercontent.com/moismailzai/0864e90d55d508ec8f5aa1ccd68887c6/raw/fdfd7b28bd00623311689a50754307b06e2e5922/vagrant-clean.sh) | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" | |
exit 1 |
#!/bin/bash -eux | |
# Add vagrant user to sudoers | |
echo "vagrant ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers | |
sed -i "s/^.*requiretty/#Defaults requiretty/" /etc/sudoers | |
# UseDNS no to `sshd_config`. | |
sed /UseDNS/d /etc/ssh/sshd_config > /tmp/sshd_config | |
echo "UseDNS no" >> /tmp/sshd_config | |
mv /tmp/sshd_config /etc/ssh/sshd_config |
language: go | |
# Only the last two Go releases are supported by the Go team with security | |
# updates. Any versions older than that should be considered deprecated. | |
# Don't bother testing with them. tip builds your code with the latest | |
# development version of Go. This can warn you that your code will break | |
# in the next version of Go. Don't worry! Later we declare that test runs | |
# are allowed to fail on Go tip. | |
go: | |
- 1.9 |
# Purge all Varnish cache | |
varnishadm "ban req.url ~ /" |
KEYBINDINGS | |
byobu keybindings can be user defined in /usr/share/byobu/keybindings/ (or within .screenrc if byobu-export was used). The common key bindings | |
are: | |
F2 - Create a new window | |
F3 - Move to previous window | |
F4 - Move to next window |
// Net Stuff (affects connection to the server: increases bandwidth, reduces interpolation, choke, and latency) | |
rate "786432" | |
cl_cmdrate "128" | |
cl_forcepreload "1" | |
cl_lagcompensation "1" | |
cl_interp "0" | |
cl_interp_ratio "1" | |
cl_updaterate "128" | |
mm_dedicated_search_maxping "35" |
This guide will enable systemd
to run as normal under WSL 2. This will enable services like microk8s
, docker
and many more to just work
during a WSL session. Note: this was tested on Windows 10 Build 2004, running Ubuntu 20.04 LTS in WSL 2.
To enable systemd
under WSL we require a tool called systemd-genie
Copy the contents of install-sg.sh
to a new file /tmp/install-sg.sh
:
cd /tmp