在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.