Wiki » History » Version 5
Gabor Murray, 11/05/2020 04:58 PM
| 1 | 5 | h1. Wine-Wiki |
|
|---|---|---|---|
| 2 | |||
| 3 | |||
| 4 | 1. Creare un @WINEPREFIX@ nella home |
||
| 5 | |||
| 6 | <pre> |
||
| 7 | WINEPREFIX="$HOME/.wine-dir" WINEARCH=win32 wine wineboot |
||
| 8 | </pre> |
||
| 9 | |||
| 10 | 2. Scaricare @winetricks@ |
||
| 11 | |||
| 12 | <pre> |
||
| 13 | wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks |
||
| 14 | </pre> |
||
| 15 | |||
| 16 | 3. Renderlo eseguibile |
||
| 17 | |||
| 18 | <pre> |
||
| 19 | chmod +x winetricks |
||
| 20 | </pre> |
||
| 21 | |||
| 22 | 4. Installare @corefonts@ e le librerie @dotnet@ (4.6.2 in questo caso) specificando il sistema operativo Windows XP. NB: per problemi con @dotnet461@ vedi sotto |
||
| 23 | |||
| 24 | <pre> |
||
| 25 | WINEPREFIX="$HOME/.wine-dir" ./winetricks corefonts dotnet462 ddr=gdi winxp |
||
| 26 | </pre> |
||
| 27 | |||
| 28 | |||
| 29 | 5. Esecuzione di un Programma .exe |
||
| 30 | |||
| 31 | <pre> |
||
| 32 | WINEPREFIX="$HOME/.wine-dir" wine programma.exe |
||
| 33 | </pre> |
||
| 34 | |||
| 35 | h3. dotnet461 crashing GUI bug |
||
| 36 | |||
| 37 | Nel caso si presenti un problema con l'installazione di @dotnet461@ lanciare @winetricks@ con l'opzione -q per aggirare il crash della GUI |
||
| 38 | |||
| 39 | <pre> |
||
| 40 | WINEPREFIX="$HOME/.wine-dir" ./winetricks -q dotnet462 |
||
| 41 | </pre> |
||
| 42 | |||
| 43 | h3. Alcuni modi per aggirare gli errori |
||
| 44 | |||
| 45 | Se avviando un gioco (ad esempio The Fifth Element) compare il seguente messaggio: |
||
| 46 | |||
| 47 | <pre> |
||
| 48 | The driver of a PowerVR 3D card has been detected, but the hardware could not be initialized. |
||
| 49 | Please remove the file SGL.DLL from your WINDOWS and WINDOWS/SYSTEM directory and try again. |
||
| 50 | </pre> |
||
| 51 | |||
| 52 | lanciare il programma con l'opzione -d3d |
||
| 53 | |||
| 54 | <pre> |
||
| 55 | WINEPREFIX="$HOME/.wine-dir" wine programma.exe -d3d |
||
| 56 | </pre> |
||
| 57 | |||
| 58 | h3. Verifica installati |
||
| 59 | |||
| 60 | <pre> |
||
| 61 | WINEPREFIX="$HOME/.wine-dir/" WINEARCH=win32 ./winetricks list-installed |
||
| 62 | </pre> |