• Ubuntu16.04 -- 后台进程Nohup


    • nohup用于使程序在用户退出登陆、关闭终端之后仍能继续运行

    • 用法:

    nohup your_command & #(符号&使程序在后台运行)
    exit #(退出nohup模式)
    • 启动后,会将程序运行输出记录在当前目录下的nohup.out文件下,如果当前目录不可写,则会被记录在Home目录下的nohup.out文件中

    • 自定义日志文件

    nohup your_command > my_nohup.log 2>&1 &
    #(将日志输出在my_nohup.log文件中,并将stderr重定向至stdout)
    • 退出nohup模式之后,停止程序:
    ps -ef|grep "your_command" #(查找运行该命令的进程)
    kill -9 your_command_pid #(根据进程号关闭程序)
  • 相关阅读:
    Acdream 1174 Sum 暴力
    Acdream 1114 Number theory 莫比乌斯反演
    Acdream 1007 快速幂,模乘法
    UVa 10023
    UVa 11027
    UVa 11029
    UVa 10820
    UVa 10791
    UVa 11121
    UVa 106
  • 原文地址:https://www.cnblogs.com/mafeng/p/7721745.html
Copyright © 2020-2023  润新知