Skip to content

CarlosSemeao/linux-system-management-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Linux System Management 1

Boot Process - GRUB2 - Timezone Configuration - Kernel Parameters


Objectives

  • 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

Environment

  • Fedora
  • SSH from macOS

Project Structure

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

Execution

View Boot Loader Status

bootctl status

01-bootctl-status.txt
01-bootctl-status


List GRUB2

ls -l /etc/grub.d

02-grub-scripts.txt
02-grub-directory-tree


Check

timedatectl
sudo timedatectl set-timezone UTC
timedatectl

03-timezone-status.txt
03-timezone-status


Kernel

sysctl -a | grep kernel

04-sysctl-kernel.txt
04-sysctl-kernel-params


Network

sysctl -a | grep net

05-sysctl-net.txt
05-sysctl-network-params


Summary

This project demonstrates some Linux+ system management topics through terminal output and command execution.

Next Project

linux-system-management-2
Focus: Users, shadow file, ulimit, file operations

About

Boot process, GRUB2, timezone configs, and kernel inspection | Project 1 of 3 in Linux System Management series

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors