1. /path/app1 & 后台运行 关闭后台则会停止
2. nohup /path/app1 & 后台运行 关闭后台不会停止
2. ps uax/grep app1 查看app1 的进程信息
3. kill -9 PID 杀死 进程号为PID 的进程
4. chmod +x app1 为 app1 添加 执行 权限 //http://www.ownlinux.org/2008/03/14/ubuntu-linux-chmod.html 详见此链接
1. /path/app1 & 后台运行 关闭后台则会停止
2. nohup /path/app1 & 后台运行 关闭后台不会停止
2. ps uax/grep app1 查看app1 的进程信息
3. kill -9 PID 杀死 进程号为PID 的进程
4. chmod +x app1 为 app1 添加 执行 权限 //http://www.ownlinux.org/2008/03/14/ubuntu-linux-chmod.html 详见此链接