CertGrid CertGrid
Concepts·CompTIA Linux+

Linux+ XK0-006 domains and question style

XK0-006 is 90 questions in 90 minutes, scored on a 100-900 scale with 720 to pass, across five domains. This guide covers what that structure means for how you prepare - one minute a question, no domain small enough to skip, and a scaled score nobody can convert back to a raw one - and introduces the two machines every later page runs on.

Start Here Guide 1 of 28 Beginner

Exam structure and domain names are CompTIA's published objectives for XK0-006, linked below. Nothing on this page is derived from this site's practice questions - a question bank is edited, and a guide that quotes one goes quietly out of date.

Both package families, because XK0-006 does not tell you which one you will get. The hostnames are provisioning artefacts shared with the other Linux paths; the OS column is what matters.
Server NameIP AddressOSRolesCPURAMHDD
LPLUS-A01192.168.0.73Ubuntu 26.04 LTSDebian-family host - apt, ufw, netplan, AppArmor2 Core4 GB50 GB
LPLUS-B01192.168.0.74AlmaLinux 10.2RPM-family host - dnf, firewalld, NetworkManager, SELinux2 Core4 GB50 GB

This guide includes

Use this before booking XK0-006. This matters because the exam is family-neutral - a question may name apt or dnf without warning, which is why the lab runs one machine of each.

Before you start

  1. The two machines this path uses

    One of each package family, because the exam is family-neutral.

    bash Example session
    . /etc/os-release; echo "$PRETTY_NAME"; uname -r; hostnamectl | head -3Ubuntu 26.04 LTS7.0.0-30-generic  Static hostname: lplus-a01        Icon name: computer-vm          Chassis: vm 🖴. /etc/os-release; echo "$PRETTY_NAME"; uname -r; hostnamectl | head -3Ubuntu 26.04 LTS7.0.0-30-generic  Static hostname: lplus-a01        Icon name: computer-vm          Chassis: vm 🖴

    Expected resultUbuntu 26.04 LTS and AlmaLinux 10.2, on kernels 7.0.0-30-generic and 6.12.0-211.7.3.el10_2.

    Success conditionYou know which machine each command on this path ran on.

  2. The five domains, and what the structure implies

    Read CompTIA's objectives, then plan around the clock rather than the weights.

    bash Example session
    printf '%-14s %s\n' shell "$BASH_VERSION" pkg "$(command -v apt-get dpkg | tr '\n' ' ')" fw "$(command -v ufw | tr '\n' ' ')" mac "$(command -v aa-status apparmor_status 2>/dev/null | head -1)"shellpkg            /usr/bin/apt-get /usr/bin/dpkgfw             /usr/sbin/ufwmac            /usr/sbin/aa-statusprintf '%-14s %s\n' shell "$BASH_VERSION" pkg "$(command -v dnf rpm | tr '\n' ' ')" fw "$(command -v firewall-cmd | tr '\n' ' ')" mac "$(command -v getenforce | tr '\n' ' ')"shellpkg            /usr/bin/dnf /usr/bin/rpmfw             /usr/bin/firewall-cmdmac            /usr/sbin/getenforce

    Expected resultTwo machines reporting different package tools and different firewalls - apt-get/dpkg with ufw against dnf/rpm with firewalld.

    Success conditionYou can see why this exam needs two machines rather than one.

Troubleshooting

Official sources