rarcrack 存在什么问题?

rarcrack 存在什么问题?

我已经安装了 Rarcrack,但我不明白它的问题是什么。这是终端的代码

root@ubuntu:~/sec# sudo apt-get install rarcrack
Reading package lists... Done
Building dependency tree       
Reading state information... Done
rarcrack:i386 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@ubuntu:~/sec# rarcrack english.zip
-bash: /usr/bin/rarcrack: No such file or directory
root@ubuntu:~/sec# which rarcrack
/usr/bin/rarcrack
root@ubuntu:~/sec# rarcrack english.zip
-bash: /usr/bin/rarcrack: No such file or directory
root@ubuntu:~/sec# 

答案1

apt-get install libxml2-dev build-essential
wget http://surfnet.dl.sourceforge.net/sourceforge/rarcrack/rarcrack-0.2.tar.bz2    tar -xjf rarcrack-0.2.tar.bz2
cd rarcrack-0.2
make
sudo make install
rarcrack something.rar --type rar

请注意,您必须安装 unrar-free 包,而不是 unrar 包才能工作。如果是这种情况

sudo apt-get remove unrar
sudo apt-get install unrar-free

相关内容