qual é o problema com o rarcrack?

0

Eu instalei o Rarcrack, mas qual é o problema com ele? aqui o código do terminal

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# 
    
por rɑːdʒɑ 23.10.2013 / 08:03

1 resposta

0

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

Cuidado, você precisa ter o pacote unrar-free instalado e não o unrar para funcionar. Se for o caso

sudo apt-get remove unrar
sudo apt-get install unrar-free
    
por Philippe Gachoud 26.02.2014 / 22:00