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

CodeReady Containers Installation in openSUSE – Step-by-step

December 8, 2021 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Dependencies

    Then to Install Required Packages
    Simply play:

    sudo zypper in NetworkManager qemu-kvm libvirt virt-install

    Then to Enable Service run:

    sudo systemctl enable --now libvirtd

    Again Reboot with:

    sudo reboot
  2. 3. Downloading CodeReady Containers

    Download CodeReady Containers for openSUSE GNU/Linux

    Get CodeReady Containers tar.xz for openSUSE

    Possibly on Firefox Prompt Choose to “Save it”.

  3. 4. Installing CodeReady Containers

    Then to Install CodeReady Containers for openSUSE
    So first, Extract the Archive into Target directory with:

    sudo tar xvf ~/Downloads/crc*.tar.xz -C ~

    (But if you are in Trouble to Find the Location on Terminal then See: How to Access Downloads Folder from Browser.)
    Now for ease Rename the folder as:

    sudo mv ~/crc* ~/crc

    Finally, amend the User’s Path:

    echo "export PATH=$PATH:~/crc" >> ~/.bashrc

    To Reload it simply run:

    bash

    And finally, to Test the CodeReady Containers Setup run:

    crc version

Contents