Table of Contents

Getting started with linux

Commands

SSH

SSH into a host with a USERNAME and PORT.

ssh USERNAME@HOSTNAME -p PORT

Example

ssh [email protected] -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 

Authors

Contributing authors:

kluong

Created by kluong on 2016/04/30 01:37.