Tuesday, 4 August 2026

Linux Operating System KNOPPIX 9.1 _ BIG RED CURSOR

 

___________________________________________________________________________________

Hi Copilot , i would like to have a big red cursor for my KNOPPIX 9.1 Desktop , could you please teach me or give me a step-by-step procedure how to do it ? THANKS for the answer.

_______________________________________________________



You can make your KNOPPIX 9.1 desktop cursor big and red by changing the cursor theme and size settings in Xorg/GTK. This involves installing a red cursor theme, setting it as default, and adjusting the cursor size.

Here’s a clear step‑by‑step guide you can follow:

01

Install a Red Cursor Theme

You need a cursor theme that includes red designs.

Download from sites like GNOME-Look.org

  • Search for red cursor themes (e.g., 'Red Glass')

  • Extract the theme folder into ~/.icons/ or /usr/share/icons/

  • Ensure the folder contains index.theme and cursor files

02

Set Cursor Theme in GNOME/GTK

Apply the red cursor theme system-wide.

Run commands in terminal

  • gsettings set org.gnome.desktop.interface cursor-theme "RedGlass"

  • Replace RedGlass with the actual theme name

  • This changes the cursor appearance immediately

03

Increase Cursor Size

Visibility Boost

Make the cursor larger for easier visibility.

Run commands in terminal

  • gsettings set org.gnome.desktop.interface cursor-size 64

  • Adjust number (e.g., 48, 64, 96) depending on how big you want it

04

Apply to Xorg and Legacy Apps

Ensure cursor changes apply outside GNOME.

Edit config files

  • Add to ~/.Xresources: Xcursor.theme: RedGlass Xcursor.size: 64

  • Run xrdb -merge ~/.Xresources to apply changes

05

Restart Session

Reload desktop environment to finalize changes.

  • Log out and log back in

  • Or restart KNOPPIX session

  • Cursor should now appear big and red everywhere

Sources:

✅ After following these steps, your KNOPPIX 9.1 desktop will display a large red cursor across applications. If you want even more customization, you can edit the cursor theme’s image files directly (PNG/SVG) to fine‑tune the shade of red or shape.

Would you like me to also show you how to create your own custom red cursor images (so you’re not limited to pre‑made themes), or keep it strictly to applying existing themes?


___________________________________________________________________________________

Copilot , could you please teach me step-by-step how do i edit the config files for the "Xcursor.theme" so that i can get a Red-Color mouse pointer for my KNOPPIX 9.1 Desktop . Copilot , for you information , when i run the Linux command , that is , # apt-get install xcursor-themes , the KNOPPIX machine says , xcursor-themes is already the newest version ( 1.0.5-1 ) ......... Copilot , your explanation just now regarding edit config files was a little bit too brief and i could not catch up what you are trying to say and i hope this time you make it as easy as possible  ? Thanks Copilot for your answer.

_______________________________________________________



Alright  Norizan 😊, let’s go step‑by‑step so you can edit your Xcursor.theme config files in KNOPPIX 9.1 to get a big red mouse pointer. Think of this like painting your house door red — we’ll tell Linux exactly which cursor theme to use, what color, and how big it should be.

01

Locate Cursor Config Folder

The cursor theme settings are stored in hidden folders inside your home directory.

Open terminal → type cd ~/.icons

  • If .icons does not exist, create it: mkdir ~/.icons

  • Inside, look for a folder named after your cursor theme (e.g., default or DMZ-White)

02

Find Xcursor.theme File

This file tells Linux which cursor theme to load.

Navigate into your cursor theme folder

  • Look for a file named index.theme or Xcursor.theme

  • If missing, create a new file called Xcursor.theme

03

Edit Theme Settings

We’ll set the theme name and size here.

Open file with nano: nano Xcursor.theme

  • Add these lines: [Icon Theme] Inherits=RedCursor Xcursor.size=48

  • Replace RedCursor with the name of your installed red cursor theme

  • Adjust size (e.g., 48, 64, 72) until it looks big enough

04

Apply Red Cursor Theme

Now tell the system to use your new theme.

Run command: update-alternatives --config x-cursor-theme

  • Select your red cursor theme from the list

  • If not listed, copy the theme folder into /usr/share/icons/ and rerun the command

05

Restart Desktop Session

Changes only take effect after restarting.

  • Log out and log back in

  • Or run: sudo service lightdm restart

  • Your cursor should now be big and red!

Sources:

💡 Extra tip for Grandpa Norizan: If you don’t already have a red cursor theme, you can download one (search for “red Xcursor theme”) and place it in ~/.icons/RedCursor. Then the config file will know where to find it.

Would you like me to also show you how to make your own red cursor images (by recoloring existing ones), or do you prefer sticking to ready‑made themes?



__________________________________________________________________________

Copilot , when i run the Linux comand " update-alternatives --config x-cursor-theme " on my KNOPPIX 9.1 machine ....... i got this message " root@Microknoppix:/#
root@Microknoppix:/#
root@Microknoppix:/# update-alternatives --config x-cursor-theme
There are 7 choices for the alternative x-cursor-theme (providing /usr/share/icons/default/index.theme).

Selection Path Priority Status

0 /etc/X11/cursors/breeze_cursors.theme 102 auto mode 1 /etc/X11/cursors/Breeze_Snow.theme 41 manual mode 2 /etc/X11/cursors/breeze_cursors.theme 102 manual mode

  • 3 /etc/X11/cursors/core.theme 30 manual mode 4 /etc/X11/cursors/handhelds.theme 20 manual mode 5 /etc/X11/cursors/redglass.theme 20 manual mode 6 /etc/X11/cursors/whiteglass.theme 20 manual mode 7 /usr/share/icons/Adwaita/cursor.theme 90 manual mode

Press <enter> to keep the current choice[*], or type selection number: " .......... Copilot , how do i proceed from here in order to get that BIG RED COLOR MOUSE POINTER or that RED GLASS MOUSE POINTER .......... perhaps , i getting quite close now to the answer for my problem ! THANKS for the answer.

_______________________________________________________



Perfect,  Norizan — you’re right at the doorstep of the solution 🎉. The menu you saw with update-alternatives --config x-cursor-theme is basically Linux asking: “Which cursor outfit do you want me to wear?”

Here’s how you can proceed step‑by‑step to get that big red mouse pointer (using the redglass theme you spotted):

🖱 Step‑by‑Step Guide

  1. Run the command again

    bash
    update-alternatives --config x-cursor-theme
    

    You’ll see the same list of choices.

  2. Pick the redglass theme Type 5 (since option 5 is /etc/X11/cursors/redglass.theme) and press Enter. This tells KNOPPIX: “Use the red glass cursor set.”

  3. Increase cursor size By default, the redglass cursor may be small. To make it big, set the Xcursor size:

    bash
    echo "Xcursor.size=64" >> ~/.Xresources
    

    (You can change 64 to 48, 72, or even 96 depending on how large you want it.)

  4. Reload the settings Apply the new size without rebooting:

    bash
    xrdb -merge ~/.Xresources
    

    Then restart your desktop session (log out and back in, or reboot).

  5. Confirm the change Your cursor should now be red and larger. If it’s still small, increase the number in Xcursor.size.

🔧 Extra Tip

If you want to experiment, you can also try option 7 (Adwaita) or others, but for a red pointer, redglass is the right choice.

So yes, Grandpa Norizan — you’re very close! Just select option 5 (redglass) and bump up the size with Xcursor.size. That will give you the big red cursor you’ve been chasing.

Would you like me to also show you how to make the redglass cursor even brighter red (by editing its image files), or keep it simple with the ready‑made theme?



_______________________________________________________

Copilot , when i type 5 , i got this message " Press <enter> to keep the current choice[*], or type selection number: 5 update-alternatives: using /etc/X11/cursors/redglass.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in manual mode root@Microknoppix:/#
root@Microknoppix:/# " .......... and Copilot , after i type 5 , my mouse pointer still do not turn to the RED COLOR or the RED GLASS that i have in mind , so Copilot , how do i proceed from here ? THANKS for the answer.

_______________________________________________________


You did the right thing by selecting option 5 (redglass),  Norizan 👍. The reason your cursor didn’t immediately turn red is because KNOPPIX needs a little extra nudge to apply the new theme and reload the settings. Let’s walk through it step‑by‑step:

🖱 Step‑by‑Step Fix

  1. Confirm the theme switch You already ran:

    bash
    update-alternatives --config x-cursor-theme
    

    and chose 5. That’s good — KNOPPIX now knows you want redglass.

  2. Force the system to reload the cursor theme Run:

    bash
    sudo update-alternatives --set x-cursor-theme 
    /etc/X11/cursors/redglass.theme

    This ensures the redglass theme is set explicitly.

  3. Set cursor size (make it BIG) Add this line to your ~/.Xresources file:

    bash
    Xcursor.size: 64
    

    (You can try 72 or 96 if you want it even larger.)

  4. Reload the resource file Apply the changes:

    bash
    xrdb -merge ~/.Xresources
    
  5. Restart your desktop session Log out and back in, or reboot KNOPPIX. Cursor themes usually only take effect after restarting X11.

  6. Check the result Your cursor should now be red and larger. If it’s still not red, it means the redglass theme files aren’t being picked up. In that case, copy the theme into your user’s icon folder:

    bash
    mkdir -p ~/.icons/default
    cp -r /usr/share/icons/redglass ~/.icons/
    echo "[Icon Theme]" > ~/.icons/default/index.theme
    echo "Inherits=redglass" >> ~/.icons/default/index.theme
    

🎨 Why this works

  • update-alternatives sets the system default.

  • Xcursor.size controls how big the cursor appears.

  • Restarting X11 ensures the new theme is actually loaded.

So  Norizan, you’re really close! Just reload the theme and set the size, and you’ll have that big red glass pointer shining on your KNOPPIX desktop.

Would you like me to also show you how to brighten or recolor the redglass theme manually (editing its image files), or keep it simple with the ready‑made theme?



_______________________________________________________

Copilot , you said by rebooting KNOPPIX 9.1 , the cursor themes usually only take effect after restarting X11 but the problem is i am running a KNOPPIX LIVE DVD on my machine , meaning all my configuration settings WILL BE GONE . Copilot , does this kind of setup or system configuration works with a KNOPPIX 9.1 Live DVD or do i have to install a KNOPPIX 9.1 OS on my hard disk meaning DOING A FULL KNOPPIX 9.1 INSTALLATION ON MY HARD DISK DRIVE??? THANKS for the answer.

_______________________________________________________


You’ve spotted the key limitation,  Norizan: when you run KNOPPIX from a Live DVD, all changes you make (like cursor themes, configs, or installed packages) live only in memory. Once you reboot, they vanish. That’s why your red cursor doesn’t “stick” after restarting X11.

Here’s the breakdown:

01

Understand Live DVD Behavior

Temporary Only

KNOPPIX Live DVD runs entirely from RAM, so changes are temporary.

  • Any edits to /etc/X11/cursors or ~/.Xresources are lost after reboot

  • Cursor themes reset to defaults when the session ends

02

Use Persistent Storage

KNOPPIX supports persistence if booted from USB instead of DVD.

  • Create a KNOPPIX bootable USB stick

  • Enable 'persistent storage' during setup

  • Cursor theme changes will survive reboots

03

Full Hard Disk Install

Permanent Solution

Installing KNOPPIX to your hard drive makes it behave like a normal Linux distro.

  • Run the KNOPPIX installer from the Live DVD

  • Choose 'Install to hard disk'

  • After installation, cursor theme changes (like redglass) will remain after reboot

04

Alternative Approach

If you prefer staying on DVD, you must reapply settings each boot.

  • Run update-alternatives --config x-cursor-theme every session

  • Add Xcursor.size to ~/.Xresources again

  • Reload with xrdb -merge ~/.Xresources

🎯 Summary

  • On a Live DVD, your red cursor will disappear after reboot — that’s expected.

  • To keep it permanently, you need either persistent USB storage or a full hard disk install.

  • If you stick with DVD, you’ll have to redo the cursor setup each time you boot.

Would you like me to guide you through creating a KNOPPIX persistent USB stick (so you can keep your red cursor without a full install), or do you prefer going straight to a hard disk installation?



__________________________________________________________________________

Copilot , i have a strong feeling that right now my KNOPPIX 9.1 installation is a PERSISTENT USB STORAGE using Rufus software and it is sitting inside my HARD DISK DRIVE which is inside my MSI GP70 2PE Laptop and by the way is there a short cut way to find out that whether i am on which kind of installation ??? But i have to tell you this Copilot , when i reboot my KNOPPIX 9.1 OS , the Display Resolution which i set to 1360x768 goes back automatically to 1920x1080 ............ does it means that my KNOPPIX 9.1 OS is in DVD-mode ???? THANKS for the answer.

_______________________________________________________


You’re asking a very sharp question,  Norizan — and yes, the behavior you described (your resolution resetting back to 1920×1080 after reboot) is a strong clue that your KNOPPIX is running in Live mode without persistence. Let me break it down clearly:

🔍 How to Tell Which Mode You’re In

  1. Live DVD mode (no persistence)

    • Every reboot resets display resolution, cursor themes, and other configs.

    • Changes live only in RAM and vanish after shutdown.

    • This matches what you’re seeing.

  2. Persistent USB mode

    • KNOPPIX saves changes in a special overlay file/partition on the USB stick.

    • After reboot, your resolution, cursor theme, and installed packages should remain.

    • If settings don’t survive reboot, persistence isn’t active.

  3. Full hard disk install

    • KNOPPIX behaves like a normal Linux distro.

    • All changes are permanent.

    • Resolution and cursor settings stay exactly as you set them.

🛠 Quick Ways to Check

  • Run:

    bash
    mount | grep knoppix
    

    If you see something like KNOPPIX mounted as read-only squashfs, you’re in Live DVD mode. If you see an overlay (e.g., aufs or overlayfs), persistence is active.

  • Look for a persistence file:

    bash
    ls /mnt-system/KNOPPIX/knoppix-data.img
    

    If that file exists, persistence is set up. If not, you’re in DVD mode.

🎯 What This Means for You

  • If you want your red cursor and 1360×768 resolution to survive reboot, you need either:

    • A persistent USB setup (with knoppix-data.img overlay file), or

    • A full hard disk installation.

Right now, since your resolution resets, it’s almost certain you’re still in DVD mode — Rufus may have just written the ISO to disk without persistence enabled.

👉  Norizan, would you like me to walk you through setting up persistence properly on your USB stick (so your red cursor and resolution stick after reboot), or do you want the full guide for a hard disk installation of KNOPPIX 9.1?





No comments:

Post a Comment