http://bugs.winehq.org/show_bug.cgi?id=34122
--- Comment #14 from Jayky jayky-2000@gmx.de --- (In reply to comment #13)
For those of us who aren't all that savvy, how can we get things to work properly? My game loads but much of the DLC is missing and when the game starts, there are no order menus, making it unplayable.
Mark
Dear Mark,
For all that are not so familiar with Linux here a short HowTo: 1. Find the place where Civ is installed. Normally in your home directory. When you are using PlayOnLinux it should be something like this: /home/$USE_HERE_YOUR_OWN_USER_DIR$/PlayOnLinux's\ virtual\ drives/Steam/drive_c/Program\ Files/Steam/SteamApps/common/sid\ meier's\ civilization\ v Be sure that you find the directory with a folder called "Assets" in it. 2. Open a shall/terminal 3. Change the folder to your Civ5 directory that you found in step 1. For this use the "cd" command. Here an example that must be adapt to your dir: cd /home/$USE_HERE_YOUR_OWN_USER_DIR$/PlayOnLinux's\ virtual\ drives/Steam/drive_c/Program\ Files/Steam/SteamApps/common/sid\ meier's\ civilization\ v/Assets 4. Use this command: mv DLC ../DLC.orig 5. Create a new folder called "DLC" within the Civ5 folder with the name "Assets". You can use your favourite file manager (e.g. Nautilus, Dolphin, Thunar, ...) for this step. 6. Use this command: sudo mount -t tmpfs tmpfs DLC For this step you have to type your password. It is the password that you are also usung to login to your computer account. If there is an Error because there is no correct mount point, than you have done something wrong in step 5. 7. Use this command: cd DLC If there is an Error because there is no directory with this name, than you have done something wrong in step 5. 8. Use this command: for i in `ls ../../DLC.orig/|tac`; do ln -s ../../DLC.orig/$i .; done;