|
| ||||||||||
| Tags: linux, linux mint, process viewer, ps command, system process |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to get process viewer on Linux Mint
|
|
#2
| |||
| |||
| Re: How to get process viewer on Linux Mint
As indicated above, a process can be identified with its PID. To find it, there is a tool called ps. It displays the list of processes running (not necessarily all depending on options) with other information such as the command used to launch or condition. For information on available options with ps, the easiest way is to consult its manual page , especially as these systems as options may change. One common option is-e which will list all processes on the system (and not those of the current user only). |
|
#3
| ||||
| ||||
| Re: How to get process viewer on Linux Mint
Below is an example of displaying the use of ps. The option-o has also been used. It allows you to specify which information to be displayed. Without dwelling on the possibilities, you just specify here has been chosen to display the PID, PPID (parent PID), the owner and the user program. Code: > Ps-e-o "% p% P% U% c"
PID PPID USER COMMAND
1 0 root init
Syslogd root 506 1
1411 1 root httpd
1456 1 root login
Tian 3713 1456 bash
Tian 7083 3713 ps |
|
#4
| |||
| |||
| Re: How to get process viewer on Linux Mint
At a given process may be sent a signal. This can be seen as an indication the program asynchronously. The latter term means that the signal must be taken into account immediately regardless of the operations being processed. The person who designed the program can decide how to behave at the reception of the signal to replace the default. Part of the program responsible for this signal handler. A signal will be designated by its numerical value or by name. Since numerical values can vary from one system to another, it is better to use the name. |
|
#5
| |||
| |||
| Re: How to get process viewer on Linux Mint
There are two main commands, one showing the process, ps And the other jobs, jobs . The concept of process is more general: a process is uniquely identified in the system by its number. A job, however, is identified by a number that is unique only in the shell correspondent. This explains that we can not use jobs as for the shell process current. The display formats of ps are quite complicated, and we will only consider the process number, generally indicated as PID, and the name of the current command to find process.
Note also the top command , Which provides information on the process-intensive computing power. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to get process viewer on Linux Mint" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Mint Backup Tool is not working in Linux Mint Debian Edition 32 bit | Giaan | Operating Systems | 5 | 13-11-2011 03:23 PM |
| Which one is better Linux Mint 11 Katya or Linux Mint 11 Julia | LohitPratap | Operating Systems | 7 | 13-11-2011 03:15 PM |
| How to upgrade linux mint 10 to linux mint 11 | Muktar | Operating Systems | 7 | 11-11-2011 06:10 PM |
| Linux mint: Mint-X-Metal and Shiki-Wise hybrid theme | hardyB | Customize Desktop | 5 | 13-01-2011 09:10 PM |
| How to get mint-artwork-gnome when it is missing in Linux Mint | Aditya K. | Operating Systems | 4 | 13-01-2011 02:54 PM |