Featured

Running Windows 11 on Linux with KVM/QEMU

This guide walks through the full process of running Windows 11 on Linux using KVM/QEMU and Virt-Manager,  the most robust and future-proof setup available today. While tools like VirtualBox still exist, KVM/QEMU has quietly become the gold standard on Linux. It offers: Near-native CPU performance Excellent disk and network throughput Proper UEFI, Secure Boot, and TPM support Long-term compatibility with Windows 11 updates Before starting, make sure you have: A Linux system with virtualization enabled in BIOS Intel: VT-x / VT-d AMD: SVM / IOMMU At least 8 GB RAM (16 GB recommended) Around 80 GB of free disk space A Windows 11 ISO The VirtIO drivers ISO Step 1: Check Virtualization Support Open a terminal and run: egrep -c '(vmx|svm)' /proc/cpuinfo If the result is 1 or higher , virtualization is enabled. If it returns 0 , you’ll need to enable it in your BIOS before continuing. Step 2: Install KVM, QEMU, and Virt-Manager On Ubuntu / Debian-based systems: sudo apt update sudo...

One-Click Launcher for Ollama GPT-OSS: Make AI Access Easy on Linux

 

 

Running large language models like GPT-OSS locally with Ollama gives you cutting-edge AI right on your Linux machine. But if you’re tired of typing out the same commands each session, why not simplify things with a one-click launcher? In this guide, you’ll learn how to create both a shell script and a graphical Desktop shortcut so you can launch your Ollama model instantly—no terminal typing required.

Why Use a Launcher?

  • Speed: Open your favorite AI in seconds, not minutes.

  • Convenience: Great for non-technical users or anyone who wants to skip memorizing commands.

  • Efficiency: Reduce repetitive actions and streamline your workflow.

Step 1: The Simple Shell Script

A shell script is the easiest way to automate starting Ollama with GPT-OSS.

  1. Open your terminal and create a new file:

    bash
    nano launch-gpt-oss.sh
  2. Add the following lines:

    bash
    #!/bin/bash ollama run gpt-oss:20b

    Change gpt-oss:20b to any model you prefer.

  3. Save and exit (press Ctrl+X, then Y, then Enter).

  4. Make it executable:

    bash
    chmod +x launch-gpt-oss.sh
  5. Now, to run it, simply type:

    bash
    ./launch-gpt-oss.sh

    Or, double-click in your file manager if your Linux desktop allows executable scripts.

Step 2: Create a Desktop Shortcut

Take it further by creating a clickable icon on your desktop:

  1. Create the Desktop file:

    bash
    nano ~/Desktop/ollama-gpt-oss.desktop
  2. Paste this:

    text
    [Desktop Entry] Type=Application Name=Ollama GPT-OSS Comment=Launch Ollama with GPT-OSS Exec=gnome-terminal -- bash -c "ollama run gpt-oss:20b; read" Icon=utilities-terminal Terminal=true Categories=Development;
    • Change gnome-terminal if you use a different terminal.

    • The read at the end keeps the window open so you can see outputs.

  3. Make it executable:

    bash
    chmod +x ~/Desktop/ollama-gpt-oss.desktop

Comments