Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

show all processes linux

ps -aux | less
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

command running processes linux

ps -u [username]
Comment

PREVIOUS NEXT
Code Example
Shell :: dotnet test 
Shell :: nvcc not working after installing cuda 
Shell :: aws cli upload folder to s3 
Shell :: react loaders 
Shell :: install laravel on ubuntu 
Shell :: start arangodb 
Shell :: chmod a+x 
Shell :: run apache xampp 
Shell :: Unzip all zip files in a proper directory 
Shell :: how to install wine in ubuntu 18.04 
Shell :: bash adding floats 
Shell :: aws cli 
Shell :: flutter markdown 
Shell :: Managing network connections in ubuntu 
Shell :: delete commit from github 
Shell :: git undo unstaged changes to one file 
Shell :: edit text file bash 
Shell :: recursive grep recursion depth 
Shell :: how t oadd ssl to a subdomain in nginx 
Shell :: how to delete a folder in github 
Shell :: push an existing repository from the command line on github 
Shell :: using npm and yarn together 
Shell :: commitlint install 
Shell :: pull unmerged branch 
Shell :: npx gitignore generator 
Shell :: start stop restart pm2 
Shell :: create mysql user and database from script 
Shell :: github copilot neovim 
Shell :: pacman purge 
Shell :: how to unistall dependencies 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =