MYST won't install - need 256 color mode - intel video

Questions about Wine on Linux
Locked
mpurtell
Level 2
Level 2
Posts: 15
Joined: Sun Jan 31, 2016 9:35 am

MYST won't install - need 256 color mode - intel video

Post by mpurtell »

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
User avatar
dimesio
Moderator
Moderator
Posts: 13373
Joined: Tue Mar 25, 2008 10:30 pm

Re: MYST won't install - need 256 color mode - intel video

Post by dimesio »

mpurtell
Level 2
Level 2
Posts: 15
Joined: Sun Jan 31, 2016 9:35 am

Re: MYST won't install - need 256 color mode - intel video

Post by mpurtell »

I see the statement

Code: Select all

Xephyr :1 -ac -screen 800x600x8 &
DISPLAY=:1 xterm
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
#/bin/bash
wine /media/mandbx/MYST/install.exe
Include the xephyr lines in here?

edit:
I think this one might be solved.
mpurtell
Level 2
Level 2
Posts: 15
Joined: Sun Jan 31, 2016 9:35 am

Re: MYST won't install - need 256 color mode - intel video

Post by mpurtell »

when I execute

Code: Select all

Xephyr :1 -ac -screen 800x600x8 & DISPLAY=:1 xterm
I get this error

Code: Select all

[1] 9235
xterm: Xt error: Can't open display: :1
spoon0042
Level 6
Level 6
Posts: 572
Joined: Thu Dec 24, 2009 11:00 am

Re: MYST won't install - need 256 color mode - intel video

Post by spoon0042 »

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.
mpurtell
Level 2
Level 2
Posts: 15
Joined: Sun Jan 31, 2016 9:35 am

Re: MYST won't install - need 256 color mode - intel video

Post by mpurtell »

spoon0042 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.
It took a couple tries but I finally came up with

Code: Select all

Xephyr :1 -ac -screen 800x600x8 & DISPLAY=:1 sleep 5
wine start /unix /media/mandbx/MYST/install.exe -- :1
Putting the sleep between setting up Xephyr and the call to launch install.exe and I no longer get the Zephyr error. This specific problem is solved but I still have another problem which I will follow up on in this thread.
Locked