As we already know, the creators of BackTrack Linux have reprogrammed a new version based on Debian. Well, let's take advantage of it to add the repositories to our Debian squeeze distribution
We add the repositories in the source
Bash
vi /etc/apt/source.list
#Kali Linux
deb http://http.kali.org/kali kali main contrib non-free
deb-src http://http.kali.org/kali kali main contrib non-freeWe update the packages
Bash
rokitoh@redorbita:/ # apt-get updateIt will not release the following error because it needs the KEY
text
W: Error de GPG: http://http.kali.org kali Release: Las firmas siguientes no se pudieron verificar porque su llave pública no está disponible: NO_PUBKEY ED444FF07D8D0BF6We add the KEY
Bash
rokitoh@redorbita:/ # gpg –keyserver subkeys.pgp.net –recv-keys ED444FF07D8D0BF6
rokitoh@redorbita:/ # gpg –export –armor ED444FF07D8D0BF6 | apt-key add –
OKAll the best,
:wq!
Comments