by Console Bear | Jun 5, 2024 | All, Linux, SysOps
Securing a web server is crucial to protect sensitive data, ensure privacy, and maintain the integrity of your applications and services. This guide will walk you through various steps and best practices to harden your Linux web server, making it more resilient...
by Console Bear | Nov 23, 2019 | All, DevOps, Linux, SysOps
List of system related commands: Show name of system: uname -a — Kernel release information: uname -r — Release os information: cat /etc/os-release — Release all etc information: cat /etc/*release — Check who is currently logged in: last...
by Console Bear | Nov 19, 2019 | DevOps, Linux, SysOps
Memory Swaps: [See swap info in system] swapon -s or cat /proc/swaps —— [To see all partitions (including swap memory partition)] lsblk -o TYPE,NAME,KNAME,UUID,MOUNTPOINT,SIZE —— [To see used and free swap memory] free -h —— [To...
by Console Bear | Nov 17, 2019 | Linux, SysOps
Here is a Linux Commands list that are Disk related. Ejoy! Check disk usage in human readible format: df -h Uses du to find and sort the biggest files: du -d 1 -h | sort -h Uses du to search folder /usr and sort the biggest files in there: du -a /usr | sort -n -r |...