ptitSeb
Serial Porter
Install winetricks, from https://github.com/Winetricks/winetricks readme:I got the Windows Zoom now running via Box and Wine, allthough i think as long as the Firefox Plugin works out of the box whit OpenGL, and i ditnt had luck whit Direct X yet, i will use the Debian 11 Firefox on Sunday more likely..
One Question: When i want to shoffel Game Data on Pyra for the Ports, par exemple for Theme Hospital, will i need Direct X, or could i just install the Game whit the Files from GOG via Wine Explorer and copy and paste the Needed Data?
And i couldnd open Wine CFG yesterday, i dont know why, i allready changed something on the Library for Direct X (D3D or something), nothing else..
Maybe tomorrow i will post the Log File when i found out how..
And i ditnt found out how to install wine Tricks yet....
create a file, in your home, with this content:
Code:
#!/bin/sh
# Create and switch to a temporary directory writeable by current user. See:
# https://www.tldp.org/LDP/abs/html/subshells.html
cd "$(mktemp -d)" || exit 1
# Use a BASH "here document" to create an updater shell script file.
# See:
# https://www.tldp.org/LDP/abs/html/here-docs.html
# > outputs stdout to a file, overwriting any pre-existing file
# << takes input, directly from the script itself, till the second '_EOF_SCRIPT' marker, as stdin
# the cat command hooks these 2 streams up (stdin and stdout)
###### create update_winetricks START ########
cat > update_winetricks <<_EOF_SCRIPT
#!/bin/sh
# Create and switch to a temporary directory writeable by current user. See:
# https://www.tldp.org/LDP/abs/html/subshells.html
cd "\$(mktemp -d)"
# Download the latest winetricks script (master="latest version") from Github.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
# Mark the winetricks script (we've just downloaded) as executable. See:
# https://www.tldp.org/LDP/GNU-Linux-Tools-Summary/html/x9543.htm
chmod +x winetricks
# Move the winetricks script to a location which will be in the standard user PATH. See:
# https://www.tldp.org/LDP/abs/html/internalvariables.html
sudo mv winetricks /usr/bin
# Download the latest winetricks BASH completion script (master="latest version") from Github.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks.bash-completion
# Move the winetricks BASH completion script to a standard location for BASH completion modules. See:
# https://www.tldp.org/LDP/abs/html/tabexpansion.html
sudo mv winetricks.bash-completion /usr/share/bash-completion/completions/winetricks
# Download the latest winetricks MAN page (master="latest version") from Github.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks.1
# Move the winetricks MAN page to a standard location for MAN pages. See:
# https://www.pathname.com/fhs/pub/fhs-2.3.html#USRSHAREMANMANUALPAGES
sudo mv winetricks.1 /usr/share/man/man1/winetricks.1
_EOF_SCRIPT
###### create update_winetricks FINISH ########
# Mark the update_winetricks script (we've just written out) as executable. See:
# https://www.tldp.org/LDP/GNU-Linux-Tools-Summary/html/x9543.htm
chmod +x update_winetricks
# We must escalate privileges to root, as regular Linux users do not have write access to '/usr/bin'.
sudo mv update_winetricks /usr/bin/
than do
Code:
cd ~
chmod +x meh.sh
sudo ./meh.sh
try it with
Code:
winetricks help
(PS: Why Zoom on Windows when I took the time to list all the steps to install the Linux version of Zoom?)
(PS2: Stop messing with DirectX, it's Wine, not Windows, so dx stuff are already there)