Install Kali Linux full system on Termux

Preparations before installing Kali Linux:

1. Install the F-Droid open source software store
official website
2. Use the F-Droid store to install Termux
APK
Note: Of course, you can also install Termux in the play store, but pkg update and installation errors may occur. The wrong solution is to delete the game and science package.

installation steps

1. Update and upgrade the Termux software package

pkg update
pkg upgrade

2. To install Git,
we need to borrow the open source installation version of a flower on the earth to automatically install the minimum version of kali minimum, so it is necessary to install the Git tool. Without further ado, go down:

pkg install git

3. Install python3 and python2
In order to run the installation script and the normal operation of the kali toolkit in the future, it is necessary to install python3 and python2.

pkg install python
pkg install python2

4. Install the minimized version of kali minimum

git clone https://gitee.com/zhang-955/clone.git
cd clone 
cd AutoInstallKali
chmod +x kalinethunter finaltouchup.sh # 赋予脚本运行权限
./kalinethunter

The next step is to wait for the script to pull the minium version from the official website and install it, which may take a long time until the installation is complete.
5. The installation is complete and start to enter kali

startkali

6. Update the kali software library and download the complete upgrade tool.
The default password required by the sudo command is kali.

sudo apt update
sudo apt full-upgrade -y

7. After the system update is complete, we need to install the metadata package metapackage

sudo apt install -y kali-linux-default

Or run kali-tweaks to adjust the kali metabase group:

kali-tweaks

Use the tab node to adjust and select related groups, select and apply. The relevant groups are as follows:

## System system group

  • kali-linux-core: Base Kali Linux System – core items that are always included system basic components
  • kali-linux-headless: Default install that doesn't require GUI If GUI is not required, headless is installed by default
  • kali-linux-default: “Default” desktop (amd64/i386) images include these tools default desktop
  • kali-linux-arm: All tools suitable for ARM devices All tools suitable for ARM devices
  • kali-linux-nethunter: Tools used as part of Kali NetHunter NetHunter 工作集

## Desktop environments/Window managers Desktop environment/window management

  • kali-desktop-core: Any key tools required for a GUI image GUI Core Components
  • kali-desktop-e17: Enlightenment (WM)
  • kali-desktop-gnome: GNOME (DE)
  • kali-desktop-i3: i3 (WM)
  • kali-desktop-kde: WHERE (DE)
  • kali-desktop-lxde: LXDE (WM)
  • kali-desktop-mate: MATTE (DE)
  • kali-desktop-xfce: Xfce (WM)

## Tools tools

  • kali-tools-gpu: Tools which benefit from having access to GPU hardware Access GPU hardware resource tools
  • kali-tools-hardware: Hardware hacking tools Hardware hacking tools
  • kali-tools-crypto-stego: Tools based around Cryptography & Steganography encryption tools
  • kali-tools-fuzzing: For fuzzing protocols fuzzing protocol tools
  • kali-tools-802-11: 802.11 (Commonly known as “Wi-Fi”) wireless protocol tool
  • kali-tools-bluetooth: For targeting Bluetooth devices Bluetooth devices
  • kali-tools-rfid: Radio-Frequency IDentification tools Wireless Radio Frequency
  • kali-tools-sdr: Software-Defined Radio tools
  • kali-tools-voip: Voice over IP tools Voice over IP tools
  • kali-tools-windows-resources: Any resources which can be executed on a Windows hosts Windows resources
  • kali-linux-labs: Environments for learning and practicing on laboratory environment testing

[## Menu] Menu (https://www.kali.org/docs/general-use/metapackages/#menu)

  • kali-tools-information-gathering: Used for Open Source Intelligence (OSINT) & information gathering
  • kali-tools-vulnerability: Vulnerability assessments tools vulnerability scanning
  • kali-tools-web: Designed doing web applications attacks web attacks
  • kali-tools-database: Based around any database attacks
  • kali-tools-passwords: Helpful for password cracking attacks – Online & offline Online/Offline Password Attacks
  • kali-tools-wireless: All tools based around Wireless protocols – 802.11, Bluetooth, RFID & SDR wireless protocol attacks
  • kali-tools-reverse-engineering: For reverse engineering binaries reverse engineering
  • kali-tools-exploitation: Commonly used for doing exploitation Vulnerability discovery
  • kali-tools-social-engineering: Aimed for doing social engineering techniques
  • kali-tools-sniffing-spoofing: Any tools meant for sniffing & spoofing
  • kali-tools-post-exploitation: Techniques for post exploitation stage vulnerability tools
  • kali-tools-forensics: Forensic tools – Live & Offline Forensic Tools
  • kali-tools-reporting: Reporting tools Reporting tools

## Others

  • kali-linux-large: Our previous default tools for amd64/i386 images amd64/i386 default toolset
  • kali-linux-everything: Every metapackage and tool listed here
  • kali-desktop-live: Used during a live session when booted from the image live启动盘

Guess you like

Origin blog.csdn.net/weixin_37885187/article/details/129139104