<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://colourfi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rvxxc</id>
	<title>ColourFi Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://colourfi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rvxxc"/>
	<link rel="alternate" type="text/html" href="https://colourfi.wiki/Special:Contributions/Rvxxc"/>
	<updated>2026-06-13T04:12:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=35</id>
		<title>Basic System Administration Bootcamp - Module 2</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=35"/>
		<updated>2025-10-06T13:39:31Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Lab: Basic System Administration Bootcamp - Module 2 =&lt;br /&gt;
Module 2 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
In this lab, you will learn how to:&lt;br /&gt;
* Install and deploy Windows Server and Linux VMs in EVE-NG.&lt;br /&gt;
* Configure core system settings: hostname, IP address, and time zone.&lt;br /&gt;
* Create and manage user accounts.&lt;br /&gt;
* Setup a pfSense firewall.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* EVE-NG environment prepared (local or hosted by ColourFi).&lt;br /&gt;
* Windows Server ISO image, a Linux distribution ISO (e.g., Ubuntu) and pfSense firewall image.&lt;br /&gt;
* Basic understanding of virtualisation concepts.&lt;br /&gt;
&lt;br /&gt;
== Step 1: Deploy VMs in EVE-NG ==&lt;br /&gt;
* Log into your EVE-NG environment.&lt;br /&gt;
* Create a new lab file named Module 2&lt;br /&gt;
* Add Network Management(Cloud0)&lt;br /&gt;
&lt;br /&gt;
*Add five nodes:&lt;br /&gt;
*# &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039;&lt;br /&gt;
*# &#039;&#039;&#039;Ubuntu VM&#039;&#039;&#039;&lt;br /&gt;
*# &#039;&#039;&#039;Windows 11 VM&#039;&#039;&#039;&lt;br /&gt;
*# &#039;&#039;&#039;pfSense firewall&#039;&#039;&#039;&lt;br /&gt;
*# &#039;&#039;&#039;Dell OS 10 Switch&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Connect the firewall to the Cloud&lt;br /&gt;
* Connect the other side of the firewall to the Dell OS 10 Switch&lt;br /&gt;
* Connect all other nodes to the OS 10 Switch.&lt;br /&gt;
* Start the nodes and proceed with the OS installation.&lt;br /&gt;
*&lt;br /&gt;
** &#039;&#039;&#039;Windows Server and Windows 11&#039;&#039;&#039;: Follow the wizard to complete installation.&lt;br /&gt;
** &#039;&#039;&#039;Linux&#039;&#039;&#039;: Select install option and complete basic setup (ensure you enable SSH).&lt;br /&gt;
&lt;br /&gt;
== Step 2: Configure System Settings ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Server Manager&#039;&#039;&#039; → Local Server.&lt;br /&gt;
# Change &#039;&#039;&#039;Computer Name&#039;&#039;&#039; → Set hostname (e.g., &#039;&#039;WIN-SERVER01&#039;&#039;).&lt;br /&gt;
# Configure &#039;&#039;&#039;Static IP&#039;&#039;&#039; from Control Panel:&lt;br /&gt;
## Network &amp;amp; Sharing → Adapter Settings → Set IPv4 manually.&lt;br /&gt;
## Example: &#039;&#039;192.168.100.10 /24, Gateway 192.168.100.1&#039;&#039;.&lt;br /&gt;
# Set Time Zone:&lt;br /&gt;
## Date &amp;amp; Time settings → Change time zone (e.g., &#039;&#039;UTC+8 Perth&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Open terminal (or console).&lt;br /&gt;
# Change hostname:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo hostnamectl set-hostname linux-server01&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Configure IP address (example using netplan for Ubuntu):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo nano /etc/netplan/01-netcfg.yaml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Example config:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network:&lt;br /&gt;
  version: 2&lt;br /&gt;
  ethernets:&lt;br /&gt;
    ens3:&lt;br /&gt;
      dhcp4: no&lt;br /&gt;
      addresses: [192.168.100.11/24]&lt;br /&gt;
      gateway4: 192.168.100.1&lt;br /&gt;
      nameservers:&lt;br /&gt;
        addresses: [8.8.8.8, 1.1.1.1]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Apply changes:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo netplan apply&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Set time zone:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo timedatectl set-timezone Australia/Perth&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 3: User Account Management ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Computer Management&#039;&#039;&#039; → Local Users and Groups.&lt;br /&gt;
# Add a new user (e.g., &#039;&#039;student1&#039;&#039;) with a secure password.&lt;br /&gt;
# Assign the user to a group (e.g., &#039;&#039;Administrators&#039;&#039; or &#039;&#039;Users&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Create a new user:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo adduser student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Assign user to groups (e.g., sudo):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG sudo student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hands-On Exercise ==&lt;br /&gt;
* Deploy one &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039; and one &#039;&#039;&#039;Linux VM&#039;&#039;&#039; in EVE-NG.&lt;br /&gt;
* Configure each with:&lt;br /&gt;
** Unique hostname (&#039;&#039;WIN-SERVER01&#039;&#039; / &#039;&#039;LINUX-SERVER01&#039;&#039;).&lt;br /&gt;
** Static IP address (&#039;&#039;192.168.100.10&#039;&#039; / &#039;&#039;192.168.100.11&#039;&#039;).&lt;br /&gt;
** Correct time zone (&#039;&#039;Australia/Perth&#039;&#039;).&lt;br /&gt;
* Create at least one additional user account on each system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Deliverable:&#039;&#039;&#039; Both VMs should be deployed, networked, and accessible with configured hostnames, IPs, and user accounts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=34</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=34"/>
		<updated>2025-10-06T13:30:05Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide [https://colourfi.io pre-configured EVE-NG machines] with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured [https://colourfi.io Colourfi EVE-NG machine]&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. client environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to linux&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Basic System Administration Course - Module 1]]&lt;br /&gt;
&lt;br /&gt;
	ColourFi Subscribers only [https://colourfi.training Quiz] &lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) and Firewall ===&lt;br /&gt;
&lt;br /&gt;
* Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
* Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
* User account creation and management&lt;br /&gt;
&lt;br /&gt;
* Basic pfSense firewall setup&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Basic System Administration Bootcamp - Module 2]]&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Explore_EVE-NG_interface,_create_basic_nodes_and_networks&amp;diff=33</id>
		<title>Explore EVE-NG interface, create basic nodes and networks</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Explore_EVE-NG_interface,_create_basic_nodes_and_networks&amp;diff=33"/>
		<updated>2025-10-06T13:29:17Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Rvxxc moved page Explore EVE-NG interface, create basic nodes and networks to Basic System Administration Course - Module 1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Basic System Administration Course - Module 1]]&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=32</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=32"/>
		<updated>2025-10-06T13:29:17Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Rvxxc moved page Explore EVE-NG interface, create basic nodes and networks to Basic System Administration Course - Module 1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
Module 1 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Know the difference between linux and windows.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Client Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Linux ===&lt;br /&gt;
&lt;br /&gt;
===== Complete research on Ubuntu 24.05: =====&lt;br /&gt;
* What is ubuntu?&lt;br /&gt;
* What is open source software?&lt;br /&gt;
* What other versions of linux exist?&lt;br /&gt;
* Ubuntu Desktop vs Ubuntu Server?&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
* Add Network: for network type select &amp;quot;Management(cloud0)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Add Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Add Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes to the network with virtual links.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Follow the prompts to setup each machine.&lt;br /&gt;
&#039;&#039;&#039;IP Addressing and Commands:&#039;&#039;&#039;&lt;br /&gt;
* In windows open cmd and type: &amp;lt;code&amp;gt;ipconfig&amp;lt;/code&amp;gt;&lt;br /&gt;
* In Ubuntu type: &amp;lt;code&amp;gt;ip a&amp;lt;/code&amp;gt;&lt;br /&gt;
* note down you ipv4 addresses&lt;br /&gt;
* from the Windows PC ping the ip address of your ubuntu machine &amp;lt;code&amp;gt;ping [ip of ubuntu machine without squarebrackets]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Setup Ubuntu as web server: ===&lt;br /&gt;
&lt;br /&gt;
On the ubuntu server install apache2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt update&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt install apache2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On your windows 11 VM open edge and navigate to the ip address of your ubuntu server, you should see the apache page.&lt;br /&gt;
&lt;br /&gt;
Which is the sever and which is the client in this lab.&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Windows vs Linux commands: ===&lt;br /&gt;
try out the following commands in your windows machine vs your ubuntu machine and compare their output.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Win 11 CMD&lt;br /&gt;
!Ubuntu 24.04 Terminal&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cd C:\&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;cd /&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tasklist&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ps aux&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;taskmgr&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;tip&#039;&#039;&#039; to get out of programs like top in ubuntu press control+c.&lt;br /&gt;
&lt;br /&gt;
=== Step 5: Documentation ===&lt;br /&gt;
Submit this on [https://colourfi.training ColourFi LMS] (subscribers only)&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is client.&lt;br /&gt;
# What is Apache2 for&lt;br /&gt;
# Explain what each command does and the difference between windows and linux commands&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualisation.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. client roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualisation concepts.&lt;br /&gt;
* students have basic knowledge of linux commands.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=31</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=31"/>
		<updated>2025-10-06T13:28:42Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide [https://colourfi.io pre-configured EVE-NG machines] with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured [https://colourfi.io Colourfi EVE-NG machine]&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. client environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to linux&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Explore EVE-NG interface, create basic nodes and networks|Basic System Administration Course]] - Module 1&lt;br /&gt;
&lt;br /&gt;
	ColourFi Subscribers only [https://colourfi.training Quiz] &lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) and Firewall ===&lt;br /&gt;
&lt;br /&gt;
* Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
* Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
* User account creation and management&lt;br /&gt;
&lt;br /&gt;
* Basic pfSense firewall setup&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Basic System Administration Bootcamp - Module 2]]&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Deploy_a_Windows_and_Linux_VM_in_EVE-NG_and_configure_hostname,_IP,_and_users&amp;diff=30</id>
		<title>Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Deploy_a_Windows_and_Linux_VM_in_EVE-NG_and_configure_hostname,_IP,_and_users&amp;diff=30"/>
		<updated>2025-10-06T13:27:29Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Rvxxc moved page Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users to Basic System Administration Bootcamp - Module 2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Basic System Administration Bootcamp - Module 2]]&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=29</id>
		<title>Basic System Administration Bootcamp - Module 2</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=29"/>
		<updated>2025-10-06T13:27:29Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Rvxxc moved page Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users to Basic System Administration Bootcamp - Module 2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Lab: Installing and Configuring Windows Server and Linux VMs in EVE-NG =&lt;br /&gt;
Module 2 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
In this lab, you will learn how to:&lt;br /&gt;
* Install and deploy Windows Server and Linux VMs in EVE-NG.&lt;br /&gt;
* Configure core system settings: hostname, IP address, and time zone.&lt;br /&gt;
* Create and manage user accounts.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* EVE-NG environment prepared (local or hosted by ColourFi).&lt;br /&gt;
* Windows Server ISO image and a Linux distribution ISO (e.g., Ubuntu).&lt;br /&gt;
* Basic understanding of virtualization concepts.&lt;br /&gt;
&lt;br /&gt;
== Step 1: Deploy VMs in EVE-NG ==&lt;br /&gt;
# Log into your EVE-NG environment.&lt;br /&gt;
# Create a new lab file (e.g., &#039;&#039;System_Config_Lab.unl&#039;&#039;).&lt;br /&gt;
# Add three nodes:&lt;br /&gt;
# Add Network Management(Cloud0)&lt;br /&gt;
** &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039;&lt;br /&gt;
** &#039;&#039;&#039;Ubuntu VM&#039;&#039;&#039;&lt;br /&gt;
** &#039;&#039;&#039;Windows 11 VM&#039;&#039;&#039;&lt;br /&gt;
# Connect all nodes to the same management network.&lt;br /&gt;
# Start the nodes and proceed with the OS installation:&lt;br /&gt;
** &#039;&#039;&#039;Windows Server and Windows 11&#039;&#039;&#039;: Follow the wizard to complete installation.&lt;br /&gt;
** &#039;&#039;&#039;Linux&#039;&#039;&#039;: Select install option and complete basic setup (ensure you enable SSH).&lt;br /&gt;
&lt;br /&gt;
== Step 2: Configure System Settings ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Server Manager&#039;&#039;&#039; → Local Server.&lt;br /&gt;
# Change &#039;&#039;&#039;Computer Name&#039;&#039;&#039; → Set hostname (e.g., &#039;&#039;WIN-SERVER01&#039;&#039;).&lt;br /&gt;
# Configure &#039;&#039;&#039;Static IP&#039;&#039;&#039; from Control Panel:&lt;br /&gt;
## Network &amp;amp; Sharing → Adapter Settings → Set IPv4 manually.&lt;br /&gt;
## Example: &#039;&#039;192.168.100.10 /24, Gateway 192.168.100.1&#039;&#039;.&lt;br /&gt;
# Set Time Zone:&lt;br /&gt;
## Date &amp;amp; Time settings → Change time zone (e.g., &#039;&#039;UTC+8 Perth&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Open terminal (or console).&lt;br /&gt;
# Change hostname:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo hostnamectl set-hostname linux-server01&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Configure IP address (example using netplan for Ubuntu):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo nano /etc/netplan/01-netcfg.yaml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Example config:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network:&lt;br /&gt;
  version: 2&lt;br /&gt;
  ethernets:&lt;br /&gt;
    ens3:&lt;br /&gt;
      dhcp4: no&lt;br /&gt;
      addresses: [192.168.100.11/24]&lt;br /&gt;
      gateway4: 192.168.100.1&lt;br /&gt;
      nameservers:&lt;br /&gt;
        addresses: [8.8.8.8, 1.1.1.1]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Apply changes:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo netplan apply&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Set time zone:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo timedatectl set-timezone Australia/Perth&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 3: User Account Management ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Computer Management&#039;&#039;&#039; → Local Users and Groups.&lt;br /&gt;
# Add a new user (e.g., &#039;&#039;student1&#039;&#039;) with a secure password.&lt;br /&gt;
# Assign the user to a group (e.g., &#039;&#039;Administrators&#039;&#039; or &#039;&#039;Users&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Create a new user:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo adduser student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Assign user to groups (e.g., sudo):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG sudo student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hands-On Exercise ==&lt;br /&gt;
* Deploy one &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039; and one &#039;&#039;&#039;Linux VM&#039;&#039;&#039; in EVE-NG.&lt;br /&gt;
* Configure each with:&lt;br /&gt;
** Unique hostname (&#039;&#039;WIN-SERVER01&#039;&#039; / &#039;&#039;LINUX-SERVER01&#039;&#039;).&lt;br /&gt;
** Static IP address (&#039;&#039;192.168.100.10&#039;&#039; / &#039;&#039;192.168.100.11&#039;&#039;).&lt;br /&gt;
** Correct time zone (&#039;&#039;Australia/Perth&#039;&#039;).&lt;br /&gt;
* Create at least one additional user account on each system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Deliverable:&#039;&#039;&#039; Both VMs should be deployed, networked, and accessible with configured hostnames, IPs, and user accounts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=28</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=28"/>
		<updated>2025-10-06T13:26:48Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide [https://colourfi.io pre-configured EVE-NG machines] with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured [https://colourfi.io Colourfi EVE-NG machine]&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. client environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to linux&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Explore EVE-NG interface, create basic nodes and networks]]&lt;br /&gt;
&lt;br /&gt;
	ColourFi Subscribers only [https://colourfi.training Quiz] &lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) and Firewall ===&lt;br /&gt;
&lt;br /&gt;
* Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
* Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
* User account creation and management&lt;br /&gt;
&lt;br /&gt;
* Basic pfSense firewall setup&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users|Basic System Administration Bootcamp]] - Module 2&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=27</id>
		<title>Basic System Administration Bootcamp - Module 2</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=27"/>
		<updated>2025-10-05T14:21:09Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: /* Step 1: Deploy VMs in EVE-NG */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Lab: Installing and Configuring Windows Server and Linux VMs in EVE-NG =&lt;br /&gt;
Module 2 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
In this lab, you will learn how to:&lt;br /&gt;
* Install and deploy Windows Server and Linux VMs in EVE-NG.&lt;br /&gt;
* Configure core system settings: hostname, IP address, and time zone.&lt;br /&gt;
* Create and manage user accounts.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* EVE-NG environment prepared (local or hosted by ColourFi).&lt;br /&gt;
* Windows Server ISO image and a Linux distribution ISO (e.g., Ubuntu).&lt;br /&gt;
* Basic understanding of virtualization concepts.&lt;br /&gt;
&lt;br /&gt;
== Step 1: Deploy VMs in EVE-NG ==&lt;br /&gt;
# Log into your EVE-NG environment.&lt;br /&gt;
# Create a new lab file (e.g., &#039;&#039;System_Config_Lab.unl&#039;&#039;).&lt;br /&gt;
# Add three nodes:&lt;br /&gt;
# Add Network Management(Cloud0)&lt;br /&gt;
** &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039;&lt;br /&gt;
** &#039;&#039;&#039;Ubuntu VM&#039;&#039;&#039;&lt;br /&gt;
** &#039;&#039;&#039;Windows 11 VM&#039;&#039;&#039;&lt;br /&gt;
# Connect all nodes to the same management network.&lt;br /&gt;
# Start the nodes and proceed with the OS installation:&lt;br /&gt;
** &#039;&#039;&#039;Windows Server and Windows 11&#039;&#039;&#039;: Follow the wizard to complete installation.&lt;br /&gt;
** &#039;&#039;&#039;Linux&#039;&#039;&#039;: Select install option and complete basic setup (ensure you enable SSH).&lt;br /&gt;
&lt;br /&gt;
== Step 2: Configure System Settings ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Server Manager&#039;&#039;&#039; → Local Server.&lt;br /&gt;
# Change &#039;&#039;&#039;Computer Name&#039;&#039;&#039; → Set hostname (e.g., &#039;&#039;WIN-SERVER01&#039;&#039;).&lt;br /&gt;
# Configure &#039;&#039;&#039;Static IP&#039;&#039;&#039; from Control Panel:&lt;br /&gt;
## Network &amp;amp; Sharing → Adapter Settings → Set IPv4 manually.&lt;br /&gt;
## Example: &#039;&#039;192.168.100.10 /24, Gateway 192.168.100.1&#039;&#039;.&lt;br /&gt;
# Set Time Zone:&lt;br /&gt;
## Date &amp;amp; Time settings → Change time zone (e.g., &#039;&#039;UTC+8 Perth&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Open terminal (or console).&lt;br /&gt;
# Change hostname:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo hostnamectl set-hostname linux-server01&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Configure IP address (example using netplan for Ubuntu):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo nano /etc/netplan/01-netcfg.yaml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Example config:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network:&lt;br /&gt;
  version: 2&lt;br /&gt;
  ethernets:&lt;br /&gt;
    ens3:&lt;br /&gt;
      dhcp4: no&lt;br /&gt;
      addresses: [192.168.100.11/24]&lt;br /&gt;
      gateway4: 192.168.100.1&lt;br /&gt;
      nameservers:&lt;br /&gt;
        addresses: [8.8.8.8, 1.1.1.1]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Apply changes:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo netplan apply&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Set time zone:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo timedatectl set-timezone Australia/Perth&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 3: User Account Management ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Computer Management&#039;&#039;&#039; → Local Users and Groups.&lt;br /&gt;
# Add a new user (e.g., &#039;&#039;student1&#039;&#039;) with a secure password.&lt;br /&gt;
# Assign the user to a group (e.g., &#039;&#039;Administrators&#039;&#039; or &#039;&#039;Users&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Create a new user:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo adduser student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Assign user to groups (e.g., sudo):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG sudo student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hands-On Exercise ==&lt;br /&gt;
* Deploy one &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039; and one &#039;&#039;&#039;Linux VM&#039;&#039;&#039; in EVE-NG.&lt;br /&gt;
* Configure each with:&lt;br /&gt;
** Unique hostname (&#039;&#039;WIN-SERVER01&#039;&#039; / &#039;&#039;LINUX-SERVER01&#039;&#039;).&lt;br /&gt;
** Static IP address (&#039;&#039;192.168.100.10&#039;&#039; / &#039;&#039;192.168.100.11&#039;&#039;).&lt;br /&gt;
** Correct time zone (&#039;&#039;Australia/Perth&#039;&#039;).&lt;br /&gt;
* Create at least one additional user account on each system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Deliverable:&#039;&#039;&#039; Both VMs should be deployed, networked, and accessible with configured hostnames, IPs, and user accounts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=26</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=26"/>
		<updated>2025-10-05T13:37:12Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: /* Module 1: Introduction to System Administration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide [https://colourfi.io pre-configured EVE-NG machines] with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured [https://colourfi.io Colourfi EVE-NG machine]&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. client environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to linux&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Explore EVE-NG interface, create basic nodes and networks]]&lt;br /&gt;
&lt;br /&gt;
	ColourFi Subscribers only [https://colourfi.training Quiz] &lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) ===&lt;br /&gt;
	•	Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
	•	Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
	•	User account creation and management&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users]]&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=25</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=25"/>
		<updated>2025-10-05T13:36:27Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
Module 1 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Know the difference between linux and windows.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Client Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Linux ===&lt;br /&gt;
&lt;br /&gt;
===== Complete research on Ubuntu 24.05: =====&lt;br /&gt;
* What is ubuntu?&lt;br /&gt;
* What is open source software?&lt;br /&gt;
* What other versions of linux exist?&lt;br /&gt;
* Ubuntu Desktop vs Ubuntu Server?&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
* Add Network: for network type select &amp;quot;Management(cloud0)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Add Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Add Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes to the network with virtual links.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Follow the prompts to setup each machine.&lt;br /&gt;
&#039;&#039;&#039;IP Addressing and Commands:&#039;&#039;&#039;&lt;br /&gt;
* In windows open cmd and type: &amp;lt;code&amp;gt;ipconfig&amp;lt;/code&amp;gt;&lt;br /&gt;
* In Ubuntu type: &amp;lt;code&amp;gt;ip a&amp;lt;/code&amp;gt;&lt;br /&gt;
* note down you ipv4 addresses&lt;br /&gt;
* from the Windows PC ping the ip address of your ubuntu machine &amp;lt;code&amp;gt;ping [ip of ubuntu machine without squarebrackets]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Setup Ubuntu as web server: ===&lt;br /&gt;
&lt;br /&gt;
On the ubuntu server install apache2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt update&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt install apache2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On your windows 11 VM open edge and navigate to the ip address of your ubuntu server, you should see the apache page.&lt;br /&gt;
&lt;br /&gt;
Which is the sever and which is the client in this lab.&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Windows vs Linux commands: ===&lt;br /&gt;
try out the following commands in your windows machine vs your ubuntu machine and compare their output.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Win 11 CMD&lt;br /&gt;
!Ubuntu 24.04 Terminal&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cd C:\&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;cd /&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tasklist&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ps aux&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;taskmgr&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;tip&#039;&#039;&#039; to get out of programs like top in ubuntu press control+c.&lt;br /&gt;
&lt;br /&gt;
=== Step 5: Documentation ===&lt;br /&gt;
Submit this on [https://colourfi.training ColourFi LMS] (subscribers only)&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is client.&lt;br /&gt;
# What is Apache2 for&lt;br /&gt;
# Explain what each command does and the difference between windows and linux commands&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualisation.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. client roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualisation concepts.&lt;br /&gt;
* students have basic knowledge of linux commands.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=24</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=24"/>
		<updated>2025-10-05T13:33:30Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
Module 1 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Gain a basic understanding of virtualisation concepts.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Workstation Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Virtualisation Concepts ===&lt;br /&gt;
&lt;br /&gt;
===== Understand the concept of virtual machines and hypervisors: =====&lt;br /&gt;
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi, Hyper-V)&lt;br /&gt;
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
* Add Network: for network type select &amp;quot;Management(cloud0)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Add Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Add Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes to the network with virtual links.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Follow the prompts to setup each machine.&lt;br /&gt;
&#039;&#039;&#039;IP Addressing and Commands:&#039;&#039;&#039;&lt;br /&gt;
* In windows open cmd and type: &amp;lt;code&amp;gt;ipconfig&amp;lt;/code&amp;gt;&lt;br /&gt;
* In Ubuntu type: &amp;lt;code&amp;gt;ip a&amp;lt;/code&amp;gt;&lt;br /&gt;
* note down you ipv4 addresses&lt;br /&gt;
* from the Windows PC ping the ip address of your ubuntu machine &amp;lt;code&amp;gt;ping [ip of ubuntu machine without squarebrackets]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Setup Ubuntu as web server: ===&lt;br /&gt;
&lt;br /&gt;
On the ubuntu server install apache2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt update&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt install apache2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On your windows 11 VM open edge and navigate to the ip address of your ubuntu server, you should see the apache page.&lt;br /&gt;
&lt;br /&gt;
Which is the sever and which is the client in this lab.&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Windows vs Linux commands: ===&lt;br /&gt;
try out the following commands in your windows machine vs your ubuntu machine and compare their output.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Win 11 CMD&lt;br /&gt;
!Ubuntu 24.04 Terminal&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cd C:\&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;cd /&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tasklist&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ps aux&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;taskmgr&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;tip&#039;&#039;&#039; to get out of programs like top in ubuntu press control+c.&lt;br /&gt;
&lt;br /&gt;
=== Step 5: Documentation ===&lt;br /&gt;
Submit this on [https://colourfi.training ColourFi LMS] (subscribers only)&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is client.&lt;br /&gt;
# What is Apache2 for&lt;br /&gt;
# Explain what each command does and the difference between windows and linux commands&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualisation.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. client roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualisation concepts.&lt;br /&gt;
* students have basic knowledge of linux commands.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=23</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=23"/>
		<updated>2025-10-05T13:31:04Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
Module 1 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Gain a basic understanding of virtualisation concepts.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Workstation Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Virtualisation Concepts ===&lt;br /&gt;
&lt;br /&gt;
===== Understand the concept of virtual machines and hypervisors: =====&lt;br /&gt;
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi, Hyper-V)&lt;br /&gt;
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
* Add Network: for network type select &amp;quot;Management(cloud0)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* Add Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Add Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes to the network with virtual links.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Follow the prompts to setup each machine.&lt;br /&gt;
&#039;&#039;&#039;IP Addressing and Commands:&#039;&#039;&#039;&lt;br /&gt;
* In windows open cmd and type: &amp;lt;code&amp;gt;ipconfig&amp;lt;/code&amp;gt;&lt;br /&gt;
* In Ubuntu type: &amp;lt;code&amp;gt;ip a&amp;lt;/code&amp;gt;&lt;br /&gt;
* note down you ipv4 addresses&lt;br /&gt;
* from the Windows PC ping the ip address of your ubuntu machine &amp;lt;code&amp;gt;ping [ip of ubuntu machine without squarebrackets]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Setup Ubuntu as web server: ===&lt;br /&gt;
&lt;br /&gt;
On the ubuntu server install apache2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt update&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sudo apt install apache2&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On your windows 11 VM open edge and navigate to the ip address of your ubuntu server, you should see the apache page.&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Windows vs Linux commands: ===&lt;br /&gt;
try out the following commands in your windows machine vs your ubuntu machine and compare their output.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Win 11 CMD&lt;br /&gt;
!Ubuntu 24.04 Terminal&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;cd C:\&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;cd /&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;dir&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ls&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tasklist&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;ps aux&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;whoami&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;echo helloworld&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;taskmgr&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&#039;&#039;&#039;tip&#039;&#039;&#039; to get out of programs like top in ubuntu press control+c.&lt;br /&gt;
&lt;br /&gt;
=== Step 5: Documentation ===&lt;br /&gt;
Submit this on [https://colourfi.training ColourFi LMS] (subscribers only)&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is workstation.&lt;br /&gt;
# What is Apache2&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualization.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. workstation roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualization concepts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=21</id>
		<title>Basic System Administration Bootcamp - Module 2</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=21"/>
		<updated>2025-10-05T03:15:52Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Lab: Installing and Configuring Windows Server and Linux VMs in EVE-NG =&lt;br /&gt;
Module 2 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
In this lab, you will learn how to:&lt;br /&gt;
* Install and deploy Windows Server and Linux VMs in EVE-NG.&lt;br /&gt;
* Configure core system settings: hostname, IP address, and time zone.&lt;br /&gt;
* Create and manage user accounts.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* EVE-NG environment prepared (local or hosted by ColourFi).&lt;br /&gt;
* Windows Server ISO image and a Linux distribution ISO (e.g., Ubuntu).&lt;br /&gt;
* Basic understanding of virtualization concepts.&lt;br /&gt;
&lt;br /&gt;
== Step 1: Deploy VMs in EVE-NG ==&lt;br /&gt;
# Log into your EVE-NG environment.&lt;br /&gt;
# Create a new lab file (e.g., &#039;&#039;System_Config_Lab.unl&#039;&#039;).&lt;br /&gt;
# Add two nodes:&lt;br /&gt;
** &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039; (using your Windows ISO/template).&lt;br /&gt;
** &#039;&#039;&#039;Linux VM&#039;&#039;&#039; (e.g., Ubuntu or CentOS).&lt;br /&gt;
# Connect both nodes to the same management network.&lt;br /&gt;
# Start the nodes and proceed with the OS installation:&lt;br /&gt;
** &#039;&#039;&#039;Windows Server&#039;&#039;&#039;: Follow the wizard to complete installation.&lt;br /&gt;
** &#039;&#039;&#039;Linux&#039;&#039;&#039;: Select install option and complete basic setup.&lt;br /&gt;
&lt;br /&gt;
== Step 2: Configure System Settings ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Server Manager&#039;&#039;&#039; → Local Server.&lt;br /&gt;
# Change &#039;&#039;&#039;Computer Name&#039;&#039;&#039; → Set hostname (e.g., &#039;&#039;WIN-SERVER01&#039;&#039;).&lt;br /&gt;
# Configure &#039;&#039;&#039;Static IP&#039;&#039;&#039; from Control Panel:&lt;br /&gt;
## Network &amp;amp; Sharing → Adapter Settings → Set IPv4 manually.&lt;br /&gt;
## Example: &#039;&#039;192.168.100.10 /24, Gateway 192.168.100.1&#039;&#039;.&lt;br /&gt;
# Set Time Zone:&lt;br /&gt;
## Date &amp;amp; Time settings → Change time zone (e.g., &#039;&#039;UTC+8 Perth&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Open terminal (or console).&lt;br /&gt;
# Change hostname:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo hostnamectl set-hostname linux-server01&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Configure IP address (example using netplan for Ubuntu):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo nano /etc/netplan/01-netcfg.yaml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Example config:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network:&lt;br /&gt;
  version: 2&lt;br /&gt;
  ethernets:&lt;br /&gt;
    ens3:&lt;br /&gt;
      dhcp4: no&lt;br /&gt;
      addresses: [192.168.100.11/24]&lt;br /&gt;
      gateway4: 192.168.100.1&lt;br /&gt;
      nameservers:&lt;br /&gt;
        addresses: [8.8.8.8, 1.1.1.1]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Apply changes:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo netplan apply&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Set time zone:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo timedatectl set-timezone Australia/Perth&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 3: User Account Management ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Computer Management&#039;&#039;&#039; → Local Users and Groups.&lt;br /&gt;
# Add a new user (e.g., &#039;&#039;student1&#039;&#039;) with a secure password.&lt;br /&gt;
# Assign the user to a group (e.g., &#039;&#039;Administrators&#039;&#039; or &#039;&#039;Users&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Create a new user:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo adduser student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Assign user to groups (e.g., sudo):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG sudo student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hands-On Exercise ==&lt;br /&gt;
* Deploy one &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039; and one &#039;&#039;&#039;Linux VM&#039;&#039;&#039; in EVE-NG.&lt;br /&gt;
* Configure each with:&lt;br /&gt;
** Unique hostname (&#039;&#039;WIN-SERVER01&#039;&#039; / &#039;&#039;LINUX-SERVER01&#039;&#039;).&lt;br /&gt;
** Static IP address (&#039;&#039;192.168.100.10&#039;&#039; / &#039;&#039;192.168.100.11&#039;&#039;).&lt;br /&gt;
** Correct time zone (&#039;&#039;Australia/Perth&#039;&#039;).&lt;br /&gt;
* Create at least one additional user account on each system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Deliverable:&#039;&#039;&#039; Both VMs should be deployed, networked, and accessible with configured hostnames, IPs, and user accounts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=20</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=20"/>
		<updated>2025-10-05T03:15:09Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
Module 1 of [[Basic System Administration Bootcamp]]&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Gain a basic understanding of virtualisation concepts.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Workstation Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Virtualisation Concepts ===&lt;br /&gt;
&lt;br /&gt;
===== Understand the concept of virtual machines and hypervisors: =====&lt;br /&gt;
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi, Hyper-V)&lt;br /&gt;
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes using a virtual link.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Set static ip addresses on each machine&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!VM&lt;br /&gt;
!IP Address&lt;br /&gt;
!Subnet Mask&lt;br /&gt;
!Gateway&lt;br /&gt;
|-&lt;br /&gt;
|Windows 11&lt;br /&gt;
|192.168.10.10&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|-&lt;br /&gt;
|Ubuntu 24.04&lt;br /&gt;
|192.168.10.11&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
# Open the console for each node to verify connectivity (you can ping each other later if IP addresses are configured).&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Setup Ubuntu as web server: ===&lt;br /&gt;
On the ubuntu server install apache2&amp;lt;blockquote&amp;gt;sudo apt update&lt;br /&gt;
&lt;br /&gt;
sudo apt install apache2&amp;lt;/blockquote&amp;gt;On your windows 11 VM open edge and navigate to http://192.168.10.10&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Documentation ===&lt;br /&gt;
Submit this on [https://colourfi.training ColourFi LMS] (subscribers only)&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is workstation.&lt;br /&gt;
# What is Apache2&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualization.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. workstation roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualization concepts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=19</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=19"/>
		<updated>2025-10-04T13:22:10Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide [https://colourfi.io pre-configured EVE-NG machines] with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured [https://colourfi.io Colourfi EVE-NG machine]&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. workstation environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to virtualisation concepts&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Explore EVE-NG interface, create basic nodes and networks]]&lt;br /&gt;
&lt;br /&gt;
	ColourFi Subscribers only [https://colourfi.training Quiz] &lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) ===&lt;br /&gt;
	•	Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
	•	Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
	•	User account creation and management&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users]]&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=18</id>
		<title>Basic System Administration Bootcamp - Module 2</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp_-_Module_2&amp;diff=18"/>
		<updated>2025-10-04T13:21:43Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Created page with &amp;quot;= Lab: Installing and Configuring Windows Server and Linux VMs in EVE-NG =  == Objective == In this lab, you will learn how to: * Install and deploy Windows Server and Linux VMs in EVE-NG. * Configure core system settings: hostname, IP address, and time zone. * Create and manage user accounts.  == Prerequisites == * EVE-NG environment prepared (local or hosted by ColourFi). * Windows Server ISO image and a Linux distribution ISO (e.g., Ubuntu). * Basic understanding of v...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Lab: Installing and Configuring Windows Server and Linux VMs in EVE-NG =&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
In this lab, you will learn how to:&lt;br /&gt;
* Install and deploy Windows Server and Linux VMs in EVE-NG.&lt;br /&gt;
* Configure core system settings: hostname, IP address, and time zone.&lt;br /&gt;
* Create and manage user accounts.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* EVE-NG environment prepared (local or hosted by ColourFi).&lt;br /&gt;
* Windows Server ISO image and a Linux distribution ISO (e.g., Ubuntu).&lt;br /&gt;
* Basic understanding of virtualization concepts.&lt;br /&gt;
&lt;br /&gt;
== Step 1: Deploy VMs in EVE-NG ==&lt;br /&gt;
# Log into your EVE-NG environment.&lt;br /&gt;
# Create a new lab file (e.g., &#039;&#039;System_Config_Lab.unl&#039;&#039;).&lt;br /&gt;
# Add two nodes:&lt;br /&gt;
** &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039; (using your Windows ISO/template).&lt;br /&gt;
** &#039;&#039;&#039;Linux VM&#039;&#039;&#039; (e.g., Ubuntu or CentOS).&lt;br /&gt;
# Connect both nodes to the same management network.&lt;br /&gt;
# Start the nodes and proceed with the OS installation:&lt;br /&gt;
** &#039;&#039;&#039;Windows Server&#039;&#039;&#039;: Follow the wizard to complete installation.&lt;br /&gt;
** &#039;&#039;&#039;Linux&#039;&#039;&#039;: Select install option and complete basic setup.&lt;br /&gt;
&lt;br /&gt;
== Step 2: Configure System Settings ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Server Manager&#039;&#039;&#039; → Local Server.&lt;br /&gt;
# Change &#039;&#039;&#039;Computer Name&#039;&#039;&#039; → Set hostname (e.g., &#039;&#039;WIN-SERVER01&#039;&#039;).&lt;br /&gt;
# Configure &#039;&#039;&#039;Static IP&#039;&#039;&#039; from Control Panel:&lt;br /&gt;
## Network &amp;amp; Sharing → Adapter Settings → Set IPv4 manually.&lt;br /&gt;
## Example: &#039;&#039;192.168.100.10 /24, Gateway 192.168.100.1&#039;&#039;.&lt;br /&gt;
# Set Time Zone:&lt;br /&gt;
## Date &amp;amp; Time settings → Change time zone (e.g., &#039;&#039;UTC+8 Perth&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Open terminal (or console).&lt;br /&gt;
# Change hostname:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo hostnamectl set-hostname linux-server01&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Configure IP address (example using netplan for Ubuntu):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo nano /etc/netplan/01-netcfg.yaml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Example config:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network:&lt;br /&gt;
  version: 2&lt;br /&gt;
  ethernets:&lt;br /&gt;
    ens3:&lt;br /&gt;
      dhcp4: no&lt;br /&gt;
      addresses: [192.168.100.11/24]&lt;br /&gt;
      gateway4: 192.168.100.1&lt;br /&gt;
      nameservers:&lt;br /&gt;
        addresses: [8.8.8.8, 1.1.1.1]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Apply changes:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo netplan apply&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Set time zone:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo timedatectl set-timezone Australia/Perth&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 3: User Account Management ==&lt;br /&gt;
&lt;br /&gt;
=== On Windows Server ===&lt;br /&gt;
# Open &#039;&#039;&#039;Computer Management&#039;&#039;&#039; → Local Users and Groups.&lt;br /&gt;
# Add a new user (e.g., &#039;&#039;student1&#039;&#039;) with a secure password.&lt;br /&gt;
# Assign the user to a group (e.g., &#039;&#039;Administrators&#039;&#039; or &#039;&#039;Users&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
=== On Linux ===&lt;br /&gt;
# Create a new user:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo adduser student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Assign user to groups (e.g., sudo):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo usermod -aG sudo student1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hands-On Exercise ==&lt;br /&gt;
* Deploy one &#039;&#039;&#039;Windows Server VM&#039;&#039;&#039; and one &#039;&#039;&#039;Linux VM&#039;&#039;&#039; in EVE-NG.&lt;br /&gt;
* Configure each with:&lt;br /&gt;
** Unique hostname (&#039;&#039;WIN-SERVER01&#039;&#039; / &#039;&#039;LINUX-SERVER01&#039;&#039;).&lt;br /&gt;
** Static IP address (&#039;&#039;192.168.100.10&#039;&#039; / &#039;&#039;192.168.100.11&#039;&#039;).&lt;br /&gt;
** Correct time zone (&#039;&#039;Australia/Perth&#039;&#039;).&lt;br /&gt;
* Create at least one additional user account on each system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Deliverable:&#039;&#039;&#039; Both VMs should be deployed, networked, and accessible with configured hostnames, IPs, and user accounts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=17</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=17"/>
		<updated>2025-10-04T12:33:59Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Gain a basic understanding of virtualisation concepts.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Workstation Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Virtualisation Concepts ===&lt;br /&gt;
&lt;br /&gt;
===== Understand the concept of virtual machines and hypervisors: =====&lt;br /&gt;
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi, Hyper-V)&lt;br /&gt;
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes using a virtual link.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Set static ip addresses on each machine&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!VM&lt;br /&gt;
!IP Address&lt;br /&gt;
!Subnet Mask&lt;br /&gt;
!Gateway&lt;br /&gt;
|-&lt;br /&gt;
|Windows 11&lt;br /&gt;
|192.168.10.10&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|-&lt;br /&gt;
|Ubuntu 24.04&lt;br /&gt;
|192.168.10.11&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
# Open the console for each node to verify connectivity (you can ping each other later if IP addresses are configured).&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Setup Ubuntu as web server: ===&lt;br /&gt;
On the ubuntu server install apache2&amp;lt;blockquote&amp;gt;sudo apt update&lt;br /&gt;
&lt;br /&gt;
sudo apt install apache2&amp;lt;/blockquote&amp;gt;On your windows 11 VM open edge and navigate to http://192.168.10.10&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Documentation ===&lt;br /&gt;
Submit this on [https://colourfi.training ColourFi LMS] (subscribers only)&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is workstation.&lt;br /&gt;
# What is Apache2&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualization.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. workstation roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualization concepts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=16</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=16"/>
		<updated>2025-10-04T12:32:32Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Gain a basic understanding of virtualisation concepts.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Workstation Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Virtualisation Concepts ===&lt;br /&gt;
&lt;br /&gt;
===== Understand the concept of virtual machines and hypervisors: =====&lt;br /&gt;
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi, Hyper-V)&lt;br /&gt;
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes using a virtual link.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Set static ip addresses on each machine&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!VM&lt;br /&gt;
!IP Address&lt;br /&gt;
!Subnet Mask&lt;br /&gt;
!Gateway&lt;br /&gt;
|-&lt;br /&gt;
|Windows 11&lt;br /&gt;
|192.168.10.10&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|-&lt;br /&gt;
|Ubuntu 24.04&lt;br /&gt;
|192.168.10.11&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
# Open the console for each node to verify connectivity (you can ping each other later if IP addresses are configured).&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Setup Ubuntu as web server: ===&lt;br /&gt;
On the ubuntu server install apache2&amp;lt;blockquote&amp;gt;sudo apt update&lt;br /&gt;
&lt;br /&gt;
sudo apt install apache2&amp;lt;/blockquote&amp;gt;On your windows 11 VM open edge and navigate to http://192.168.10.10&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Documentation ===&lt;br /&gt;
Submit this on [https://colourfi.learning ColourFi LMS] (subscribers only)&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is workstation.&lt;br /&gt;
# What is Apache2&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualization.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. workstation roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualization concepts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=15</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=15"/>
		<updated>2025-10-04T12:27:17Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: /* Course Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide [https://colourfi.io pre-configured EVE-NG machines] with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured [https://colourfi.io Colourfi EVE-NG machine]&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. workstation environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to virtualisation concepts&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Explore EVE-NG interface, create basic nodes and networks]]&lt;br /&gt;
&lt;br /&gt;
	ColourFi Subscribers only [https://colourfi.training Quiz] &lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) ===&lt;br /&gt;
	•	Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
	•	Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
	•	User account creation and management&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Main_Page&amp;diff=11</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Main_Page&amp;diff=11"/>
		<updated>2025-10-03T13:19:37Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Welcome to the Wiki =&lt;br /&gt;
&lt;br /&gt;
Your hub for &#039;&#039;&#039;hands-on labs, guides, and knowledge&#039;&#039;&#039; in &#039;&#039;&#039;system administration, IT, OT, and networking&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This wiki is built around &#039;&#039;&#039;EVE-NG labs&#039;&#039;&#039;, providing practical, real-world scenarios for engineers, students, and enthusiasts who want to sharpen their skills in:&lt;br /&gt;
&lt;br /&gt;
* 🖥️ &#039;&#039;&#039;System Administration&#039;&#039;&#039; – Linux, Windows, and automation best practices  &lt;br /&gt;
* 🌐 &#039;&#039;&#039;Networking&#039;&#039;&#039; – routing, switching, firewalls, and advanced network topologies  &lt;br /&gt;
* 🛠️ &#039;&#039;&#039;IT &amp;amp; OT Integration&#039;&#039;&#039; – bridging traditional enterprise IT with operational technology environments  &lt;br /&gt;
* 🔐 &#039;&#039;&#039;Security &amp;amp; Resilience&#039;&#039;&#039; – applying frameworks and hardening techniques to lab environments  &lt;br /&gt;
&lt;br /&gt;
Whether you’re just starting out or fine-tuning enterprise-grade designs, this wiki is here to &#039;&#039;&#039;guide, experiment, and document&#039;&#039;&#039; the building blocks of modern infrastructure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&#039;&#039;Learn. Lab. Level up.&#039;&#039;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Checkout Our Free Labs: ===&lt;br /&gt;
[[Basic System Administration Bootcamp]]&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=10</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=10"/>
		<updated>2025-10-03T13:18:36Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: /* Module 1: Introduction to System Administration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide pre-configured EVE-NG machines with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured Colourfi EVE-NG machine&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. workstation environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to virtualisation concepts&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: [[Explore EVE-NG interface, create basic nodes and networks]]&lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) ===&lt;br /&gt;
	•	Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
	•	Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
	•	User account creation and management&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=9</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=9"/>
		<updated>2025-10-03T13:18:16Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Gain a basic understanding of virtualisation concepts.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Module 1 Learning Objectives ==&lt;br /&gt;
&lt;br /&gt;
=== Overview of System Administration Roles ===&lt;br /&gt;
&lt;br /&gt;
===== Responsibilities of a sysadmin: =====&lt;br /&gt;
* User and group management&lt;br /&gt;
* Server and workstation deployment&lt;br /&gt;
* Security and patch management&lt;br /&gt;
* Network configuration&lt;br /&gt;
* Backup and recovery&lt;br /&gt;
=== Understanding Server vs. Workstation Environments ===&lt;br /&gt;
&lt;br /&gt;
===== key differences: =====&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Virtualisation Concepts ===&lt;br /&gt;
&lt;br /&gt;
===== Understand the concept of virtual machines and hypervisors: =====&lt;br /&gt;
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi, Hyper-V)&lt;br /&gt;
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)&lt;br /&gt;
&lt;br /&gt;
== Module 1 Hands On Lab ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Creating Basic Nodes and Networks ===&lt;br /&gt;
&lt;br /&gt;
===== Create a new lab: =====&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Node 1: Linux Server 24.04 VM&lt;br /&gt;
* Node 2: Windows 11 VM&lt;br /&gt;
# Connect the nodes using a virtual link.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Set static ip addresses on each machine&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!VM&lt;br /&gt;
!IP Address&lt;br /&gt;
!Subnet Mask&lt;br /&gt;
!Gateway&lt;br /&gt;
|-&lt;br /&gt;
|Windows 11&lt;br /&gt;
|192.168.10.10&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|-&lt;br /&gt;
|Ubuntu 24.04&lt;br /&gt;
|192.168.10.11&lt;br /&gt;
|255.255.255.0&lt;br /&gt;
|192.168.10.1&lt;br /&gt;
|}&lt;br /&gt;
# Open the console for each node to verify connectivity (you can ping each other later if IP addresses are configured).&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Documentation ===&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is workstation.&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualization.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. workstation roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualization concepts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=8</id>
		<title>Basic System Administration Course - Module 1</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Course_-_Module_1&amp;diff=8"/>
		<updated>2025-10-03T13:06:57Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Created page with &amp;quot;= 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...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Module 1 Lab: Introduction to System Administration =&lt;br /&gt;
&lt;br /&gt;
== Objective ==&lt;br /&gt;
By the end of this lab, students will:&lt;br /&gt;
* Understand the role of a system administrator.&lt;br /&gt;
* Differentiate between server and workstation environments.&lt;br /&gt;
* Gain a basic understanding of virtualization concepts.&lt;br /&gt;
* Navigate the EVE-NG interface and create simple nodes and networks.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Access to an EVE-NG environment (self-installed or Colourfi pre-configured machine).&lt;br /&gt;
* A web browser to access EVE-NG.&lt;br /&gt;
* Basic knowledge of IP addressing is helpful but not mandatory.&lt;br /&gt;
&lt;br /&gt;
== Lab Setup ==&lt;br /&gt;
# Log in to your EVE-NG environment.&lt;br /&gt;
# Ensure you have access to at least 2 virtual nodes (one Windows VM, one Linux VM recommended for later modules).&lt;br /&gt;
# Have a basic topology area available to create nodes and links.&lt;br /&gt;
&lt;br /&gt;
== Lab Steps ==&lt;br /&gt;
&lt;br /&gt;
=== Step 1: Overview of System Administration Roles ===&lt;br /&gt;
# Discuss the responsibilities of a sysadmin:&lt;br /&gt;
** User and group management&lt;br /&gt;
** Server and workstation deployment&lt;br /&gt;
** Security and patch management&lt;br /&gt;
** Network configuration&lt;br /&gt;
** Backup and recovery&lt;br /&gt;
# Write down 3 tasks you think a sysadmin would do daily.&lt;br /&gt;
&lt;br /&gt;
=== Step 2: Understanding Server vs. Workstation Environments ===&lt;br /&gt;
# Identify which VMs in EVE-NG are “servers” and which are “workstations.”&lt;br /&gt;
# Discuss key differences:&lt;br /&gt;
* Servers often run headless or minimal GUI, provide services to multiple users.&lt;br /&gt;
* Workstations are user-focused with full GUI and productivity apps.&lt;br /&gt;
# Document the differences in a small table:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Feature !! Server !! Workstation&lt;br /&gt;
|-&lt;br /&gt;
| GUI || Minimal/optional || Full&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Provide services || User productivity&lt;br /&gt;
|-&lt;br /&gt;
| Number of users || Multiple || Single&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Step 3: Introduction to Virtualisation Concepts ===&lt;br /&gt;
# Understand the concept of virtual machines and hypervisors:&lt;br /&gt;
* Type 1 hypervisor: runs directly on hardware (e.g., ESXi)&lt;br /&gt;
* Type 2 hypervisor: runs on host OS (e.g., VirtualBox, VMware Workstation)&lt;br /&gt;
# Discuss EVE-NG as a network-focused virtualization platform that allows multiple OS nodes to interconnect.&lt;br /&gt;
&lt;br /&gt;
=== Step 4: Exploring the EVE-NG Interface ===&lt;br /&gt;
# Log in to EVE-NG web interface.&lt;br /&gt;
# Navigate the main menu:&lt;br /&gt;
* &#039;&#039;Lab View&#039;&#039; – shows topology and nodes&lt;br /&gt;
* &#039;&#039;Node Management&#039;&#039; – add/remove nodes&lt;br /&gt;
* &#039;&#039;Topology Connections&#039;&#039; – connect nodes via virtual links&lt;br /&gt;
&lt;br /&gt;
=== Step 5: Creating Basic Nodes and Networks ===&lt;br /&gt;
# Create a new lab:&lt;br /&gt;
* Lab name: &#039;&#039;Module1_Lab&#039;&#039;&lt;br /&gt;
* Save location: &#039;&#039;/Labs/Module1/&#039;&#039;&lt;br /&gt;
# Add two nodes:&lt;br /&gt;
* Node 1: Linux VM&lt;br /&gt;
* Node 2: Windows VM&lt;br /&gt;
# Connect the nodes using a virtual link.&lt;br /&gt;
# Start both nodes.&lt;br /&gt;
# Open the console for each node to verify connectivity (you can ping each other later if IP addresses are configured).&lt;br /&gt;
&lt;br /&gt;
=== Step 6: Documentation ===&lt;br /&gt;
# Take a screenshot of your lab topology with nodes and links.&lt;br /&gt;
# Label which node is server, which is workstation.&lt;br /&gt;
# Submit a short paragraph describing your first experience with EVE-NG and what you learned about sysadmin roles and virtualization.&lt;br /&gt;
&lt;br /&gt;
== Expected Outcomes ==&lt;br /&gt;
* Students can identify server vs. workstation roles.&lt;br /&gt;
* Students can navigate the EVE-NG interface.&lt;br /&gt;
* Students can create at least two nodes and connect them via a virtual network.&lt;br /&gt;
* Students understand basic virtualization concepts.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=7</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=7"/>
		<updated>2025-10-03T12:57:43Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide pre-configured EVE-NG machines with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured Colourfi EVE-NG machine&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
&lt;br /&gt;
	•	Understanding server vs. workstation environments&lt;br /&gt;
&lt;br /&gt;
	•	Intro to virtualisation concepts&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Explore EVE-NG interface, create basic nodes and networks&lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) ===&lt;br /&gt;
	•	Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
&lt;br /&gt;
	•	Configuring system settings: hostname, IP, time zone&lt;br /&gt;
&lt;br /&gt;
	•	User account creation and management&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
&lt;br /&gt;
	Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=6</id>
		<title>Basic System Administration Bootcamp</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Basic_System_Administration_Bootcamp&amp;diff=6"/>
		<updated>2025-10-03T12:52:39Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Created page with &amp;quot;= Basic System Administration Course =  == Course Overview == This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.  Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide pre-configured EVE...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic System Administration Course =&lt;br /&gt;
&lt;br /&gt;
== Course Overview ==&lt;br /&gt;
This course provides foundational knowledge and practical skills in system administration, covering Active Directory, host setup, virtual machines, and basic firewall configuration. By the end of the course, students will be able to manage Windows and Linux systems in a small-to-medium business environment.&lt;br /&gt;
&lt;br /&gt;
Note: For students who do not want to set up EVE-NG themselves, Colourfi can provide pre-configured EVE-NG machines with remote access, complete with ready-to-use lab environments.&lt;br /&gt;
&lt;br /&gt;
== Course Duration ==&lt;br /&gt;
8 Weeks (can be adjusted based on pace)&lt;br /&gt;
Approx. 3–5 hours per week including labs.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
	•	Basic computer literacy&lt;br /&gt;
	•	Familiarity with networking concepts (IP addresses, DNS, DHCP)&lt;br /&gt;
	•	EVE-NG installed, or access to a pre-configured Colourfi EVE-NG machine&lt;br /&gt;
&lt;br /&gt;
== Course Modules ==&lt;br /&gt;
&lt;br /&gt;
=== Module 1: Introduction to System Administration ===&lt;br /&gt;
	•	Overview of system administration roles and responsibilities&lt;br /&gt;
	•	Understanding server vs. workstation environments&lt;br /&gt;
	•	Intro to virtualisation concepts&lt;br /&gt;
Hands-on Exercise: Explore EVE-NG interface, create basic nodes and networks&lt;br /&gt;
&lt;br /&gt;
=== Module 2: Setting Up Hosts (Windows &amp;amp; Linux) ===&lt;br /&gt;
	•	Installing Windows Server and Linux VMs in EVE-NG&lt;br /&gt;
	•	Configuring system settings: hostname, IP, time zone&lt;br /&gt;
	•	User account creation and management&lt;br /&gt;
Hands-on Exercise: Deploy a Windows and Linux VM in EVE-NG and configure hostname, IP, and users&lt;br /&gt;
&lt;br /&gt;
=== Module 3: Virtual Machines and Hypervisors ===&lt;br /&gt;
	•	Understanding hypervisors: Type 1 vs. Type 2&lt;br /&gt;
	•	Creating and managing virtual machines&lt;br /&gt;
	•	Snapshots, cloning, and resource allocation&lt;br /&gt;
Hands-on Exercise: Create multiple VMs in Hyper-V, adjust CPU/RAM, and save snapshots&lt;br /&gt;
&lt;br /&gt;
=== Module 4: Active Directory (Windows) ===&lt;br /&gt;
	•	Introduction to Active Directory Domain Services (AD DS)&lt;br /&gt;
	•	Creating a domain, organizational units (OUs), and users&lt;br /&gt;
	•	Group Policies (GPO) basics&lt;br /&gt;
	•	Joining computers to a domain&lt;br /&gt;
Hands-on Exercise: Set up a small AD domain in a Windows VM, create OUs, users, and apply a GPO&lt;br /&gt;
&lt;br /&gt;
=== Module 5: Basic Networking &amp;amp; Firewall Configuration ===&lt;br /&gt;
	•	Overview of firewalls and their purpose&lt;br /&gt;
	•	Windows Firewall basics&lt;br /&gt;
	•	Pfsense Firewall basics&lt;br /&gt;
	•	Opening/closing ports and creating rules&lt;br /&gt;
	•	VLANs and inter-VLAN routing&lt;br /&gt;
Hands-on Exercise: Configure firewall rules and VLANs&lt;br /&gt;
&lt;br /&gt;
=== Module 6: File Sharing &amp;amp; Permissions ===&lt;br /&gt;
	•	Windows: NTFS permissions, shared folders&lt;br /&gt;
	•	Linux: chmod, chown, and NFS/Samba shares&lt;br /&gt;
	•	Mapping network drives&lt;br /&gt;
Hands-on Exercise: Share a folder on Windows and Linux VMs in EVE-NG and set appropriate permissions&lt;br /&gt;
&lt;br /&gt;
=== Module 7: Backup &amp;amp; Restore Basics ===&lt;br /&gt;
	•	Importance of backups&lt;br /&gt;
	•	Windows Server Backup&lt;br /&gt;
	•	Agent Based Backups&lt;br /&gt;
	•	Restoring data&lt;br /&gt;
Hands-on Exercise: VM backups using Veeam Community and restore them&lt;br /&gt;
&lt;br /&gt;
=== Module 8: Monitoring &amp;amp; Maintenance ===&lt;br /&gt;
	•	Checking system logs (Event Viewer, /var/log/)&lt;br /&gt;
	•	Resource monitoring (CPU, memory, disk)&lt;br /&gt;
	•	Updating systems (Windows Updates, Linux package managers)&lt;br /&gt;
Hands-on Exercise: Set up basic monitoring and schedule system updates on your VMs&lt;br /&gt;
&lt;br /&gt;
== Assessment &amp;amp; Project ==&lt;br /&gt;
	•	Final project: Deploy a small lab environment in EVE-NG with 2–3 VMs, AD domain, file shares, and configured firewall rules&lt;br /&gt;
&lt;br /&gt;
== Recommended Tools &amp;amp; Software ==&lt;br /&gt;
	•	EVE-NG (for virtual lab environment) — can be self-installed or accessed via Colourfi pre-configured machines&lt;br /&gt;
	•	Windows Server 2022 evaluation ISO&lt;br /&gt;
	•	Windows 11 evaluation ISO&lt;br /&gt;
	•	Ubuntu Server 24.05&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=EVE_NG_Windows_Images&amp;diff=5</id>
		<title>EVE NG Windows Images</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=EVE_NG_Windows_Images&amp;diff=5"/>
		<updated>2025-10-03T12:00:09Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Created page with &amp;quot;= Connecting to EVE-NG =  Because EVE-NG is running Ubuntu, a tool that can speak SCP or SFTP is needed.  == Windows == WinSCP is a great free tool that allows you to open up the EVE-NG file system in a Windows-friendly manner.  == Mac == CyberDuck is a free tool I have been using to do this on Mac OS.  == Where do the files go? == EVE-NG stores files in:  &amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/&amp;lt;/code&amp;gt;  === Naming conventions === In EVE-NG, there are specific naming conventions...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Connecting to EVE-NG =&lt;br /&gt;
&lt;br /&gt;
Because EVE-NG is running Ubuntu, a tool that can speak SCP or SFTP is needed.&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
WinSCP is a great free tool that allows you to open up the EVE-NG file system in a Windows-friendly manner.&lt;br /&gt;
&lt;br /&gt;
== Mac ==&lt;br /&gt;
CyberDuck is a free tool I have been using to do this on Mac OS.&lt;br /&gt;
&lt;br /&gt;
== Where do the files go? ==&lt;br /&gt;
EVE-NG stores files in:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Naming conventions ===&lt;br /&gt;
In EVE-NG, there are specific naming conventions that make the OS show up correctly in the web interface.&lt;br /&gt;
&lt;br /&gt;
==== Windows (not server) ====&lt;br /&gt;
&amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/win-&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example: &lt;br /&gt;
* Windows 10: &amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/win-10x64&amp;lt;/code&amp;gt;&lt;br /&gt;
* Windows 11: &amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/win-11x64&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Windows Server ====&lt;br /&gt;
&amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/winserver-&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
* Windows Server 2022: &amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/winserver-2022&amp;lt;/code&amp;gt;&lt;br /&gt;
* Windows Server 2022 Core: &amp;lt;code&amp;gt;/opt/unetlab/addons/qemu/winserver-2022-core&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once connected, you need to copy the ISO file for OS installation into the folder you have created and name it according to the [Guide to setup Windows Server on EVE-NG Website](https://www.eve-ng.net/index.php/documentation/howtos/howto-create-own-windows-server-on-the-eve/).&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=EVE_NG_home_lab&amp;diff=4</id>
		<title>EVE NG home lab</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=EVE_NG_home_lab&amp;diff=4"/>
		<updated>2025-10-03T11:56:32Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: Created page with &amp;quot;= EVE-NG Physical / Bare Metal Cluster =  For my personal EVE-NG Cluster I wanted something that was low power, high spec and a small form factor. For my first node I decided on a Lenovo ThinkCentre M75q Gen 5 Tiny. I selected the Ryzen 7 CPU but left all other specs the same. It is cheaper to purchase a hard drive and memory aftermarket and install them yourself. I purchased two 64GB DIMMs of RAM and a 4TB M.2 SATA Drive and installed them.  Although this was cost effec...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= EVE-NG Physical / Bare Metal Cluster =&lt;br /&gt;
&lt;br /&gt;
For my personal EVE-NG Cluster I wanted something that was low power, high spec and a small form factor. For my first node I decided on a Lenovo ThinkCentre M75q Gen 5 Tiny. I selected the Ryzen 7 CPU but left all other specs the same. It is cheaper to purchase a hard drive and memory aftermarket and install them yourself. I purchased two 64GB DIMMs of RAM and a 4TB M.2 SATA Drive and installed them.&lt;br /&gt;
&lt;br /&gt;
Although this was cost effective, I had some issues with vJunos images in EVE-NG that I could not get to boot correctly.&lt;br /&gt;
&lt;br /&gt;
After getting the PC I followed the guide on installing a bare metal OS from the EVE-NG [https://www.eve-ng.net/index.php/documentation/installation/bare-install/ Website].&lt;br /&gt;
&lt;br /&gt;
== Cluster ==&lt;br /&gt;
&lt;br /&gt;
EVE-NG Pro allows clustering — you can have one lab and it runs on multiple physical or virtual machines at the same time.  &lt;br /&gt;
I run a lot of Windows-based labs with testing out virtualisation and network configs inside EVE-NG. This requirement means I needed more than 64GB of memory and more CPU cores.&lt;br /&gt;
&lt;br /&gt;
Due to these requirements I purchased another Lenovo ThinkCentre M70q Gen 5 with an i7-14700T. Again I picked the lowest specs other than CPU, as I purchased aftermarket RAM and storage.&lt;br /&gt;
&lt;br /&gt;
The cluster setup process was not easy. I kept getting weird errors that were not explained. After trying many things I contacted support and it turns out that both the PCs going into the cluster need to have the same time and timezone set. After this they had to re-install EVE-NG and get the cluster working. The support from EVE-NG was great but the documentation on cluster setup could use some work.&lt;br /&gt;
&lt;br /&gt;
Since the cluster was set up with support from EVE-NG it has worked well, although sometimes I manually need to push devices to specific nodes / PCs to load balance correctly.&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Main_Page&amp;diff=3</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Main_Page&amp;diff=3"/>
		<updated>2025-10-03T11:40:32Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Welcome to the Wiki =&lt;br /&gt;
&lt;br /&gt;
Your hub for &#039;&#039;&#039;hands-on labs, guides, and knowledge&#039;&#039;&#039; in &#039;&#039;&#039;system administration, IT, OT, and networking&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This wiki is built around &#039;&#039;&#039;EVE-NG labs&#039;&#039;&#039;, providing practical, real-world scenarios for engineers, students, and enthusiasts who want to sharpen their skills in:&lt;br /&gt;
&lt;br /&gt;
* 🖥️ &#039;&#039;&#039;System Administration&#039;&#039;&#039; – Linux, Windows, and automation best practices  &lt;br /&gt;
* 🌐 &#039;&#039;&#039;Networking&#039;&#039;&#039; – routing, switching, firewalls, and advanced network topologies  &lt;br /&gt;
* 🛠️ &#039;&#039;&#039;IT &amp;amp; OT Integration&#039;&#039;&#039; – bridging traditional enterprise IT with operational technology environments  &lt;br /&gt;
* 🔐 &#039;&#039;&#039;Security &amp;amp; Resilience&#039;&#039;&#039; – applying frameworks and hardening techniques to lab environments  &lt;br /&gt;
&lt;br /&gt;
Whether you’re just starting out or fine-tuning enterprise-grade designs, this wiki is here to &#039;&#039;&#039;guide, experiment, and document&#039;&#039;&#039; the building blocks of modern infrastructure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&#039;&#039;Learn. Lab. Level up.&#039;&#039;&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
	<entry>
		<id>https://colourfi.wiki/index.php?title=Main_Page&amp;diff=2</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://colourfi.wiki/index.php?title=Main_Page&amp;diff=2"/>
		<updated>2025-10-03T10:45:06Z</updated>

		<summary type="html">&lt;p&gt;Rvxxc: first change&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|apple]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;/div&gt;</summary>
		<author><name>Rvxxc</name></author>
	</entry>
</feed>