Malware

在 Linux Ubuntu 上安裝 LMD 時找不到 maldet 命令

  • January 1, 2021

我正在嘗試在 Ubuntu 上安裝 LMD linux 惡意軟體檢測版本 1.6.4。說明安裝成功;我什至可以通過終端打開 conf.maldet 以獲取配置選項,當我嘗試執行 LMD 時,它顯示“找不到 maldet 命令”。我在以前版本的安裝指南/教程中註意到它將在 usr/local/ 中自動解壓縮,我的說法相同,但是當我轉到我的 usr/local/ 時,我沒有看到預期的 maldet。我的 maldetect-1.6.4 安裝在主目錄中,它只包含一個“文件”目錄,其中保存了所有其他目錄。

(base) mn@mn-MS-7C02:~$ -maldet --scan-all 
-maldet: command not found
(base) mn@mn-MS-7C02:~$ /home/mn/maldetect-1.6.4/files/maldet -u or maldet -d
Linux Malware Detect v1.6.4
           (C) 2002-2019, R-fx Networks <proj@rfxn.com>
           (C) 2019, Ryan MacDonald <ryan@rfxn.com>
This program may be freely redistributed under the terms of the GNU GPL v2

maldet(13231): {glob} $intcnf not found, aborting.

非常感謝任何建議或幫助。

命令應以超級使用者權限執行,或scan_user_access啟用conf.maldet

sudo maldet --scan-all

或者:

sudo sed -i 's/scan_user_access="0"/scan_user_access="1"/' /usr/local/maldetect/conf.maldet
maldet --scan-all

在您的情況下,要修改配置文件:

sudo sed -i 's/scan_user_access="0"/scan_user_access="1"/' /home/mn/maldetect-1.6.4/files/conf.maldet

要執行命令:

/home/mn/maldetect-1.6.4/files/maldet

您可以創建一個別名,將以下行放在您的~/.bashrc

alias maldet='/home/mn/maldetect-1.6.4/files/maldet'

然後執行:

exec bash
maldet

引用自:https://unix.stackexchange.com/questions/626480