$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Mesa Driver on Solus Linux – Step by step

August 5, 2025 | By the+gnu+linux+evangelist.

GNU/Linux Solus Installing MESA Driver Guide

How to install the latest MESA drivers on Solus – a step-by-step tutorial for Solus Linux.

MESA for Solus (Mesa3D) is an open-source implementation of OpenGL, Vulkan, OpenGL ES, OpenCL and other graphics APIs.

About MESA: The Mesa Project provides unified GPU drivers for AMD/RADEON and Intel hardware on Linux.

⚠️ Important: For modern NVIDIA cards, MESA is not recommended. Install Solus’s NVIDIA proprietary driver instead.

How to Install Mesa Driver on Solus Linux – Step by step
  1. 1. Open the Terminal

    Launch your terminal emulator (e.g. Press Super+Enter in Budgie).

    New to the shell? See the Solus CLI QuickStart.

  2. 2. Update Your System

    Refresh package metadata and upgrade all installed packages:

    sudo eopkg up
  3. 3. Install MESA Drivers

    Search for available MESA packages (optional):

    eopkg se mesa

    Install the core MESA stack plus demos and Vulkan tools:

    sudo eopkg it mesa mesa-demos vulkan-tools

    If prompted, reboot your system:

    sudo reboot
  4. 4. Verify Installation

    Check your OpenGL version:

    glxinfo | grep "OpenGL version"

    Check Vulkan support:

    vulkaninfo | grep "apiVersion"

I hope this guide helped you to install the latest MESA drivers on Solus Linux!