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

Step-by-step – Wine AntiX Linux Installation

May 28, 2021 | By the+gnu+linux+evangelist.

Installing

  1. 2. Setting Up Wine Repo

    How to Add Wine antiX Repository

    Here Wine antiX Repo Setup
    Link to Add Wine antiX Repository Guide
  2. 3. Installing Dependencies

    Now to Install Requirements for antiX
    First, install the Aptitude Package Manager with:

    Copy
    sudo apt install aptitude

    Aptitude is a more advanced Tool to Manage the Software Dependencies.
    And then to Setup the required stuff:

    Copy
    sudo aptitude install libfaudio0:i386 libglib2.0-0:i386  libgstreamer-plugins-base1.0-0:i386
  3. 4. Installing Latest Wine

    Finally, to Install the Wine on
    First, to Search for the available Releases:

    Copy
    sudo apt search wine

    And in the output you can see also all the available Wine Versions:

    Wine Version

    So for the current Wine Stable run:

    Copy
    sudo aptitude install wine-stable wine-stable-i386 wine-stable-amd64

    When for the Release that includes the latest Patches:

    Copy
    sudo aptitude install wine-staging wine-staging-i386 wine-staging-amd64

    This Setup includes the usually needed Wine 32-bit.
    Simply Confirm the proposed Solution:

    Aptitude Solution
  4. 5. Amending User’s Path

    Again Append Wine into the Path
    So for wine-stable play:

    Copy
    echo "export PATH=$PATH:/opt/wine-stable/bin" >> ~/.bashrc

    When in case of wine-staging:

    Copy
    echo "export PATH=$PATH:/opt/wine-staging/bin" >> ~/.bashrc

    Finally, Reload the Bash Path simply with:

    Copy
    bash

Contents