Course 1

Technical Support Fundamentals

Computer hardware · Software & OS · Networking basics · Troubleshooting · Customer service

1  ·  Computer Hardware & Architecture

Core Components

  • CPU (Central Processing Unit) - the "brain." Fetches, decodes, and executes instructions. Key specs: core count, clock speed (GHz), cache size (L1/L2/L3). More cores = better multitasking; higher GHz = faster per-core execution.
  • RAM (Random Access Memory) - volatile, high-speed temporary storage. Programs run here. When RAM is full, the OS spills to slower virtual memory (page file / swap). Current standard: DDR4 or DDR5.
  • Storage (HDD / SSD) - non-volatile, permanent storage. SSDs use flash chips (faster, more durable, more expensive per GB). HDDs use spinning magnetic platters (slower, cheaper per GB, more fragile).
  • Motherboard - the backbone connecting all components. Contains the chipset, CPU socket, RAM slots, PCIe slots, SATA ports, and I/O headers. The form factor (ATX, Micro-ATX, Mini-ITX) determines case compatibility.
  • PSU (Power Supply Unit) - converts wall AC power to regulated DC voltages (+12V, +5V, +3.3V). Wattage must exceed total system draw. 80 Plus rating indicates efficiency (Bronze → Gold → Platinum → Titanium).
  • GPU (Graphics Processing Unit) - renders visuals. Integrated GPUs share system RAM; discrete GPUs have dedicated VRAM and a PCIe slot. Essential for displays even on headless servers.

Storage Types Compared

TypeInterfaceTypical SpeedUse Case
HDD (3.5")SATA80–160 MB/sBulk storage, NAS
HDD (2.5")SATA80–120 MB/sLaptops
SSD (2.5")SATA~550 MB/sOS drive upgrade from HDD
SSD (M.2 SATA)SATA via M.2~550 MB/sCompact SATA SSD
SSD (M.2 NVMe)PCIe / NVMe3,000–7,000 MB/sHigh-performance OS / workloads

Ports & Connectors

ConnectorMax Speed / NotesCommon Use
USB 2.0480 MbpsKeyboards, mice, low-speed devices
USB 3.0 / 3.1 Gen 15 GbpsFlash drives, external HDDs
USB 3.1 Gen 210 GbpsExternal SSDs
USB 3.2 Gen 2×220 GbpsHigh-speed storage
USB4 / Thunderbolt 3/440 GbpsDocks, eGPUs, 4K displays
USB-CShape - not a speed standardCan carry USB, Thunderbolt, DP, power
HDMIUp to 48 Gbps (2.1)Consumer displays, TVs, projectors
DisplayPortUp to 77 Gbps (2.1)PC monitors, daisy-chaining
VGAAnalog onlyLegacy - no longer recommended
DVIAnalog + digitalLegacy monitors

Binary & Number Systems

  • Binary (base 2) - computers use 0s and 1s because transistors have two states (on/off). A bit is one binary digit. A byte = 8 bits.
  • Hexadecimal (base 16) - digits 0–9 then A–F. One hex digit = 4 bits (a nibble); two hex digits = 1 byte. Used heavily in memory addresses, MAC addresses, and color codes.
1 byte = 8 bits
1 KB (kibibyte)= 1,024 bytes (2¹⁰)
1 MB = 1,024 KB
1 GB = 1,024 MB
1 TB = 1,024 GB
Hex digit range0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F
Binary → Hex1111 = F | 1010 = A | 0000 = 0

Key Terms

BitSmallest unit of data - a single 0 or 1
Byte8 bits; the basic unit for measuring file/storage size
Clock speedHow many instruction cycles a CPU executes per second (GHz = billions)
CacheUltra-fast SRAM on or near the CPU (L1 fastest/smallest → L3 larger/slower). Stores recently used data to avoid RAM round-trips.
BIOS / UEFIFirmware on the motherboard. Initializes hardware (POST) and hands off to the OS bootloader. UEFI is the modern replacement for BIOS - supports drives >2TB and Secure Boot.
POSTPower-On Self Test - hardware diagnostic run at boot before the OS loads. Beep codes signal failures.
NICNetwork Interface Card - hardware that connects a device to a network (wired or wireless)
PCIePCI Express - high-speed expansion slot for GPUs, NVMe SSDs, and NICs
ESDElectrostatic Discharge - static electricity that can silently damage components. Use anti-static wrist straps and mats; always ground yourself before touching internals.
  1. What is the difference between RAM and storage? Why does a program need RAM to run?
  2. A user's computer is very slow but has only 8 GB RAM and 16 GB of active programs open. What is likely happening?
  3. How many bits are in 3 bytes? Convert the binary number 1001 to decimal.
  4. A technician opens a desktop and doesn't use an anti-static wrist strap. What risk does this create?
  5. What is the purpose of the POST, and what might beep codes indicate?
  6. Which storage interface is fastest: SATA SSD, M.2 NVMe, or HDD?
  1. RAM is volatile (lost at power-off) and extremely fast - the CPU reads/writes it directly while a program runs. Storage is non-volatile and slower - it holds the program permanently when it's not running. Programs must be loaded into RAM to execute.
  2. The OS is using virtual memory (page file/swap) on disk because RAM is exhausted. Disk is far slower than RAM, causing heavy slowdowns - commonly called "thrashing."
  3. 3 bytes = 24 bits. Binary 1001 = 8+0+0+1 = 9 in decimal.
  4. ESD (Electrostatic Discharge) - the static built up in the technician's body can discharge into sensitive components, potentially damaging or destroying the CPU, RAM, GPU, or motherboard without any visible sign.
  5. POST (Power-On Self Test) verifies that critical hardware (CPU, RAM, GPU, storage) is present and functioning before the OS loads. Beep codes indicate which component failed - the pattern varies by BIOS/UEFI vendor.
  6. M.2 NVMe is fastest (3,000–7,000 MB/s), followed by SATA SSD (~550 MB/s), then HDD (80–160 MB/s).

2  ·  Software & Operating Systems

Types of Software

System softwareManages hardware and provides a platform for other software - OS, firmware, device drivers
Application softwareUser-facing programs that accomplish specific tasks - browsers, word processors, games
Utility softwareMaintenance and management tools - antivirus, disk cleanup, backup software
Device driverTranslates OS commands into hardware-specific instructions. A missing or outdated driver is a common source of hardware malfunctions.

What an OS Does

  • Process management - starts, schedules, and terminates programs. Decides which process gets CPU time (scheduling algorithms).
  • Memory management - allocates RAM to processes and reclaims it when they exit. Handles virtual memory when RAM is full.
  • File system management - organizes data on storage into files and directories, controls access permissions.
  • Device management - communicates with hardware via drivers; abstracts complexity so applications don't need to know hardware specifics.
  • User interface - either a CLI (Command Line Interface) or GUI (Graphical User Interface), or both.
  • Security & access control - enforces user accounts, permissions, and authentication.
Kernel - the core of the OS that runs in privileged mode and directly manages hardware. Applications talk to the kernel through system calls. The kernel is the boundary between software and hardware.

Major Operating Systems

OSKernel / BaseDefault FilesystemCommon Use
Windows 10/11NT kernelNTFSEnterprise desktop, gaming, general-purpose
macOSXNU (Unix/Darwin)APFSCreative professionals, Apple ecosystem
Linux (Ubuntu)Linux kernelext4Servers, developers, open-source workstations
Linux (CentOS/RHEL)Linux kernelXFS / ext4Enterprise servers
Chrome OSLinux kernelext4Cloud-centric, education, lightweight laptops
AndroidLinux kernelext4 / F2FSMobile devices
iOS / iPadOSXNU (Unix)APFSApple mobile devices

Software Licensing

ProprietarySource code is private; users pay for a license to use the software (e.g., Microsoft Office, Adobe Photoshop)
FreewareFree to use at no cost, but source code is not available (e.g., older versions of Skype)
Open sourceSource code is publicly available. Anyone can inspect, modify, and distribute it (subject to license terms)
GPLGNU General Public License - open source, but derivative works must also be GPL ("copyleft")
MIT / ApachePermissive licenses - open source, can be included in proprietary products with attribution
SharewareTry before you buy - limited features or trial period, requires payment for full use

Virtual Machines & Hypervisors

  • A virtual machine (VM) is a software emulation of a physical computer, running its own OS inside another OS.
  • A hypervisor creates and manages VMs, abstracting physical hardware into virtual resources.
  • Type 1 (bare-metal): runs directly on hardware, no host OS. Higher performance. Examples: VMware ESXi, Microsoft Hyper-V, KVM.
  • Type 2 (hosted): runs on top of an existing OS. Easier to set up. Examples: VirtualBox, VMware Workstation.
  • Snapshot: a point-in-time copy of a VM's state - useful for testing or rolling back changes.

Software Versioning

  • Semantic versioning: MAJOR.MINOR.PATCH (e.g., 3.11.2). MAJOR = breaking change; MINOR = new feature; PATCH = bug fix.
  • LTS (Long-Term Support): a version with extended security updates - preferred for production servers (e.g., Ubuntu 22.04 LTS supported until 2027).
  • Keeping software updated patches security vulnerabilities - critical for IT support.
  1. What is a kernel, and how do applications interact with it?
  2. A printer was just connected to a Windows PC but isn't working. What type of software is most likely missing?
  3. What is the difference between a Type 1 and Type 2 hypervisor? Give an example of each.
  4. A company wants to use Linux on their servers but needs commercial support. Which distribution is a common choice?
  5. What does GPL require of derivative software, and how does this differ from the MIT license?
  6. Interpret the version number 2.0.02.1.02.1.3. What happened at each step?
  1. The kernel is the privileged core of the OS that directly manages hardware resources. Applications communicate with it through system calls - requests to perform operations like reading a file or sending network data.
  2. A device driver - the software that translates OS-level commands into instructions the specific printer hardware understands.
  3. Type 1 runs directly on bare metal hardware (e.g., VMware ESXi, Hyper-V) - higher performance. Type 2 runs on top of an existing OS (e.g., VirtualBox, VMware Workstation) - easier to set up on a personal machine.
  4. Red Hat Enterprise Linux (RHEL) or its community rebuild Rocky Linux / AlmaLinux. Canonical also offers commercial Ubuntu support.
  5. GPL requires that any software derived from GPL code must also be released under GPL (copyleft). MIT is permissive - you can incorporate MIT-licensed code into a proprietary product without releasing your source code.
  6. 2.0.0 = initial major release (breaking changes from 1.x). 2.1.0 = new feature added (backwards-compatible). 2.1.3 = three bug fixes applied to the 2.1 feature set.

3  ·  Networking Basics

This section covers introductory concepts. Deep dives into TCP/IP, subnetting, DNS, DHCP, and troubleshooting tools are in Course 2.

Network Types by Scale

PANPersonal Area Network - devices within ~10 m (Bluetooth headset to phone)
LANLocal Area Network - single building or campus (home, office). Typically Ethernet or Wi-Fi.
MANMetropolitan Area Network - city-wide; e.g., university campuses, city government
WANWide Area Network - large geographic areas. The internet is the largest WAN.

Network Hardware

NICNetwork Interface Card - the hardware that physically connects a device to a network (wired or wireless). Has a unique MAC address burned in at manufacture.
HubLayer 1 - broadcasts every packet to all ports. Creates one large collision domain. Mostly obsolete.
SwitchLayer 2 - forwards frames only to the correct port using a MAC address table. Creates separate collision domains per port.
RouterLayer 3 - connects different networks (e.g., LAN to internet). Forwards packets based on IP addresses and a routing table.
ModemModulates/demodulates signals to/from the ISP's network (cable, DSL, fiber). In homes the modem and router are often one device.
WAPWireless Access Point - bridges wireless clients onto a wired LAN. Home routers have a built-in WAP.
FirewallInspects and filters traffic based on rules. Can be hardware (appliance) or software (Windows Defender Firewall, iptables).

Physical Media

MediumStandard / TypeMax SpeedNotes
Cat 5eTwisted pair (UTP)1 Gbps / 100 mMinimum for gigabit - still common
Cat 6Twisted pair (UTP)10 Gbps / 55 mMost new installations
Cat 6aTwisted pair (STP)10 Gbps / 100 mFull 10G at longer runs
Fiber (multimode)Glass/plastic core100 Gbps+Short–medium runs inside buildings; cheaper lasers
Fiber (single-mode)Glass core (narrow)100 Gbps+Long-distance; ISP backbone, campus links
Wi-Fi 5 (802.11ac)5 GHz~3.5 Gbps theoreticalUbiquitous current standard
Wi-Fi 6 (802.11ax)2.4 & 5 GHz~9.6 Gbps theoreticalBetter in dense environments (OFDMA)

Network Topologies

StarAll devices connect to a central switch/hub. Most common in modern LANs. Single device failure doesn't take down the network; central device failure affects all.
BusAll devices share one cable (backbone). Simple but a single break takes down the whole segment. Legacy (early Ethernet coax).
RingEach device connects to the next in a loop. Token Ring (legacy). A break can take down the ring unless dual-ring (FDDI).
MeshEvery device connects to every other device. Highly redundant. Full mesh is expensive; partial mesh is used in WANs and core networks.
HybridCombination of topologies - e.g., star topology inside each floor connected via a partial mesh between floors.

IP Addresses - Overview

  • Every device on a network needs an IP address to communicate. Like a postal address - unique identifier for routing.
  • IPv4: 32-bit, written as four 0–255 numbers separated by dots. ~4.3 billion possible addresses (mostly exhausted).
  • IPv6: 128-bit, written in hexadecimal with colons. Virtually unlimited addresses.
  • Private IPs (e.g., 192.168.x.x) are used inside a network; a router uses NAT to share one public IP for internet access.
  • DHCP automatically assigns IP addresses to devices joining the network so you don't configure them manually.
  • DNS translates domain names (google.com) to IP addresses so you don't need to memorize numbers.
  1. What is the functional difference between a hub and a switch?
  2. A user in a home office has a single device from their ISP that handles both the internet connection and local Wi-Fi. What is this device called?
  3. Which cable category supports 10 Gbps over 100 meters?
  4. Why is a star topology preferred over a bus topology in modern LANs?
  5. A device on a LAN has the IP address 192.168.1.50. Is this a public or private address?
  6. What does a router do that a switch cannot?
  1. A hub broadcasts every frame to all ports (layer 1, one collision domain). A switch learns MAC addresses and forwards frames only to the correct port (layer 2, separate collision domains per port), making it far more efficient.
  2. A modem/router combo (sometimes called a gateway or residential gateway). The modem converts the ISP signal; the router manages the LAN and provides Wi-Fi via a built-in WAP.
  3. Cat 6a (Cat 6 supports 10G only up to 55 m; Cat 6a extends it to the full 100 m)
  4. In a star topology, only the device with the failed link goes down. In a bus topology, a single break in the shared cable takes the entire segment offline.
  5. Private - 192.168.0.0/16 is one of the RFC 1918 private ranges, not routable on the public internet.
  6. A router operates at Layer 3 and forwards traffic between different networks using IP addresses. A switch operates at Layer 2 and can only move traffic within a single network using MAC addresses.

4  ·  Troubleshooting Best Practices

The Troubleshooting Methodology (7 Steps)

Step 1 - Identify Gather info. What is the problem? What changed? Who is affected?
Step 2 - Theory Establish a probable cause. Question the obvious first (is it plugged in?).
Step 3 - Test theory Confirm or eliminate the theory. If wrong, go back to step 2.
Step 4 - Plan Establish an action plan. Consider side effects before implementing.
Step 5 - Implement Apply the fix. Escalate if beyond your authority or skill set.
Step 6 - Verify Confirm the issue is resolved and no new problems were introduced.
Step 7 - Document Record the problem, root cause, and solution in the ticketing system.
Don't skip step 7. Documentation creates the knowledge base that speeds up future incidents and is required for SLA compliance.

Asking the Right Questions

  • "What changed recently?" - software update, new hardware, configuration change. Most outages have a recent change as the root cause.
  • "When did it start / how often does it happen?" - intermittent vs consistent failures point to different causes (heat, memory, network congestion vs hard failure).
  • "Does it happen to anyone else?" - determines if it's user-specific, device-specific, or infrastructure-wide.
  • "What have you already tried?" - avoids repeating steps and signals what to rule out.
  • "Can you reproduce it?" - reproducible bugs are far easier to diagnose.

Troubleshooting Approaches

Bottom-upStart at Layer 1 (physical) and work up. Best for network issues - check cable → IP → DNS → application.
Top-downStart at the application layer and work down. Good when users report a specific app failing but the network seems OK.
Divide and conquerStart in the middle of the stack and eliminate halves. Efficient for complex multi-layer problems.
Swap and compareReplace a suspected component with a known-good one to confirm the fault. Common for hardware troubleshooting.

Support Tiers

TierNameHandles
Tier 0Self-serviceFAQs, knowledge base, automated tools - user resolves without contacting IT
Tier 1Help desk / front linePassword resets, basic connectivity, standard procedures - scripted responses
Tier 2Technical supportIn-depth troubleshooting, configuration, OS issues - deeper technical knowledge
Tier 3Expert / engineeringComplex bugs, vendor escalations, infrastructure changes - subject matter experts
Tier 4Vendor supportIssues requiring the original manufacturer or vendor (hardware warranty, software bugs)

Safety & Environmental Considerations

  • ESD prevention: anti-static wrist strap (grounded), anti-static mat, anti-static bags for components, avoid carpeted areas when working on hardware.
  • Electrical safety: always power off and unplug before opening a PSU or working near high-voltage components. Capacitors inside PSUs can hold charge even when unplugged.
  • Thermal management: overheating causes performance throttling and component failure. Ensure proper airflow; clean dust filters periodically.
  • Cable management: poor cable management restricts airflow and makes troubleshooting harder - not just aesthetic.
  1. A user says "my email doesn't work." What are your first three questions?
  2. You apply a fix in step 5 but the problem returns the next day. Which step did you likely skip, and what should you do?
  3. A user's machine is randomly shutting off. Would you approach this top-down or bottom-up? Why?
  4. At what tier would a password reset typically be handled?
  5. You need to open a desktop to reseat RAM. What should you do before touching any components?
  6. Why is documentation (step 7) important even for simple issues you've solved before?
  1. 1) "When did it stop working / what changed?" 2) "Can you still access the internet or other apps?" 3) "Is anyone else in the office having the same problem?" (distinguishes user-specific vs infrastructure issue)
  2. You likely found a symptom, not the root cause (step 2 theory was incomplete). Reopen the ticket, revisit step 2 with new information, and find the underlying cause before implementing again.
  3. Bottom-up - random shutdowns are often a hardware or environmental issue (overheating, PSU underload, RAM failure). Starting at the physical layer to check temps, PSU wattage, and hardware stability is more direct than starting at the OS.
  4. Tier 1 (Help Desk) - password resets are a standard scripted procedure.
  5. Power off the machine, unplug it from the wall, and attach an anti-static wrist strap grounded to the case before touching any components.
  6. Documentation builds the knowledge base. Next time someone (you or a colleague) encounters the same issue, a documented resolution saves time. It also creates an audit trail for compliance and SLA reporting, and reveals patterns (recurring issues → problem management).

5  ·  Customer Service & Documentation

Core Customer Service Skills

  • Active listening - let the user fully describe the problem before speaking. Don't interrupt or complete their sentences. Paraphrase back to confirm understanding.
  • Empathy - acknowledge the user's frustration: "I understand this is disruptive, let's get it sorted." People want to feel heard before they want to be fixed.
  • Positive language - reframe negatives. Instead of "I don't know," say "Let me find out." Instead of "That's not possible," say "Here's what we can do."
  • Avoid jargon - explain technical issues in terms the user understands. Talking down or over a user's head both erode trust.
  • Set expectations - give a realistic timeline. If you don't know, say when you'll follow up. Silence breeds frustration.
  • Follow through - do what you said you'd do, when you said you'd do it. If you can't, proactively communicate before the deadline passes.

Ticketing System Lifecycle

1. Submission User reports issue via portal, email, phone, or chat
2. Triage Ticket assigned a priority (P1–P4) and routed to appropriate tier
3. Diagnosis Technician investigates, updates ticket with findings
4. Resolution Fix applied; resolution steps logged in the ticket
5. Closure User confirms issue is resolved; ticket closed
6. Follow-up Optional satisfaction survey; review for recurring patterns

SLA - Service Level Agreement

  • A formal contract specifying the expected level of service - including response times, resolution times, and uptime guarantees.
  • Response time: how quickly the IT team acknowledges the ticket.
  • Resolution time: how quickly the issue is fully resolved.
  • SLAs are tied to priority levels - critical outages have much tighter SLAs than low-priority requests.
  • Breaching an SLA may have financial penalties or reputational consequences - flag at-risk tickets early.
PriorityTypical MeaningExample Response Target
P1 - CriticalComplete outage affecting all users / revenue15 min response · 4 hr resolution
P2 - HighMajor function unavailable, many users affected1 hr response · 8 hr resolution
P3 - MediumPartial degradation, workaround exists4 hr response · 24 hr resolution
P4 - LowMinor issue, cosmetic, single userNext business day

ITIL Concepts - Incident vs Problem vs Change

IncidentAn unplanned interruption or degradation of service. Goal is fast restoration - not necessarily finding root cause. E.g., "server is down, reboot it."
ProblemThe underlying cause of one or more incidents. Requires root cause analysis. E.g., "the server keeps crashing - investigate the hardware."
ChangeA planned modification to the IT environment. Goes through a change advisory board (CAB) for approval to minimize risk. E.g., "upgrade the server's OS Saturday night."
Known errorA problem with an identified root cause and documented workaround, even if not yet permanently fixed

Documentation Best Practices

  • Write for a stranger - your documentation should allow someone who has never seen the system to follow it without asking questions.
  • Runbooks / SOPs: step-by-step procedures for common tasks (server restart, new user onboarding, backup restore). Reduces human error and training time.
  • Knowledge base articles: solutions to known issues written in plain language - searchable by users for self-service (Tier 0).
  • Network diagrams: always keep updated. Tools: draw.io, Lucidchart, Visio.
  • Change logs: record every infrastructure change with date, who made it, what changed, and why. Invaluable for incident investigation.
  1. A user is frustrated and says "nothing ever works around here." How do you respond?
  2. What is the difference between an incident and a problem in ITIL terms?
  3. A recurring P2 ticket appears every Monday morning for the same server. What ITIL process should be initiated?
  4. Why is it important to update a ticket with your findings even if you haven't resolved it yet?
  5. What is a runbook and when would you use one?
  6. A Tier 1 tech is 30 minutes away from breaching the SLA response time on a P1 ticket. What should they do?
  1. Acknowledge the frustration first: "I hear you, and I'm sorry this has been a frustrating experience. Let me focus on getting this specific issue fixed right now, and I'll make sure you're updated every step of the way." Avoid being defensive; stay calm and professional.
  2. An incident is an unplanned service disruption requiring fast restoration (e.g., restart a crashed service). A problem is the root cause investigation of why incidents occur - it takes longer but prevents recurrence.
  3. Problem management - open a Problem record to investigate the root cause of the recurring incident, rather than just patching it each week.
  4. It creates a shared audit trail so that if someone else picks up the ticket, they don't repeat work. It also timestamps your progress for SLA compliance and provides data for post-incident review.
  5. A runbook is a documented step-by-step procedure for a routine task (e.g., "how to restart the mail server"). It's used to ensure consistent execution, reduce errors, and allow less experienced staff to handle critical tasks safely.
  6. Escalate immediately - notify their supervisor or the on-call Tier 2/3 engineer. Never let a P1 SLA breach silently; proactive communication allows management to reassign resources before the breach occurs.

6  ·  What Actually Matters — Key Takeaways

Hardware — the mental model

Every hardware question ultimately comes down to: is the right component present, is it powered, and is it communicating? Run through components in the POST order — CPU → RAM → storage → display.

  • RAM vs storage is the single most-tested distinction. RAM = volatile, fast, where programs run. Storage = permanent, slow, where programs live. Slowness with high RAM usage → thrashing (virtual memory). Slowness with low RAM → check CPU, thermals, or disk speed.
  • Boot sequence: power on → PSU delivers voltage → motherboard firmware (UEFI/BIOS) runs POST → hands off to OS bootloader → OS loads into RAM. Know where failures can happen at each step.
  • Storage speed hierarchy comes up constantly as an upgrade recommendation: NVMe ≫ SATA SSD ≫ HDD. Default to NVMe for OS drives.
  • ESD is on the exam and in real life — always ground yourself before touching internal components.

Software & OS — the kernel is the center

  • The kernel is the privileged layer between hardware and every running program. All software communicates with it via system calls. This mental model explains why OS crashes affect everything while app crashes usually don't.
  • Drivers are the most common hardware fix. Device not working after connecting? Update or reinstall the driver first. Kernel modules on Linux work the same way — loadable, removable without rebooting.
  • Licensing categories matter in enterprise: proprietary (pay for a license), open source (GPL = copyleft, MIT/Apache = permissive), freeware (free but closed). The GPL "viral" clause is a real compliance concern for organizations shipping products.
  • Hypervisors: Type 1 (bare metal, e.g., ESXi, Hyper-V) for production servers. Type 2 (hosted, e.g., VirtualBox) for desktops and testing. Snapshots are your safety net before risky changes.

Troubleshooting — the methodology is the point

The 7-step methodology isn't just exam content — it's the actual difference between technicians who fix things once and those who fix the same thing every week.

Identify Understand the problem before touching anything
Theory Form a hypothesis — question the obvious first
Test theory Confirm or eliminate — if wrong, go back
Plan Consider side effects before acting
Implement Apply the fix; escalate if needed
Verify Confirm the fix AND check for new problems
Document Write it down — this is the step most people skip
Approach selection: bottom-up (physical → application) for hardware and network issues; top-down (application → physical) when a specific app is failing and the network seems fine; divide and conquer for complex multi-layer problems.

Customer service & ITIL — soft skills are real skills

  • Empathy before fixes. A user who feels heard is a user who cooperates. Acknowledge frustration, set expectations, follow through. People remember how they were treated long after they forget what was broken.
  • Incident vs Problem vs Change is the core ITIL distinction. Incident = restore service fast (reboot the server). Problem = find out why it keeps crashing. Change = plan and approve the OS upgrade. Confusing these leads to treating symptoms forever.
  • SLAs define your accountability. P1 outages have minutes, not hours. Know your priority levels and escalate before the clock runs out — proactive communication beats a missed SLA every time.
  • Documentation is institutional memory. A well-written ticket means the next person (including future you) doesn't start from zero. Runbooks and knowledge base articles scale your expertise beyond yourself.

The bigger picture

Technical Support Fundamentals is the foundation everything else builds on. The hardware concepts reappear when you configure servers. The OS knowledge is the basis of Courses 3 and 4. The troubleshooting methodology applies to every problem you will ever face — network outage, security incident, failed deployment. And the customer service skills matter in every interaction, at every tier, for your entire career.
Quiz Me
1 / 6

0 / 6

correct