Screen allow you to run terminal inside a terminal.

To start a new session

screen -S name

To detach, press Ctrl-A then D
To kill that session, press Ctrl-A then K and y
Alternate way to kill a screen session

screen -XS name quit 

List running screen sessions

screen -ls

Reconnect to a session by name

screen -r name