web-dev-qa-db-ja.com

metasploitの問題

私は答えをインターネット全体で検索しましたが、まだ答えが見つかりませんでした。次のように入力したmetasploitをアンインストールすることにしました。

$ cd /opt
opt$ ls
google  lol  sublime_text  tor-browser-en  wine-staging metasploit
opt$ cd metasploit
opt/metasploit$ ./uninstall

その後、通常、アンインストールウィザードが表示され、再度インストールしようとしたときにこのエラーが発生します

$ Sudo apt-get install metasploit
Reading package lists... Done
Building dependency tree       
Reading state information... Done
metasploit is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up metasploit (4.5.2-2013031101-1raring0) ...
/var/lib/dpkg/info/metasploit.postinst: line 20: /opt/metasploit/properties.ini: No such file or directory
dpkg: error processing package metasploit (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
metasploit
E: Sub-process /usr/bin/dpkg returned an error code (1)

メタスプロイトを起動しようとしても機能しません

  $ Sudo service metasploit start
 /etc/init.d/metasploit: 15: exec: /opt/metasploit/ctlscript.sh: not found

経験のある人なら誰でもこれを解決できますか?

2

Metasploitをアンインストールする適切な方法は、最初に./ctlscript.sh.stopを実行してMetasploitサービスを停止し、次に./uninstallと入力してMetasploitディレクトリからアンインストールスクリプトを実行することです。

あなたの場合、次の方法で/opt/metasploitを完全に削除できます:

Sudo rm -rf /opt/metasploit
2
Ron