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
| Command | Use | Example |
|---|---|---|
| top | Show running processes | top |
| htop | Advanced process viewer | htop |
| ps | Show process list | ps aux |
| kill | Stop a process by PID | kill 1234 |
| killall | Stop process by name | killall python |
| bg | Run process in background | bg |
| fg | Bring process to foreground | fg |
| jobs | Show background jobs | jobs |
| free | Show memory usage | free -h |
| uptime | Show system uptime | uptime |
| uname | System information | uname -a |
| df | Disk space usage | df -h |
| du | Folder size | du -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:
topKill a process:
kill 1234Check memory usage:
free -hCheck disk space:
df -h