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

Step-by-step – Latest Firefox Installation in MX Linux

December 2, 2019 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading Firefox

    Download Latest Firefox for Linux

    Here Firefox Linux tar.bz2
    Link to Download Firefox tar.bz2 Linux Release
  2. 3. Extracting Firefox

    Then Extract Firefox archive
    Eventually Double-Click/Right-Click to Open with Archive Manager:

    How to Install Firefox on MX Linux - Extraction
    Decompress Into /tmp.

  3. 4. Installing Firefox

    Relocate Firefox
    First, Make the /opt Directory if it’s not already there:

    Copy
    if [ ! -d "/opt" ]; then mkdir /opt; fi

    If Got “User is Not in Sudoers file” then Look: Solution

    Set up Ownership and then Switch Firfox into the target Directory with:

    Copy
    sudo chown -R root:root /tmp/firefox && sudo mv /tmp/firefox /opt

    Finally, Make a Symlink for Easy-Starting:

    Copy
    sudo ln -s /opt/firefox/firefox /usr/local/bin/firefox

Contents