How To Install fai-quickstart on Kali Linux
Introduction
In this tutorial we learn how to install fai-quickstart on Kali Linux.
What is fai-quickstart
fai-quickstart is:
FAI is a non-interactive system to install, customize and manage Linux systems and software configurations on computers as well as virtual machines and chroot environments, from small networks to large infrastructures and clusters. This package setups an install server with some basic examples. It should be removed when creating your own config space.
This package is a dependency package, which will install some packages needed for FAI.
There are three methods to install fai-quickstart 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 fai-quickstart Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install fai-quickstart using apt-get by running the following command:
sudo apt-get -y install fai-quickstartInstall fai-quickstart Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install fai-quickstart using apt by running the following command:
sudo apt -y install fai-quickstartInstall fai-quickstart 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 fai-quickstart using aptitude by running the following command:
sudo aptitude -y install fai-quickstartHow To Uninstall fai-quickstart on Kali Linux
To uninstall only the fai-quickstart package we can use the following command:
sudo apt-get remove fai-quickstartUninstall fai-quickstart And Its Dependencies
To uninstall fai-quickstart and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove fai-quickstartRemove fai-quickstart Configurations and Data
To remove fai-quickstart configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge fai-quickstartRemove fai-quickstart configuration, data, and all of its dependencies
We can use the following command to remove fai-quickstart configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fai-quickstartDependencies
fai-quickstart have the following dependencies:
- fai-server
- fai-doc
- isc-dhcp-server
- nfs-kernel-server
- tftpd-hpa
- reprepro
- xorriso
- squashfs-tools
- binutils
- openbsd-inetd
References
Summary
In this tutorial we learn how to install fai-quickstart package on Kali Linux using different package management tools: apt, apt-get and aptitude.