পি এস এক্স এস তালিকাতে এস + এস 1 + টি আর এর অর্থ কী


37

আমি এই কমান্ডটি চালিয়েছি এবং এটির ফলাফল পেয়েছি তবে কোন নোডের উদাহরণটি আমি খুন করব সে ফলাফলটি বুঝতে পারি না

 ps ax | grep node


23308 pts/3    S+     0:00 sudo node index.js
23310 pts/3    Sl+    0:00 node index.js
23568 pts/1    T      0:00 sudo node index.js
23824 pts/4    S+     0:00 sudo node index.js
23826 pts/4    Sl+    0:00 node index.js
24202 pts/5    R+     0:00 grep --color=auto node

এবং এস এস এল এস + টি, আর + কি?

উত্তর:


58

এগুলি হল স্টেট কোডগুলি - ম্যান পৃষ্ঠা থেকে

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

সুতরাং এস + এবং এস 1 + এর মধ্যে পার্থক্য কী?
আন্তারাস

1
@ আন্টারাস আমি এটি বিশ্বাস করি Sl+এবং নাও S1+। এর ব্যাঘাতযোগ্য ঘুম, অগ্রভাগ প্রক্রিয়া গোষ্ঠী এবং বহু-থ্রেডযুক্ত অর্থ।
এজেন্ট 47 ডার্কসোল
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.