We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
map failed
In case anyone using an SELinux-enabled system runs into the following error:
$ LIBZPHOOK=./apps/basic/libzphook_basic.so LD_PRELOAD=./libzpoline.so /bin/ls map failed NOTE: /proc/sys/vm/mmap_min_addr should be set 0
the root cause is SELinux. By setting it to Permissive mode, you can get it to work:
sudo setenforce 0
You can turn it back to enforcement afterwards:
sudo setenforce 1
The text was updated successfully, but these errors were encountered:
I have added a note on this issue in README.
Thank you very much for your report which has improved the documentation.
Sorry, something went wrong.
It might be more appropriate to use :
sudo setsebool -P mmap_low_allowed 1
It is good to know that setsebool can selectively enable or disable access control settings.
Thank you very much for sharing the helpful information.
No branches or pull requests
In case anyone using an SELinux-enabled system runs into the following error:
the root cause is SELinux. By setting it to Permissive mode, you can get it to work:
You can turn it back to enforcement afterwards:
The text was updated successfully, but these errors were encountered: