Open rain1024 opened 10 years ago
# list process
ps
jobs
# kill process by name
ps -9 process_name
# creates a new tmux session named session_name
tmux new -s session_name
#attaches to an existing tmux session named session_name
tmux attach -t session_name
# switches to an existing session named session_name
tmux switch -t session_name
# lists existing tmux sessions
tmux list-sessions
# detach the currently attached session
# you can do either Ctrl-b d
# or Ctrl-b : detach
tmux detach (prefix + d)
Ref: [1], RU: screen
# download from url
wget download_url
### ssh
```sh
# connect to server
ssh user_name@host_name
# RU: putty
tar -zcvf tar-archive-name.tar.gz source-folder-name
tar -zxvf tar-archive-name.tar.gz
Command Lines
Storage
File Management
Software
References