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

How to Install AMDGPU Pro on Zorin OS 16

October 8, 2022 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading AMDGPU-Pro for Zorin OS

    Download AMDGPU for Zorin OS GNU/Linux

    Here Get AMDGPU .deb for Zorin OS
    Link to Download AMDGPU Pro Installer for Zorin OS

    Choose any of the latest Radeon Devices.
    And then Grab the Latest available Release for Zorin OS 16+.

  2. 4. Installing AMDGPU-Pro Installer

    First, Access Target directory
    Usually with:

    Copy
    cd ~/Downloads

    To Check it’s there List the contents with:

    Copy
    ls . | grep amdgpu

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

    Now to Set up AMDGPU Installer Run:

    Copy
    sudo apt install ./amdgpu*.deb
  3. 5. Installing AMDGPU-Pro Driver

    Now to Install AMDGPU-Pro for Zorin OS
    First, to check the multiple available options you should issue:

    Copy
    amdgpu-install -h

    You can Setup the Pro Version with the pro Flag for the Vulkan implementation.
    So for instance to achieve a Multi Implementations setup the Command is like:

    Copy
    amdgpu-install --usecase=graphics,opencl --opencl=rocr --vulkan=amdvlk,pro

    Agree to the License to achieve the Setup:

    License Agreement
  4. 6. Configuring for Use

    Now to Configure AMDGPU-PRO Driver for Use
    First, Add the Username to the “video” Group with:

    Copy
    sudo usermod -a -G video $LOGNAME

    Follow Editing the Grub Config File with GEdit (Or other Editors):

    Copy
    sudo gedit /etc/default/grub

    Locate and Replace GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” with GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash amdgpu.vm_fragment_size=9″.
    Then Save & Exit.
    Next to Rebuild the Grub Setup run:

    Copy
    sudo update-grub

    Finally, after the Setup is successfully achieved Reboot with:

    Copy
    sudo reboot
  5. 7. Testing AMDGPU-PRO

    So to Check which is the Graphics Driver in Use
    Issue:

    Copy
    lspci -k | grep -EA3 'VGA|3D|Display'

    And “amdgpu should be seen in the Output:

    Testing

    Last, in any case after you should Remove the AMD Open Source Driver:

    Copy
    sudo apt remove xserver-xorg-video-amdgpu

Contents