Termux System & Process Management Commands

System and process commands help you monitor your device performance and manage running programs in Termux. These commands are useful to control CPU usage, memory, and background tasks.

System & Process Commands List

CommandUseExample
topShow running processestop
htopAdvanced process viewerhtop
psShow process listps aux
killStop a process by PIDkill 1234
killallStop process by namekillall python
bgRun process in backgroundbg
fgBring process to foregroundfg
jobsShow background jobsjobs
freeShow memory usagefree -h
uptimeShow system uptimeuptime
unameSystem informationuname -a
dfDisk space usagedf -h
duFolder sizedu -sh folder

These commands help you control and monitor your system in Termux. You can manage running apps, check performance, and fix issues easily.

Quick Examples

Check running processes:

top

Kill a process:

kill 1234

Check memory usage:

free -h

Check disk space:

df -h
SHARE THIS POST: