linux 命令 学习笔记

来源:互联网 发布:加入中国籍难吗 知乎 编辑:程序博客网 时间:2024/06/03 01:18

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  详见此链接