Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 766 Bytes

COMMANDS.md

File metadata and controls

40 lines (29 loc) · 766 Bytes

Skynet TB command

Skynet Side: tensorboard --logdir ./logs --port 6001

Local: W3: ssh -N -f -L localhost:16006:localhost:6001 [email protected]

Skynet: ssh -N -f -L localhost:16006:localhost:6001 [email protected]

How to remote access Tensorboard running on server

https://gist.github.com/mrnabati/009c43b9b981ec2879008c7bff2fbb22

tmux

Reattach to session:

tmux attach -t

Kill session

ctrl+a+b -> : then type 'kill-session'

Create new session with name

tmux new -s

Detach session

ctrl+a+b -> : then type 'detach'

List tmux sessions

'tmux ls'

Scroll in screen

ctrl-a esc

Kill process

sudo pkill -9 <PID> in terminal or sudo kill -9 <PID> in terminal

Kill all processes

sudo killall -u dyung6