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

How to Install Latest Wine on Kali 2019

September 7, 2019 | By the+gnu+linux+evangelist.

Installing

  1. 2. Setting Up Wine Repo

    How to Add Wine Kali Repository

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

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

    Copy
    sudo apt install aptitude

    Aptitude is a more advanced Tool to Manage the Software Dependencies.

  3. 3. 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

    Possibly first Remove the Wine on System with:

    Copy
    sudo apt remove wine*

    So, then 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. 4. 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