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

How to Install Libmotif4 on Ubuntu 22.04

May 29, 2022 | By the+gnu+linux+evangelist.

Installing

  1. Setup the Ubuntu Extra Packages Repo

    sudo su

    Authenticate with the User Admin Pass.
    If Got “User is Not in Sudoers file” then see: How to Enable sudo

    sudo su

    The above Command to Login as SuperUser.

    echo 'deb [trusted=yes] http://us.archive.ubuntu.com/ubuntu/ trusty main universe' >> /etc/apt/sources.list.d/extra.list
    apt update
  2. Installing libmotif4 for Ubuntu 22.04 LTS

    apt install libmotif4

  3. Disabling the Ubuntu Extra Apt Repo

    rm /etc/apt/sources.list.d/extra.list
    apt update

    Keep it in Case you will Look for some others Extra Packages in the future.

    exit

Contents