我只是要求减轻任何毫无根据的恐惧。
我正在检查我的/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...
我应该担心吗?
您标记的消息是无害的,只是通知您系统
binfmt_misc
已被激活。该系统提供了一种方法来向内核描述如何识别任意可执行文件格式并告诉它使用什么解释器来运行该文件。
Unix 一直内置此功能,但传统上,它仅识别本机二进制可执行文件和以
#!/path/to/interpreter
. binfmt 杂项系统允许添加额外的幻数和使用任意格式的解释器。例如,这可以让它识别 java 二进制文件并以与运行普通可执行文件相同的方式(语法)运行它们。有关更多信息,请参阅https://en.wikipedia.org/wiki/Binfmt_misc