Install sublime text wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - sudo apt-get install apt-transport-https echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list sudo apt-get update sudo apt-get install sublime-text
install tmux sudo apt install tmux
https://www.hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/
tmux shortcuts <PREFIX> => Ctrl + a
tmux list sessions
tmux ls
attach session (from the list displayed by the above command)
tmux attach-session -t <session-name>
detach from current session
<PREFIX> d
create new window
<PREFIX> c
rename current window
<PREFIX> ,
goto cmd line
<PREFIX> :
tmux plugins tmux plugin manager https://github.com/tmux-plugins/tpm
to install git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
Commands prefix + I => installs the listed plugins in the tmux config...
create user and add a home directory sudo useradd zk -m
set shell to bash sudo usermod –shell /bin/bash zk
set a password for this user sudo passwd zk
add zk to sudo group sudo usermod -aG sudo zk
now for the security bit, disable ssh access to the zk user Open your sshd_config file:
sudo vim /etc/ssh/sshd_config Locate the PermitRootLogin line and set the value to no to disable SSH access for the root user:...