4Winds freezes
4Winds freezes
I'm trying to run 4Winds (http://appdb.winehq.org/objectManager.p ... ngId=54861) on MacOS X. Game generally works but sometimes, when finishing the round main window freezes (only the playground, menu and buttons still works properly). I was trying to run wine in debug mode but found nothing.
I noticed a possible cause of the problem. When main window freezes and start new game without restarting X11 in terminal appears:
But don't know what to do with that.
Code: Select all
wine client error:15: pipe: Too many open files
Run 'sudo ulimit -n 4096' in the same terminal before starting your program.jonypl wrote:But don't know what to do with that.Code: Select all
wine client error:15: pipe: Too many open files
Should work with regular *NIX. I'm guessing you should ask Apple forum why it doesn't work for you.jonypl wrote:When I run ulimit and then check present limit of opened files with ulimit -a the number is unchanged. I don't know if result of ulimit -a is content of config file or real, present limits.
You can't use sudo to run ulimit like that. Instead, try
$ sudo bash
# ulimit -n 4096
# su jonypl
$ ulimit -a
(should show a raised limit on # of files)
This is an awesome pain in the rear end, though, so you
might want to find a way to raise this limit more permanently
(e.g. by doing ulimit -n 4096 in /etc/rc.common, and rebooting;
don't know if that works).
$ sudo bash
# ulimit -n 4096
# su jonypl
$ ulimit -a
(should show a raised limit on # of files)
This is an awesome pain in the rear end, though, so you
might want to find a way to raise this limit more permanently
(e.g. by doing ulimit -n 4096 in /etc/rc.common, and rebooting;
don't know if that works).
4Winds freezes
jonypl wrote:
James McKenzie
Did the number of files limit increase to 4096?It still doesn't work. Game freezes in random moment…
James McKenzie