Jump to content

Basic System Administration Course - Module 1: Difference between revisions

From ColourFi Wiki
Created page with "= Module 1 Lab: Introduction to System Administration = == Objective == By the end of this lab, students will: * Understand the role of a system administrator. * Differentiate between server and workstation environments. * Gain a basic understanding of virtualization concepts. * Navigate the EVE-NG interface and create simple nodes and networks. == Prerequisites == * Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine). * A web browser to..."
 
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= Module 1 Lab: Introduction to System Administration =
= Module 1 Lab: Introduction to System Administration =
Module 1 of [[Basic System Administration Bootcamp]]


== Objective ==
== Objective ==
Line 5: Line 6:
* Understand the role of a system administrator.
* Understand the role of a system administrator.
* Differentiate between server and workstation environments.
* Differentiate between server and workstation environments.
* Gain a basic understanding of virtualization concepts.
* Know the difference between linux and windows.
* Navigate the EVE-NG interface and create simple nodes and networks.
* Navigate the EVE-NG interface and create simple nodes and networks.


Line 18: Line 19:
# Have a basic topology area available to create nodes and links.
# Have a basic topology area available to create nodes and links.


== Lab Steps ==
== Module 1 Learning Objectives ==


=== Step 1: Overview of System Administration Roles ===
=== Overview of System Administration Roles ===
# Discuss the responsibilities of a sysadmin:
** User and group management
** Server and workstation deployment
** Security and patch management
** Network configuration
** Backup and recovery
# Write down 3 tasks you think a sysadmin would do daily.


=== Step 2: Understanding Server vs. Workstation Environments ===
===== Responsibilities of a sysadmin: =====
# Identify which VMs in EVE-NG are “servers” and which are “workstations.”
* User and group management
# Discuss key differences:
* Server and workstation deployment
* Security and patch management
* Network configuration
* Backup and recovery
=== Understanding Server vs. Client Environments ===
 
===== key differences: =====
* Servers often run headless or minimal GUI, provide services to multiple users.
* Servers often run headless or minimal GUI, provide services to multiple users.
* Workstations are user-focused with full GUI and productivity apps.
* Workstations are user-focused with full GUI and productivity apps.
# Document the differences in a small table:
{| class="wikitable"
{| class="wikitable"
! Feature !! Server !! Workstation
! Feature !! Server !! Workstation
Line 46: Line 44:
|}
|}


=== Step 3: Introduction to Virtualisation Concepts ===
=== Introduction to Linux ===
# Understand the concept of virtual machines and hypervisors:
 
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi)
===== Complete research on Ubuntu 24.05: =====
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)
* What is ubuntu?
# Discuss EVE-NG as a network-focused virtualization platform that allows multiple OS nodes to interconnect.
* What is open source software?
* What other versions of linux exist?
* Ubuntu Desktop vs Ubuntu Server?
 
== Module 1 Hands On Lab ==


=== Step 4: Exploring the EVE-NG Interface ===
=== Step 1: Exploring the EVE-NG Interface ===
# Log in to EVE-NG web interface.
# Log in to EVE-NG web interface.
# Navigate the main menu:
# Navigate the main menu:
Line 59: Line 61:
* ''Topology Connections'' – connect nodes via virtual links
* ''Topology Connections'' – connect nodes via virtual links


=== Step 5: Creating Basic Nodes and Networks ===
=== Step 2: Creating Basic Nodes and Networks ===
# Create a new lab:
 
===== Create a new lab: =====
* Lab name: ''Module1_Lab''
* Lab name: ''Module1_Lab''
* Save location: ''/Labs/Module1/''
* Add Network: for network type select "Management(cloud0)"
# Add two nodes:
 
* Node 1: Linux VM
* Add Node 1: Linux Server 24.04 VM
* Node 2: Windows VM
* Add Node 2: Windows 11 VM
# Connect the nodes using a virtual link.
# Connect the nodes to the network with virtual links.
# Start both nodes.
# Start both nodes.
# Open the console for each node to verify connectivity (you can ping each other later if IP addresses are configured).
# Follow the prompts to setup each machine.
'''IP Addressing and Commands:'''
* In windows open cmd and type: <code>ipconfig</code>
* In Ubuntu type: <code>ip a</code>
* note down you ipv4 addresses
* from the Windows PC ping the ip address of your ubuntu machine <code>ping [ip of ubuntu machine without squarebrackets]</code>
 
=== Step 3: Setup Ubuntu as web server: ===
 
On the ubuntu server install apache2
 
<code>sudo apt update</code>
 
<code>sudo apt install apache2</code>
 
On your windows 11 VM open edge and navigate to the ip address of your ubuntu server, you should see the apache page.
 
Which is the sever and which is the client in this lab.
 
=== Step 4: Windows vs Linux commands: ===
try out the following commands in your windows machine vs your ubuntu machine and compare their output.
{| class="wikitable"
|+
!Win 11 CMD
!Ubuntu 24.04 Terminal
|-
|<code>dir</code>
|<code>ls</code>
|-
|<code>cd C:\</code>
|<code>cd /</code>
|-
|<code>dir</code>
|<code>ls</code>
|-
|<code>tasklist</code>
|<code>ps aux</code>
|-
|<code>whoami</code>
|<code>whoami</code>
|-
|<code>echo helloworld</code>
|<code>echo helloworld</code>
|-
|<code>taskmgr</code>
|<code>top</code>
|}
'''tip''' to get out of programs like top in ubuntu press control+c.


=== Step 6: Documentation ===
=== Step 5: Documentation ===
Submit this on [https://colourfi.training ColourFi LMS] (subscribers only)
# Take a screenshot of your lab topology with nodes and links.
# Take a screenshot of your lab topology with nodes and links.
# Label which node is server, which is workstation.
# Label which node is server, which is client.
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualization.
# What is Apache2 for
# Explain what each command does and the difference between windows and linux commands
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualisation.


== Expected Outcomes ==
== Expected Outcomes ==
* Students can identify server vs. workstation roles.
* Students can identify server vs. client roles.
* Students can navigate the EVE-NG interface.
* Students can navigate the EVE-NG interface.
* Students can create at least two nodes and connect them via a virtual network.
* Students can create at least two nodes and connect them via a virtual network.
* Students understand basic virtualization concepts.
* Students understand basic virtualisation concepts.
* students have basic knowledge of linux commands.

Latest revision as of 09:29, 6 October 2025

Module 1 Lab: Introduction to System Administration

Module 1 of Basic System Administration Bootcamp

Objective

By the end of this lab, students will:

  • Understand the role of a system administrator.
  • Differentiate between server and workstation environments.
  • Know the difference between linux and windows.
  • Navigate the EVE-NG interface and create simple nodes and networks.

Prerequisites

  • Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).
  • A web browser to access EVE-NG.
  • Basic knowledge of IP addressing is helpful but not mandatory.

Lab Setup

  1. Log in to your EVE-NG environment.
  2. Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).
  3. Have a basic topology area available to create nodes and links.

Module 1 Learning Objectives

Overview of System Administration Roles

Responsibilities of a sysadmin:
  • User and group management
  • Server and workstation deployment
  • Security and patch management
  • Network configuration
  • Backup and recovery

Understanding Server vs. Client Environments

key differences:
  • Servers often run headless or minimal GUI, provide services to multiple users.
  • Workstations are user-focused with full GUI and productivity apps.
Feature Server Workstation
GUI Minimal/optional Full
Purpose Provide services User productivity
Number of users Multiple Single

Introduction to Linux

Complete research on Ubuntu 24.05:
  • What is ubuntu?
  • What is open source software?
  • What other versions of linux exist?
  • Ubuntu Desktop vs Ubuntu Server?

Module 1 Hands On Lab

Step 1: Exploring the EVE-NG Interface

  1. Log in to EVE-NG web interface.
  2. Navigate the main menu:
  • Lab View – shows topology and nodes
  • Node Management – add/remove nodes
  • Topology Connections – connect nodes via virtual links

Step 2: Creating Basic Nodes and Networks

Create a new lab:
  • Lab name: Module1_Lab
  • Add Network: for network type select "Management(cloud0)"
  • Add Node 1: Linux Server 24.04 VM
  • Add Node 2: Windows 11 VM
  1. Connect the nodes to the network with virtual links.
  2. Start both nodes.
  3. Follow the prompts to setup each machine.

IP Addressing and Commands:

  • In windows open cmd and type: ipconfig
  • In Ubuntu type: ip a
  • note down you ipv4 addresses
  • from the Windows PC ping the ip address of your ubuntu machine ping [ip of ubuntu machine without squarebrackets]

Step 3: Setup Ubuntu as web server:

On the ubuntu server install apache2

sudo apt update

sudo apt install apache2

On your windows 11 VM open edge and navigate to the ip address of your ubuntu server, you should see the apache page.

Which is the sever and which is the client in this lab.

Step 4: Windows vs Linux commands:

try out the following commands in your windows machine vs your ubuntu machine and compare their output.

Win 11 CMD Ubuntu 24.04 Terminal
dir ls
cd C:\ cd /
dir ls
tasklist ps aux
whoami whoami
echo helloworld echo helloworld
taskmgr top

tip to get out of programs like top in ubuntu press control+c.

Step 5: Documentation

Submit this on ColourFi LMS (subscribers only)

  1. Take a screenshot of your lab topology with nodes and links.
  2. Label which node is server, which is client.
  3. What is Apache2 for
  4. Explain what each command does and the difference between windows and linux commands
  5. Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualisation.

Expected Outcomes

  • Students can identify server vs. client roles.
  • Students can navigate the EVE-NG interface.
  • Students can create at least two nodes and connect them via a virtual network.
  • Students understand basic virtualisation concepts.
  • students have basic knowledge of linux commands.