A collection of random notes.

Handy bash aliases

Things to add to your ~/.bash_rc or ~/.bash_profile

Convenient functions and aliases to add to your ~/.bash_rc or ~/.bash_profile files to make your life in the terminal better....

Continue reading...

SETUP PROCESS:

INITIAL USER:

adduser myuser
passwd myuser
gpasswd -a myuser wheel
su - myuser
mkdir .ssh
chmod 700 .ssh
vi .ssh/authorized_keys
chmod 600 .ssh/authorized_keys

SSH

Made the fo...

Continue reading...