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

How to Install A Deb Package on Fedora 38

March 28, 2023 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Software

    First, Install the needed Tools:

    sudo apt-get install alien dpkg-dev
    debhelper build-essential

    However all this stuff may be Already installed…

  2. 3. Converting Package

    To Convert the Rpm package in Fedora format
    First, access the Download location by default with:

    cd ~/Downloads

    To Check it’s there List the contents with:

    ls . | grep deb

    The grep Command refine the output List showing only the Entries matching the Keyword.
    But if you are in Trouble to Find it out on Terminal then See: How to Access Downloads Folder from Browser.

    alien -r ./[MYPACKAGE].deb

    Replace [MYPACKAGE] with your current one in the above.

  3. 4. Installing Package

    Then to Install the Package
    Simply play:

    sudo rpm -ivh ./[MYPACKAGE].rpm

    Or for trying to manage the eventual Dependencies:

    sudo dnf install ./[MYPACKAGE].rpm

Contents