Install wine-staging and gallium-nine on debian buster problem

Questions about Wine on Linux
Locked
duck
Level 1
Level 1
Posts: 9
Joined: Mon Jan 21, 2019 4:23 pm

Install wine-staging and gallium-nine on debian buster problem

Post by duck »

Hi. Installation of wine-staging and gallium nine is very simple on archlinux. In debian its very hard. I use installation topic for debina users on winehq and i got libfaudio0:i386 in dependencies but there where no package in debian buster. How i can install latest wine-staging with gallium-nine on debian buster?
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Install wine-staging and gallium-nine on debian buster problem

Post by jkfloris »

Download the libfaudio0 packages from the OBS
32-bit: https://download.opensuse.org/repositor ... r_i386.deb
64-bit: https://download.opensuse.org/repositor ... _amd64.deb

Install both packages with:

Code: Select all

dpkg -i libfaudio0_19.10-0~buster_i386.deb libfaudio0_19.10-0~buster_amd64.deb
Now you should be able to install the winehq-staging packages.

Install and update Winetricks and install gallium-nine

Code: Select all

sudo apt install winetricks
sudo winetricks --self-update
winetricks galliumnine
duck
Level 1
Level 1
Posts: 9
Joined: Mon Jan 21, 2019 4:23 pm

Re: Install wine-staging and gallium-nine on debian buster problem

Post by duck »

Is there another way to install gallium nine without using winetricks?
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Install wine-staging and gallium-nine on debian buster problem

Post by jkfloris »

If you want to install Gallium Nine manually read their Github for more information:
https://github.com/iXit/wine-nine-standalone
duck
Level 1
Level 1
Posts: 9
Joined: Mon Jan 21, 2019 4:23 pm

Re: Install wine-staging and gallium-nine on debian buster problem

Post by duck »

I download binary release of gallium-nine standalone gallium-nine-standalone-v0.5.tar.gz. Extract files and launch nine-install.sh. When i launch "wine ninewinecfg" i have errors in terminal:
err:d3d9nine:common_load_d3dadapter d3dadapter9.so.1 was not found on your system.
Setting the envvar D3D_MODULE_PATH or regkey Software\Wine\Direct3DNine\ModulePath is required

and on screen i have menu on screenshot
Attachments
gallium error.png
gallium error.png (10.89 KiB) Viewed 3727 times
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Install wine-staging and gallium-nine on debian buster problem

Post by Bob Wya »

duck wrote: Mon Oct 28, 2019 11:53 am I download binary release of gallium-nine standalone gallium-nine-standalone-v0.5.tar.gz. Extract files and launch nine-install.sh. When i launch "wine ninewinecfg" i have errors in terminal:

Code: Select all

err:d3d9nine:common_load_d3dadapter d3dadapter9.so.1 was not found on your system.
Setting the envvar D3D_MODULE_PATH or regkey Software\Wine\Direct3DNine\ModulePath is required

and on screen i have menu on screenshot
From the Requirements section in the Gallium Nine Standalone README:
  • A Gallium based graphics driver (Mesa 3D)
  • Mesa's Gallium Nine state tracker (d3dadapter9.so)
You're obviously missing the Linux Mesa D3D9 (Gallium Nine state tracker) ELF library (d3dadapter9.so).

Bob
duck
Level 1
Level 1
Posts: 9
Joined: Mon Jan 21, 2019 4:23 pm

Re: Install wine-staging and gallium-nine on debian buster problem

Post by duck »

yep, i install "sudo apt install libd3dadapter9-mesa libd3dadapter9-mesa:i386" and all work. Which is better gallium-nine stand alone or D9VK? How i can install DXVK and D9VK on debian?
Locked