Multiplexing Tutorial
avatar

Nice tutorial on how to setup multiplexing, http://www.cyberciti.biz/faq/linux-unix-osx-bsd-ssh-multiplexing-to-speed-up-ssh-connections/

Posted in Linux | Leave a comment

Force Overwrite when doing a Copy
avatar

Having to constantly press “y” when you want to overwrite the files in a directory can be a huge pain.  To get around that just add a slash in front of the copy command.

\cp /home/me/Music/* /home/me/MusicBK/

Posted in Linux | Leave a comment

Secure Your Linux Desktop and SSH Login Using Two Factor Google Authentication
avatar

Secure Your Linux Desktop and SSH Login Using Two Factor Google Authentication.

Posted in Linux | 1 Comment

Vi Cheat Sheet
avatar

This is a pretty good Vi cheat sheet
http://sheet.shiar.nl/vi

Posted in Linux | Leave a comment

Create a Directory Tree CLI
avatar

Using the command below you can create a simple directory tree just by using standard commands:

find . -print | sed -e ‘s;[^/]*/;|____;g;s;____|; |;g’

Posted in Linux | Leave a comment