Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. #!/bin/bash
  2. sleep 2s
  3. echo "Now adding public Keyring from official Kali Linux Distributers"
  4. apt-key adv --keyserver hkp://keys.gnupg.net --recv-keys 7D8D0BF6
  5. echo "Adding Kali Repositories to your sources.list file, please wait"
  6. sleep 3s
  7. echo "deb http://http.kali.org/kali kali-rolling main non-free contrib" >> /etc/apt/sources.list
  8. echo "Now Adding package Sources please wait"
  9. sleep 5s
  10. echo "deb-src http://http.kali.org/kali kali-rolling main non-free contrib" >> /etc/apt/sources.list
  11. sleep 2s
  12. echo "All Done should be able to update and upgrade and use Kali linux tools in other OS"
  13. sleep 1s
  14. echo "Now Updating/Upgrading OS with kali tools, please wait"
  15. sudo apt-get -y update
  16. sleep 5s
  17. sudo apt-get -y upgrade
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement