Advertisement
TVT618

How to install Kali Linux Metapackages

Apr 9th, 2018
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.56 KB | None | 0 0
  1. [Guide]
  2. How to install Kali Linux Metapackages
  3.  
  4. Metapackages give you the flexibility to install specific subsets of tools based on your particular needs. For instance, if you are going to conduct a wireless security assessment, you can quickly create a custom Kali ISO and include the kali-linux-wireless metapackage to only install the tools you need.
  5.  
  6. Until recently, Kali Linux had a handful of these meta packages but Kali Linux have since expanded the metapackage list to include far more options:
  7. * kali-linux
  8. * kali-linux-all
  9. * kali-linux-forensic
  10. * kali-linux-full
  11. * kali-linux-gpu
  12. * kali-linux-pwtools
  13. * kali-linux-rfid
  14. * kali-linux-sdr
  15. * kali-linux-top10
  16. * kali-linux-voip
  17. * kali-linux-web
  18. * kali-linux-wireless
  19.  
  20. These metapackages allow for easy installation of certain tools in a specific field, or alternatively, for the installation of a full Kali suite. All of the Kali metapackages follow a particular naming convention, starting with “kali-linux” so if you want to see which metapackages are available, you can search for them as follows:
  21. Example: apt-get update && apt-cache search kali-linux
  22.  
  23. kali-linux: The Base Kali Linux System
  24. * The kali-linux metapackage is a completely bare-bones installation of Kali Linux and includes various network services such as Apache and SSH, the Kali kernel, and a number of version control applications like git, svn, etc. All of the other metapackages listed below also contain kali-linux.
  25. * Installation Size: 1.5 GB
  26. * How to install: sudo apt update && sudo apt install kali-linux
  27.  
  28. kali-linux-full: The Default Kali Linux Install
  29. * When you download a Kali Linux ISO, you are essentially downloading an installation that has the kali-linux-full metapackage installed. This package includes all of the tools you are familiar with in Kali.
  30. * Installation Size: 9.0 GB
  31. * How to install: sudo apt update && sudo apt install kali-linux-full
  32.  
  33. kali-linux-all: All Available Packages in Kali Linux
  34. * In order to keep our ISO sizes reasonable, we are unable to include every single tool that we package for Kali and there are a number of tools that are not able to be used depending on hardware, such as various GPU tools. If you want to install every available Kali Linux package, you can install the kali-linux-all metapackage.
  35. * Installation Size: 15 GB
  36. * How to install: sudo apt update && sudo apt install kali-linux-all
  37.  
  38. kali-linux-top10: Top 10 Kali Linux Tools
  39. * In Kali Linux, we have a sub-menu called “Top 10 Security Tools”. The kali-linux-top10 metapackage will install all of these tools for you in one fell swoop.
  40. * Installation Size: 3.5 GB
  41. * How to install: sudo apt update && sudo apt install kali-linux-top10
  42.  
  43. kali-linux-forensic: Kali Linux Forensic Tools
  44. * If you are doing forensics work, you don’t want your analysis system to contain a bunch of unnecessary tools. To the rescue comes the kali-linux-forensic metapackage, which only contains the forensics tools in Kali.
  45. * Installation Size: 3.1 GB
  46. * How to install: sudo apt update && sudo apt install kali-linux-foresic
  47.  
  48. kali-linux-gpu: Kali Linux GPU-Powered Tools
  49. * GPU utilities are very powerful but need special hardware in order to function correctly. For this reason, they are not included in the default Kali Linux installation but you can install them all at once with kali-linux-gpu and get cracking.
  50. * Installation Size: 4.8 GB
  51. * How to install: sudo apt update && sudo apt install kali-linux-gpu
  52.  
  53. kali-linux-pwtools: Kali Linux Password Cracking Tools
  54. * The kali-linux-pwtools metapackage contains over 40 different password cracking utilities as well as the GPU tools contained in kali-linux-gpu.
  55. * Installation Size: 6.0 GB
  56. * How to install: sudo apt update && sudo apt install kali-linux-pwtools
  57.  
  58. kali-linux-rfid: Kali Linux RFID Tools
  59. * For our users who are doing RFID research and exploitation, we have the kali-linux-rfid metapackage containing all of the RFID tools available in Kali Linux.
  60. * Installation Size: 1.5 GB
  61. * How to install: sudo apt update && sudo apt install kali-linux-rfid
  62.  
  63. kali-linux-sdr: Software Defined Radio (SDR) Tools in Kali
  64. * The kali-linux-sdr metapackage contains a large selection of tools for your Software Defined Radio hacking needs.
  65. * Installation Size: 2.4 GB
  66. * How to install: sudo apt update && sudo apt install kali-linux-sdr
  67.  
  68. kali-linux-voip: Kali Linux VoIP Tools
  69. * Many people have told us they use Kali Linux to conduct VoIP testing and research so they will be happy to know we now have a dedicated kali-linux-voip metapackage with 20+ tools.
  70. * Installation Size: 1.8 GB
  71. * How to install: sudo apt update && sudo apt install kali-linux-voip
  72.  
  73. kali-linux-web: Kali Linux WebApp Assessment Tools
  74. * Web application assessments are very common in the field of penetration testing and for this reason, Kali includes the kali-linux-web metapackage containing dozens of tools related to web application hacking.
  75. * Installation Size: 4.9 GB
  76. * How to install: sudo apt update && sudo apt install kali-linux-voip
  77.  
  78. kali-linux-wireless: Wireless Tools in Kali
  79. * Like web applications, many penetration testing assessments are targeted towards wireless networks. The kali-linux-wireless metapackage contains all the tools you’ll need in one easy to install package.
  80. * Installation Size: 6.6 GB
  81. * How to install: sudo apt update && sudo apt install kali-linux-wireless
  82.  
  83. To see the list of tools included in a metapackage, you can use simple apt commands. For example, to list all the tools included in the kali-linux-web metapackage, we could:
  84. sudo apt-cache show kali-linux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement