linux-远程后台运行任务

tmux

apt install tmux
// 标记标题 dev
tmux new -s dev
tmux new -s admin
执行长时间任务,退出对话
tmux detach
重新登录后
tmux attach -t dev
tmux switch -t admin

临时长时间后台运行应用

nohup ping www.ibm.com &