====== Getting started with linux ====== * Download and install virtual box - https://www.virtualbox.org/wiki/Downloads * Download and install xubuntu - http://xubuntu.org/getxubuntu/ ===== Commands ===== ==== SSH ==== SSH into a host with a USERNAME and PORT. ssh USERNAME@HOSTNAME -p PORT Example ssh kluong@wiliki.eng.hawaii.edu -p 22 ==== Dynamic Forwarding ==== Dynamically forward traffic through port 5050 on hostname with a port: ssh -D 5050 USER@HOSTNAME -p PORT Make sure you configure your browser to use a SOCKS5 proxy. ==== Running Rails ==== Running a server with port XXXX. rails s -p XXXX