我刚刚安装了systemd,我有一个失败的服务,proc-sys-fs-binfmt_misc.automount
我在这里看到它是systemd的一部分:
https://github.com/systemd/systemd/blob/master/units/proc-sys-fs-binfmt_misc.automount
这个文件重要吗?如何解决激活问题?
低于我的systemctl状态
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
答案 0 :(得分:4)
对于那些想要禁用 proc-sys-fs-binfmt_misc.automount
的用户(如果您所在的,例如,无法使用autofs的容器化环境),请注意systemctl disable
不会工作,但
systemctl mask proc-sys-fs-binfmt_misc.automount
确实
答案 1 :(得分:1)
对于使用systemd的.automount
单位,systemd会尝试打开 / dev / autofs 。如果您的系统上没有autofs文件系统,则所有.automount
个单元文件都无法启动。
因此,首先要确保您的系统具有自动文件系统支持。