henrydenhengst

Kali Linux Post Install

Aug 18th, 2015
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.72 KB | None | 0 0
  1. #!/bin/bash
  2. # Update, Upgrade, Dist-Upgrade
  3. apt-get clean && apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y
  4. # Enable sound on Boot
  5. apt-get install alsa-utils -y
  6. # Install File Roller – Archive Manager
  7. apt-get install unrar unace rar unrar p7zip zip unzip p7zip-full p7zip-rar file-roller -y
  8. # Install Tor
  9. apt-get install tor -y
  10. service tor start
  11. proxychains iceweasel
  12. # Install Filezilla FTP Client
  13. apt-get install filezilla filezilla-common -y
  14. # Install HTOP and NetHogs
  15. apt-get install htop nethogs -y
  16. # Install Recordmydesktop and Reminna Remote Desktop Client
  17. apt-get install gtk-recordmydesktop recordmydesktop remmina -y
  18. # Add a Non-root User
  19. useradd -m henry -G sudo -s /bin/bash
  20. passwd henry
Advertisement
Add Comment
Please, Sign In to add comment