MYST won't install - need 256 color mode - intel video
MYST won't install - need 256 color mode - intel video
I've been trying to install Myst on a 32 bit debin linux system. Launching the install.exe for myst produces an error indicating wine needs to be in 256 color mode. I have followed numerous examples to no avail. I have intel video and wine-staging 1.9.6 installed. Any help would be much appreciated. - Thanks, mike
Re: MYST won't install - need 256 color mode - intel video
I see the statement but how or where is this to be used? Inline with the launch command? in a shell script that calls wine and the exe?
As an example, this would call my install.exe
edit: I think this one might be solved.
Code: Select all
Xephyr :1 -ac -screen 800x600x8 &
DISPLAY=:1 xterm
As an example, this would call my install.exe
Include the xephyr lines in here?#/bin/bash
wine /media/mandbx/MYST/install.exe
edit: I think this one might be solved.
Re: MYST won't install - need 256 color mode - intel video
when I execute I get this error
Code: Select all
Xephyr :1 -ac -screen 800x600x8 & DISPLAY=:1 xterm
Code: Select all
[1] 9235
xterm: Xt error: Can't open display: :1
Re: MYST won't install - need 256 color mode - intel video
Xephyr probably isn't starting instantly, putting a 'sleep 5;' (or whatever is long enough for it to be ready) between the two commands should work.
Re: MYST won't install - need 256 color mode - intel video
It took a couple tries but I finally came up withspoon0042 wrote:Xephyr probably isn't starting instantly, putting a 'sleep 5;' (or whatever is long enough for it to be ready) between the two commands should work.
Code: Select all
Xephyr :1 -ac -screen 800x600x8 & DISPLAY=:1 sleep 5
wine start /unix /media/mandbx/MYST/install.exe -- :1