Directory Navigation and File System Enspection ls: Enumerates contents within a target folder. pwd: Outputs the absolute path of the current shell environment. cd <path>: Transitions the shell to a specified directory. cd ..: Moves up one level in the hierarchy. cd -: Reverts to the previousl...
CPU Utilization Monitoring The top command provides a dynamic, real-time view of system processes and resource usage. Press q or Ctrl+C to exit. The initial five lines present overall system statistics. Line 1: System Summary This line mirrors the output of uptime. Current time (e.g., 10:59:33). Upt...
1. Basic Navigation 1.1 cd: Change Directory # Change to an absolute path cd /study/files # Change to a relative path cd test/ # Special directory shortcuts cd . # Current directory cd .. # Parent directory cd / # Root directory cd ~ # Home directory 1.2 ls: List Directory Contents # Basic listing l...