Linux

rm /dev/wmi/dell-smbios 安全嗎?

  • November 17, 2020

我正在通過 RHEL 7.7 機器上的 STIG 程序並遇到了這個發現: https ://www.stigviewer.com/stig/red_hat_enterprise_linux_7/2018-11-28/finding/V-72039

[root@localhost scripts]# find /dev -context *:device_t:* \( -type c -o -type b \) -printf "%p %Z\n"
/dev/wmi/dell-smbios system_u:object_r:device_t:s0
[root@localhost scripts]# find /dev -context *:unlabeled_t:* \( -type c -o -type b \) -printf "%p %Z\n"
[root@localhost scripts]# rpm -qf /dev/wmi/dell-smbios
file /dev/wmi/dell-smbios is not owned by any package
[root@localhost scripts]# ls -al /dev/wmi/dell-smbios
cr--r--r--. 1 root root 10, 57 May 19 11:29 /dev/wmi/dell-smbios

我正在考慮刪除設備文件,但只是不知道足夠安全。

繼續刪除它。它是一個開發文件系統,而不是一個真正的文件。Linux 要麼允許您刪除它,要麼不允許刪除它,無論如何它會在下次重新啟動後重新出現。

引用自:https://serverfault.com/questions/1017982