Não é possível encontrar a janela para um processo cujo status é 'Sl' [duplicado]

0

Estou no Ubuntu 14.04 com o Gnome Classic como ambiente de área de trabalho.

Eu tenho um processo cujo status é Sl , veja abaixo:

$ ps  aux | grep PDFXC
t        20363  0.1  0.0 2676268 6436 pts/61   Sl    2015  13:03 /home/t/programs/PDFXCview.exe bash4.3.pdf                                      

O que significa Sl ?

Não me lembro se tentei matá-lo clicando com o botão direito e selecionando "fechar". Talvez sim, talvez não. Mas agora não consigo encontrar a janela para o processo no painel do ambiente de área de trabalho. Ainda é possível encontrar sua janela e chegar à frente do ambiente de área de trabalho?

    
por Tim 03.01.2016 / 20:23

1 resposta

1

Em man ps :

PROCESS STATE CODES

  Here are the different values that the s, stat and state output
  specifiers (header "STAT" or "S") will display to describe the state of
  a process:

       D    uninterruptible sleep (usually IO)
       R    running or runnable (on run queue)
       S    interruptible sleep (waiting for an event to complete)
       T    stopped, either by a job control signal or because it is
            being traced
       W    paging (not valid since the 2.6.xx kernel)
       X    dead (should never be seen)
       Z    defunct ("zombie") process, terminated but not reaped by
            its parent

  For BSD formats and when the stat keyword is used, additional
  characters may be displayed:

       <    high-priority (not nice to other users)
       N    low-priority (nice to other users)
       L    has pages locked into memory (for real-time and custom IO)
       s    is a session leader
       l    is multi-threaded (using CLONE_THREAD, like NPTL pthreads
            do)
       +    is in the foreground process group

(Como você usou aux , está executando ps no modo BSD.)

Então você tem um processo multithreaded que está atualmente dormindo.

    
por muru 03.01.2016 / 20:26