1,忽略SIGHUP信号, `signal(SIGHUP,SIG_IGN);` 2,在新的sessionid中创建进程;setsid(); 进程组长调用setsid()会失败,所以需要fork()出子进程,由子进程调用setsid() 3,setsid 命令启动程序;setsid ./exe 4,nohup 命令启动程序; nohup ./exe