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

How to Downgrade Kernel on Debian Stable – Step-by-step

September 20, 2023 | By the+gnu+linux+evangelist.

Dowgrading Kernel

  1. 2. Downgrading Kernel

    Now to Downgrage Kernel on Debian Stable
    First, Search for the avaiable ones:

    apt search linux-image

    Copy the Kernel ID with Ctrl+Shift+c.
    Especially relevant, then is Critical that you found also the corrensponding Kernel Headers with:

    apt search linux-headers | grep [ID]

    Replace ‘[ID]‘ with that found in the former one.
    The grep Command refine the output List showing only the Entries matching the Keyword.
    Now to Setup Kernel and the matching Headers:

    sudo apt install linux-image-[ID] linux-headers-[ID]

    Last, to Test it Reboot with:

    sudo reboot
  2. So Now I’m truly Happy if My Guide could Help you to Downgrade Kernel on Debian Stable!

Contents