another little note about backtrack
there is solutions on the internet on how to do this
the only problem is that they are not working/throw errors
so this is the way not to get errors and to get it working
first off we do like all the tutorials say and add the repository to our sources.list
cat >> /etc/apt/sources.list <<eof
deb http://all.repository.backtrack-linux.org revolution main microverse non-free testing
deb http://source.repository.backtrack-linux.org revolution main microverse non-free testing
deb http://64.repository.backtrack-linux.org revolution main microverse non-free testing
eof
after that we need the gpg key
wget -q http://all.repository.backtrack-linux.org/backtrack.gpg -O- | sudo apt-key add -
this is how far the solutions on the net has made it. and its good but in ubuntu 11.10 and above this throws a error
W: Failed to fetch http://64.repository.backtrack-linux.org/dists/revolution/Release Unable to find expected entry 'main/binary-i386/Packages' in Release file (Wrong sources.list entry or malformed file)
so this is how you get rid of it
first you need to backup your apt
apt-get install --reinstall -d apt
after that download
apt_0.7.25.3ubuntu9.13_amd64 thats the version that is on backtrack 5 r3
install it
dpkg -i apt_0.7.25.3ubuntu9.13_amd64.deb
and the last step increase Cache-Limit
echo APT::Cache-Limit "60000000"; >> /etc/apt/apt.conf.d/apt.conf
apt-get update
and its on