程式作業管理-背景後台運行管理2

來源:互聯網
上載者:User

程式作業管理-背景後台運行管理2 程式作業管理-背景後台運行管理http://www.bkjia.com/os/201303/192121.html 1、nohup    在ssh執行時,父進程是sshd,如果不要ctrl+c,而直接關掉,而父進程自動變成1。    會自動產生輸出檔案nohup.out,也可以重新導向另外檔案 >filename 2>&1 2、setsid    用法和nohup一樣,後面直接跟命令就行,區別是:    直接顯屏,父ID直接是1,可直接關掉就進入後台,ctrl+c是取消不了的 3、通過()子shell另類方式,效果同setsid    [root@pvcent107 ~]# (ping www.ibm.com &)    [root@pvcent107 ~]# ps -ef |grep www.ibm.com    root     16270     1  0 14:13 pts/4    00:00:00 ping www.ibm.com    root     16278 15362  0 14:13 pts/4    00:00:00 grep www.ibm.com 4、&    這個是放在後台啟動並執行意思,但還是在shell子程式中,斷開會話時就會結束的 5、disown    之前已運行在前台的程式,要放到後台運行。    用disown -h jobspec 來使某個作業忽略HUP訊號。     用disown -ah 來使所有的作業都忽略HUP訊號。     用disown -rh 來使正在啟動並執行作業忽略HUP訊號。     如果提交命令時已經用“&”將命令放入後台運行,則可以直接使用“disown”    如果提交命令時未使用“&”將命令放入後台運行,可使用 CTRL-z 和“bg”將其放入後台,再使用“disown”     disown 樣本                    [root@pvcent107 build]# cp -r testLargeFile largeFile &    [1] 4825    [root@pvcent107 build]# jobs    [1]+  Running                 cp -i -r testLargeFile largeFile &    [root@pvcent107 build]# disown -h %1    [root@pvcent107 build]# ps -ef |grep largeFile    root      4825   968  1 09:46 pts/4    00:00:00 cp -i -r testLargeFile largeFile    root      4853   968  0 09:46 pts/4    00:00:00 grep largeFile

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.