mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
Add note about APE loader and noexec mounts (#707)
This commit is contained in:
parent
f6b3019796
commit
5c0ce6b83e
1 changed files with 7 additions and 3 deletions
10
README.md
10
README.md
|
@ -57,9 +57,13 @@ sudo sh -c 'echo -1 >/proc/sys/fs/binfmt_misc/status'
|
||||||
|
|
||||||
Since we used the `ape-no-modify-self.o` bootloader (rather than
|
Since we used the `ape-no-modify-self.o` bootloader (rather than
|
||||||
`ape.o`) your executable will not modify itself when it's run. What
|
`ape.o`) your executable will not modify itself when it's run. What
|
||||||
it'll instead do, is extract a 4kb program to `${TMPDIR:-${HOME:-.}}`
|
it'll instead do, is extract a 4kb program (the [APE loader](https://justine.lol/apeloader/))
|
||||||
that maps your program into memory without needing to copy it. It's
|
to `${TMPDIR:-${HOME:-.}}` that maps your program into memory without
|
||||||
possible to install the APE loader systemwide as follows.
|
needing to copy it. The APE loader must be in an executable location
|
||||||
|
(e.g. not stored on a `noexec` mount) for it to run. See below for
|
||||||
|
alternatives:
|
||||||
|
|
||||||
|
It's possible to install the APE loader systemwide as follows.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# System-Wide APE Install
|
# System-Wide APE Install
|
||||||
|
|
Loading…
Reference in a new issue