boot.log.1 问题是这是否值得关注

boot.log.1 问题是这是否值得关注

我只是想消除任何毫无根据的恐惧。

我正在检查我的/var/log/boot.log.1档案。

这是其中的一部分。

    ------------ Sat Jul 01 13:31:29 AEST 2023 ------------
[  OK  ] Finished Uncomplicated firewall.
[  OK  ] Finished Clean up any mess left by 0dns-up.
[  OK  ] Started Show Plymouth Boot Screen.
[  OK  ] Started Forward Password R…s to Plymouth Directory Watch.
[  OK  ] Reached target Local Encrypted Volumes.
         Mounting Arbitrary Executable File Formats File System...
[  OK  ] Started Nameserver information manager.
[  OK  ] Reached target Preparation for Network.
[  OK  ] Finished Create Volatile Files and Directories.
         Mounting RPC Pipe File System...
         Starting Load Kernel Module chromeos_pstore...
         Starting Load Kernel Module efi_pstore...
         Starting Load Kernel Module pstore_blk...
         Starting Load Kernel Module pstore_zone...
         Starting Load Kernel Module ramoops...
         Starting RPC bind portmap service...
         Starting Network Name Resolution...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Started RPC bind portmap service.

特别是这两行。

Reached target Local Encrypted Volumes.
         Mounting Arbitrary Executable File Formats File System...

我应该担心吗?

答案1

您标记的消息是无害的,仅仅通知您系统binfmt_misc已被激活。

该系统提供了一种方法向内核描述如何识别任意可执行文件格式并告诉它使用什么解释器来运行该文件。

Unix 一直内置此功能,但传统上,它仅识别以 开头的本机二进制可执行文件和文本脚本文件#!/path/to/interpreter。 binfmt misc 系统允许添加使用任意格式的其他魔法数字和解释器。例如,这可以让它识别 Java 二进制文件并以与运行普通可执行文件相同的方式(语法上)运行它们。

有关详细信息,请参阅For more information, seehttps://en.wikipedia.org/wiki/Binfmt_misc

相关内容