Lines Matching +full:register +full:- +full:based
2 -----------------------------------------
4 To configure Linux to automatically execute Mono-based .NET binaries
8 This will allow you to execute Mono-based .NET binaries just like any
15 https://www.mono-project.com/download/
19 https://www.mono-project.com/docs/compiling-mono/linux/
36 .. code-block:: sh
39 if [ ! -e /proc/sys/fs/binfmt_misc/register ]; then
44 # or during normal boot up (systemd-based systems).
47 mount -t binfmt_misc none /proc/sys/fs/binfmt_misc
50 # Register support for .NET CLR binaries
51 if [ -e /proc/sys/fs/binfmt_misc/register ]; then
55 echo ':CLR:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register