Wine Prefix Creation Aborted

I'm installing a windows program on a mac with Wine, When I try to install I get the error Prefix Creation Aborted and the following log:

###BOTTLING### default.sh` ###BOTTLING### Gathering debug Info... Versions OS...........................: darwin13 Wine.........................: 1.6.1 WineBottler..................: 1.6.1 Environment PWD..........................: '/Applications/ PATH.........................: /Applications/ USER.........................: stepharr HOME.........................: /Users/stepharr BUNDLERESOURCEPATH...........: /Applications/ WINEPATH.....................: /Applications/ LD_LIBRARY_PATH..............: /Applications/ DYLD_FALLBACK_LIBRARY_PATH...: /Applications/ FONTCONFIG_FILE..............: /Applications/ SILENT.......................: -q http_proxy...................: https_proxy..................: ftp_proxy....................: socks5_proxy.................: Bottle TEMPLATE.....................: BOTTLE.......................: /Volumes/REA's TESTware/B Law.app INSTALLER_URL................: /Volumes/REA's TESTware/instmsia.exe INSTALLER_IS_ZIPPED..........: 0 INSTALLER_NAME...............: instmsia.exe INSTALLER_ARGUMENTS..........: WINETRICKS_ITEMS.............: vcrun6 DLL_OVERRIDES................: EXECUTABLE_PATH..............: winefile EXECUTABLE_ARGUMENTS.........: EXECUTABLE_VERSION...........: 1.0 BUNDLE_IDENTIFIER............: com.yourcompany.yourapp SILENT.......................: -q Hardware: Hardware Overview: Model Name: Mac Pro Model Identifier: MacPro3,1 Processor Name: Quad-Core Intel Xeon Processor Speed: 2.8 GHz Number of Processors: 2 Total Number of Cores: 8 L2 Cache (per Processor): 12 MB Memory: 8 GB Bus Speed: 1.6 GHz Boot ROM Version: MP31.006C.B05 SMC Version (system): 1.25f4 Serial Number (system): G8848347XYK Hardware UUID: F9A6E8E1-69FE-5486-AFEE-BA270947CCC0 ###BOTTLING### Create .app... mkdir: /Volumes/REA's TESTware/B Read-only file system mkdir: /Volumes/REA's TESTware/B Read-only file system /Applications/ line 217: /Volumes/REA's TESTware/B Read-only file system ditto: /Volumes/REA's TESTware/B Read-only file system /Applications/ line 223: /Volumes/REA's TESTware/B Read-only file system chmod: /Volumes/REA's TESTware/B No such file or directory /Applications/ line 290: /Volumes/REA's TESTware/B Read-only file system ###BOTTLING### Enabling CoreAudio, Colors, Antialiasing and flat menus... wine: chdir to /Volumes/REA's TESTware/B : No such file or directory ### LOG ### Command '/Applications/ regedit /tmp/reg.reg' returned status 1. Task returned with status 1.` 

I'm wondering if there is a winetrick I have to run in order to install the program?

1 Answer

Not a problem with winetrick. Did you read the error message? It says:

mkdir: /Volumes/REA's TESTware/B Read-only file system

The sentence

Read-only file system

is repeated a few times, until of course we are told that:

chdir to /Volumes/REA's TESTware/B : No such file or directory

which occurs because the filesystem being read-only, no files or directories can be created .

You have to deal with the fact you cannot write onto this disk. You may get around that perhaps by running the same program as root. If that fails, you will have to investigate read/write permissions in these folders, or perhaps the disk. But I believe the first option (running the install program as sudo) will fix your problem.

You Might Also Like