linux程式前臺-後臺執行

redhouser發表於2012-11-20
版本:
[oracle@bnet95 ~]$ uname -a
Linux bnet95 2.6.18-164.el5xen #1 SMP Thu Sep 3 04:47:32 EDT 2009 i686 i686 i386 GNU/Linux

1,前臺執行方式:
[oracle@bnet95 ~]$ xlogo
出現xlogo視窗
Ctrl-C退出。
2,後臺執行方式:
[oracle@bnet95 ~]$ xlogo &
[1] 28025
[oracle@bnet95 ~]$
出現xlogo視窗
[oracle@bnet95 ~]$ ps
  PID TTY          TIME CMD
27992 pts/1    00:00:00 bash
28025 pts/1    00:00:00 xlogo
28026 pts/1    00:00:00 ps
[oracle@bnet95 ~]$ jobs
[1]+  Running                 xlogo &
同一個使用者在新的終端下登陸:
[oracle@bnet95 ~]$ jobs
[oracle@bnet95 ~]$

3,後臺變前臺
[oracle@bnet95 ~]$ fg #1
xlogo

4,前臺變後臺
停止該job:Ctrl-Z
[1]+  Stopped                 xlogo
==〉此時X視窗對操作不響應,但並沒有退出
[oracle@bnet95 ~]$ bg #1
[1]+ xlogo &
[oracle@bnet95 ~]$
==〉此時X視窗恢復對操作的響應
 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/18922393/viewspace-749550/,如需轉載,請註明出處,否則將追究法律責任。

相關文章