Project 1 of 3 in the Linux System Management series
Focus: Boot Process, GRUB2, Timezone Configuration, Kernel Parameters
- Inspect and validate the system boot process
- Review GRUB2 configuration structure
- Set and verify system timezone
- List and filter kernel and network parameters using
sysctl
- Fedora Linux (remote system)
- SSH access from macOS terminal
- All commands executed remotely and documented with outputs and screenshots
linux-system-management-1/
βββ README.md
βββ outputs/
β βββ 01-bootctl-status.txt
β βββ 02-grub-scripts.txt
β βββ 03-timezone-status.txt
β βββ 04-sysctl-kernel.txt
β βββ 05-sysctl-net.txt
βββ screenshots/
βββ 01-bootctl-status.png
βββ 02-grub-directory-tree.png
βββ 03-timezone-status.png
βββ 04-sysctl-kernel-params.png
βββ 05-sysctl-network-params.png
bootctl status
π 01-bootctl-status.txt
π·
ls -l /etc/grub.d
π 02-grub-scripts.txt
π·
timedatectl
sudo timedatectl set-timezone UTC
timedatectl
π 03-timezone-status.txt
π·
sysctl -a | grep kernel
π 04-sysctl-kernel.txt
π·
sysctl -a | grep net
π 05-sysctl-net.txt
π·
This project demonstrates core Linux+ system management topics through real terminal output and command execution.
Documentation and screenshots provide a full proof-of-execution trail, reinforcing both certification learning and DevOps practices.
β linux-system-management-2
Focus: Users, shadow file, ulimit
, file operations