Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

show all processes linux

ps -aux | less
Comment

check running process in linux

ps -aux 
# (print all processes owned by a user named "x")
Comment

how to list running processes in linux

ps -ef 

OR

ps -ef | grep <process-to-filter> 
e.g 
ps-ef | grep node
Comment

list all running processes linux

ps aux # OR: ps${IFS}aux

#OUTPUT:
#x represents a wildcard

#USER         PID  %CPU  %MEM    VSZ   RSS   TTY     STAT START   TIME COMMAND
#runner         1  0.3   0.0  xxxxxxx  xxxxx ?       Ssl  22:05   0:02 /nix/store/xxxxxxxxxxxxxxx
#runner        28  0.4   0.1   xxxxxx  xxxxx ?       Sl   22:11   0:01 /home/runner/xxxxxxxxxxxxx
#runner        60  0.4   0.1   xxxxxx  xxxxx ?       Sl   22:13   0:01 /home/runner/xxxxxxxxxxxxx
#runner        77  0.4   0.1   xxxxxx  xxxxx ?       Sl   22:13   0:00 /home/runner/xxxxxxxxxxxxx
#runner        98  0.2   0.0  xxxxxxx  xxxxx pts/0   Ssl+ 22:13   0:00 /nix/store/xxxxxxxxxxxxxxx
#runner       110  0.0   0.0     xxxx  xxxx  pts/1   Ss   22:13   0:00 /nix/store/xxxxxxxxxxxxxxx
Comment

check all running processes linux

# memory usage (in percentage) of all the process running with pid
ps -o pid,user,%mem,command ax | sort -b -k3 -r
# all running process
ps aux
# Memory usage of a specific pid(917 is an example here process)
sudo pmap 917 | tail -n 1
Comment

unix command to see processes running

ps
top
w
Comment

list of current processes linux

# Run command below to get list of "major" processes
ps
Comment

PREVIOUS NEXT
Code Example
Shell :: refusing to merge unrelated git 
Shell :: list files of type txt from cmd 
Shell :: open current dir cmd 
Shell :: Creating tar.gz 
Shell :: linux bash connect to postgres 
Shell :: git move branch to previous commit 
Shell :: postinstall docker 
Shell :: octave for ubuntu 20.04 
Shell :: vue-cli-service not found linux 
Shell :: git remove submodule keep files 
Shell :: ignore file git 
Shell :: shell curl extract bearer token from response 
Shell :: find file linux 
Shell :: publish website locally 
Shell :: How to solve bad signature... index file corrupt 
Shell :: create new file terminal 
Shell :: how to execute a bash script in terminal 
Shell :: linux unpack zip 
Shell :: net speed monitor for ubuntu 
Shell :: redis install 
Shell :: git show unpushed commits 
Shell :: terraform remove from state 
Shell :: bash script cd into script dir 
Shell :: git add file in ignored folder 
Shell :: Delete untracked file or discard unstaged work 
Shell :: wsl start distro 
Shell :: how to see deleted commit in git 
Shell :: git abandon untracked files 
Shell :: start of .sh file 
Shell :: bash command in variable 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =