我刚刚安装了systemd,我有一个失败的服务,proc-sys-fs-binfmt_misc.automount。
我在这里看到它是系统d的一部分:
这个文件重要吗?如何解决激活问题?
低于我的系统状态
Last login: Mon Apr 13 23:13:19 2015 from nor75-18-82-241-236-193.fbx.proxad.net
svassaux@vps127101:~$ systemctl status
proc-sys-fs-binfmt_misc.automount -> '/org/freedesktop/systemd1/unit/proc_2dsys_ 2dfs_2dbinfmt_5fmisc_2eautomount'
proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File Syste m Automount Point
Loaded: loaded (/lib/systemd/system/proc-sys-fs-binfmt_misc.automount; static )
Active: failed (Result: resources)
Where: /proc/sys/fs/binfmt_misc
Docs: https://www.kernel.org/doc/Documentation/binfmt_misc.txt
http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems发布于 2017-06-17 10:31:00
对于那些想禁用proc-sys-fs-binfmt_misc.automount的人(比方说,如果您在一个无法使用autofs的容器化环境中),请注意,systemctl disable不能工作,但是
systemctl mask proc-sys-fs-binfmt_misc.automount确实如此。
发布于 2015-04-17 05:48:58
对于使用systemd的.automount单元,systemd尝试打开/dev/autofs。如果您的系统上无法使用autofs文件系统,则所有.automount单元文件都无法启动。因此,首先要确保您的系统有自动文件系统支持。
https://stackoverflow.com/questions/29615705
复制相似问题