远程连接Linux服务器并用screen在后台运行程序
ssh连接
ssh xx@134.76.81.154
把文件copy到服务器上
scp -rf test.py xx@134.76.81.154:/dir/
使用screen后台运行程序
1.进入screen窗口,按回车或空格跳过说明
screen
2.直接输入运行的指令,结束screen按esc,暂时detach让它在后台运行按ctrl+A+D
python3 test.py
3.查看正在运行的进程
screen -ls
4.返回程序运行界面
screen -r 31305