在wine下安装9.0的ps会出现不能正常启动的情况,报错如下:
An error has been detected with a required application library and theproduct connot continue. Please reinstall the applications.
解决方法如下:
The right workaround is to give the command:
$ sudo sysctl -w vm.mmap_min_addr=0
This fixes the problem until the next time you reboot. (It also reduces security slightly.) To avoid having to give that same command every time you reboot, also edit the file /etc/sysctl.conf, e.g. with the command
$ sudo gedit /etc/sysctl.conf
and change the line that reads: vm.mmap_min_addr = 65536
to:
vm.mmap_min_addr = 0
That will apply the workaround for you when the system starts. Distributions may wish to include this workaround when they package wine.
An error has been detected with a required application library and theproduct connot continue. Please reinstall the applications.
解决方法如下:
The right workaround is to give the command:
$ sudo sysctl -w vm.mmap_min_addr=0
This fixes the problem until the next time you reboot. (It also reduces security slightly.) To avoid having to give that same command every time you reboot, also edit the file /etc/sysctl.conf, e.g. with the command
$ sudo gedit /etc/sysctl.conf
and change the line that reads: vm.mmap_min_addr = 65536
to:
vm.mmap_min_addr = 0
That will apply the workaround for you when the system starts. Distributions may wish to include this workaround when they package wine.
本文介绍了一种解决Wine环境下Adobe Photoshop 9.0无法正常启动的方法。通过修改系统的vm.mmap_min_addr参数为0,可以解决启动时报错的问题,并提供了永久生效的配置更改方案。
99

被折叠的 条评论
为什么被折叠?



