How To Install kali-tools-forensics on Kali Linux
Introduction
In this tutorial we learn how to install kali-tools-forensics on Kali Linux.
What is kali-tools-forensics
kali-tools-forensics is:
This is Kali Linux, the most advanced penetration testing and security auditing distribution.
This metapackage depends on all the forensic tools that Kali Linux provides.
There are three methods to install kali-tools-forensics on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install kali-tools-forensics Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install kali-tools-forensics using apt-get by running the following command:
sudo apt-get -y install kali-tools-forensicsInstall kali-tools-forensics Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install kali-tools-forensics using apt by running the following command:
sudo apt -y install kali-tools-forensicsInstall kali-tools-forensics Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install kali-tools-forensics using aptitude by running the following command:
sudo aptitude -y install kali-tools-forensicsHow To Uninstall kali-tools-forensics on Kali Linux
To uninstall only the kali-tools-forensics package we can use the following command:
sudo apt-get remove kali-tools-forensicsUninstall kali-tools-forensics And Its Dependencies
To uninstall kali-tools-forensics and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove kali-tools-forensicsRemove kali-tools-forensics Configurations and Data
To remove kali-tools-forensics configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge kali-tools-forensicsRemove kali-tools-forensics configuration, data, and all of its dependencies
We can use the following command to remove kali-tools-forensics configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge kali-tools-forensicsDependencies
kali-tools-forensics have the following dependencies:
- afflib-tools
- apktool
- autopsy
- binwalk
- bulk-extractor
- bytecode-viewer
- cabextract
- chkrootkit
- creddump7
- dc3dd
- dcfldd
- ddrescue
- dumpzilla
- edb-debugger
- ewf-tools
- exifprobe
- exiv2
- ext3grep
- ext4magic
- extundelete
- fcrackzip
- firmware-mod-kit
- foremost
- forensic-artifacts
- forensics-colorize
- galleta
- gdb
- gpart
- gparted
- grokevt
- guymager
- hashdeep
- inetsim
- jadx
- javasnoop
- libhivex-bin
- lime-forensics
- lvm2
- lynis
- mac-robber
- magicrescue
- md5deep
- mdbtools
- memdump
- metacam
- missidentify
- myrescue
- nasm
- nasty
- ollydbg
- p7zip-full
- parted
- pasco
- pdfid
- pdf-parser
- pev
- plaso
- polenum
- pst-utils
- python3-capstone
- python3-dfdatetime
- python3-dfvfs
- python3-dfwinreg
- python3-distorm3
- radare2
- radare2-cutter
- recoverdm
- recoverjpeg
- reglookup
- regripper
- rephrase
- rifiuti
- rifiuti2
- rkhunter
- rsakeyfind
- safecopy
- samdump2
- scalpel
- scrounge-ntfs
- sleuthkit
- smali
- sqlitebrowser
- ssdeep
- tcpdump
- tcpflow
- tcpick
- tcpreplay
- truecrack
- undbx
- unhide
- unrar
- upx-ucl
- vinetto
- wce
- winregfs
- wireshark
- xmount
- xplico
- yara
References
Summary
In this tutorial we learn how to install kali-tools-forensics package on Kali Linux using different package management tools: apt, apt-get and aptitude.