diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-14 11:59:42 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-17 12:38:03 -0400 |
commit | 8bf5af40577b3cff009f55a4fdc97c38aaec6ecb (patch) | |
tree | 1fd3489ceb9728d585047c51ec51f9436f580eec /system | |
parent | 629dabb17c5b74c8ce751ebfacecc042926af973 (diff) |
system/binfmt-support: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'system')
-rw-r--r-- | system/binfmt-support/README | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/system/binfmt-support/README b/system/binfmt-support/README index 3ee4608e5e8b8..d85003a7cc9bf 100644 --- a/system/binfmt-support/README +++ b/system/binfmt-support/README @@ -1,23 +1,25 @@ binfmt-support -The binfmt_misc kernel module, contained in versions 2.1.43 and later of the -Linux kernel, allows system administrators to register interpreters for -various binary formats based on a magic number or their file extension, and -cause the appropriate interpreter to be invoked whenever a matching file is -executed. Think of it as a more flexible version of the #! executable -interpreter mechanism. +The binfmt_misc kernel module, contained in versions 2.1.43 and +later of the Linux kernel, allows system administrators to register +interpreters for various binary formats based on a magic number or +their file extension, and cause the appropriate interpreter to be +invoked whenever a matching file is executed. Think of it as a more +flexible version of the #! executable interpreter mechanism. binfmt-support provides an update-binfmts script with which package -maintainers can register interpreters to be used with this module without -having to worry about writing their own init.d scripts, and which sysadmins -can use for a slightly higher-level interface to this module. +maintainers can register interpreters to be used with this module +without having to worry about writing their own init.d scripts, and +which sysadmins can use for a slightly higher-level interface to this +module. You will want to add an fstab entry for binfmt_misc: none /proc/sys/fs/binfmt_misc binfmt_misc defaults 0 0 -You will also want to make sure the binfmt_misc kernel module is loaded at -boot by adding '/sbin/modprobe binfmt_misc' to /etc/rc.d/rc.modules.local. +You will also want to make sure the binfmt_misc kernel module +is loaded at boot by adding '/sbin/modprobe binfmt_misc' to +/etc/rc.d/rc.modules.local. To have binfmt-support start and stop with your host, add to /etc/rc.d/rc.local: |