SimCity 4: Won't launch after attempted install

Questions about Wine on Linux
Locked
SimCityFan4
Newbie
Newbie
Posts: 2
Joined: Sat Feb 21, 2015 7:03 pm

SimCity 4: Won't launch after attempted install

Post by SimCityFan4 »

This might appear to be a semi common issue. Wine 1.6.2 running on Linux Mint 17.1 won't launch SimCity 4 after I attempt to install it. I run the installer from the autorun file (contents of CD1 copied to a folder on my desktop :) ) with CD2 already in the drive. The installer just quits without running the DirectX setup. I then browse to the drive_c directory where the game is installed. I double-click, the mouse appears to be busy, but nothing happens. If anyone can help I'd be greatly appreciated.
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: SimCity 4: Won't launch after attempted install

Post by dimesio »

SimCity 4 has problems with multicore systems (on Windows, too), so you should bind it to one core with taskset when running it. The command I use is:

Code: Select all

taskset -c 0 env WINEPREFIX=/wine/sc4 wine '/wine/sc4/drive_c/Program Files/Maxis/SimCity 4 Deluxe/simcity 4.exe' -intro:off
The game is installed in /wine/sc4 on my system; use whatever the actual paths are on your system.

If your system is 64 bit you should also try installing to a 32 bit wineprefix. http://wiki.winehq.org/FAQ#32_bit_wineprefix

If none of that helps, post terminal output. http://wiki.winehq.org/FAQ#get_log
SimCityFan4
Newbie
Newbie
Posts: 2
Joined: Sat Feb 21, 2015 7:03 pm

Re: SimCity 4: Won't launch after attempted install

Post by SimCityFan4 »

dimesio wrote:SimCity 4 has problems with multicore systems (on Windows, too), so you should bind it to one core with taskset when running it. The command I use is:

Code: Select all

taskset -c 0 env WINEPREFIX=/wine/sc4 wine '/wine/sc4/drive_c/Program Files/Maxis/SimCity 4 Deluxe/simcity 4.exe' -intro:off
The game is installed in /wine/sc4 on my system; use whatever the actual paths are on your system.

If your system is 64 bit you should also try installing to a 32 bit wineprefix. http://wiki.winehq.org/FAQ#32_bit_wineprefix

If none of that helps, post terminal output. http://wiki.winehq.org/FAQ#get_log
But I still don't understand your context and environment. Where does "/wine/sc4" come from?
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: SimCity 4: Won't launch after attempted install

Post by dimesio »

That's the wineprefix I installed it to. The default is ~/.wine. http://wiki.winehq.org/FAQ#wineprefix
Locked