Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

check running process in linux

ps -aux 
# (print all processes owned by a user named "x")
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

PREVIOUS NEXT
Code Example
Shell :: bash get one checksum for many files 
Shell :: restart rstudio 
Shell :: Cria um dispositivo gerenciado de cores 
Shell :: install node arch linux 
Shell :: How to check the Redis version? 
Shell :: flutter run emulator command line 
Shell :: kill all processes by name cmd 
Shell :: git clear remote branch 
Shell :: bash find file by name 
Shell :: hoiw to find a certain fil eon ubuntu 
Shell :: ngxcountup 
Shell :: alpine linux mongodb 
Shell :: find a file in all subdirectories in linux 
Shell :: add or remove samba user 
Shell :: linux set env permanent 
Shell :: speed up video with ffmpeg 
Shell :: When should you use a single dash within a Git command, as opposed to a double dash? 
Shell :: telegram desktop for linux 
Shell :: ubuntu change jdk 
Shell :: random in mac terminal 
Shell :: find command also return directory names? 
Shell :: osx copy output to clipboard terminal 
Shell :: how to remove a file inside jar file in linux 
Shell :: failed to restart mysql.service: unit mysql.service not found. 
Shell :: how to know namespace is present or not in kubernetes shell script 
Shell :: linux execute permission denied 
Shell :: how to make ubuntu faster 
Shell :: apache version mac 
Shell :: how to add eslint to your JavaScript project 
Shell :: powershell output to file 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =