Home Linux & Systems Cybersecurity Cloud & DevOps Networks & Infrastructure SIEM & Monitoring DFIR & Threat Intel Development & Other All categories Projects About Tools

Add Kali Linux repositories in Debian squeeze

Leer en espanol
Add Kali Linux repositories in Debian squeeze

Table of contents

Agre ===

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-free

We update the packages

Bash
rokitoh@redorbita:/ #  apt-get update

It 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 ED444FF07D8D0BF6

We add the KEY

Bash
rokitoh@redorbita:/ # gpg –keyserver subkeys.pgp.net –recv-keys ED444FF07D8D0BF6

rokitoh@redorbita:/ # gpg –export –armor ED444FF07D8D0BF6 | apt-key add –
OK

All the best,

:wq!

Comments