H
Hassan Ali
@hassan_ops
Bronze
565
Reputation Points
About
Site reliability engineer
Joined Jan 2026
Q&A Statistics
Questions
5
Answers
9
Articles
4
Total Votes
287
All Answers
Re: How to monitor system resources in real-time on Linux
Built-in tools # top - classic process viewer top # htop - enhanced process viewer sudo apt install htop htop …
17
4 weeks, 1 day ago
Re: How to set up automatic security updates on Ubuntu
Install unattended-upgrades sudo apt install unattended-upgrades sudo dpkg-reconfigure -plow unattended-upgrades Configure settings # Edit /etc/apt/apt.conf.d/50unattended-upgrades Unattended-Upgrade::Allowed-Origins { "${distro_id}:${distro_codename}-security"; }; Unattended-Upgrade::Automatic-Reboot …
24
4 weeks, 1 day ago
Re: Django migrations not applying - troubleshooting guide
This is a common Django issue. Here's how to troubleshoot: Check app is in INSTALLED_APPS # settings.py INSTALLED_APPS = [ …
17
4 weeks, 1 day ago