Kali Linux Network PXE Install

Download Kali PXE Netboot Images

Now, we need to create a directory to hold the Kali Netboot image and download the image we wish to serve from the Kali repos.

mkdir -p /tftpboot
cd /tftpboot
# for 64 bit systems:
wget http://repo.kali.org/kali/dists/kali-rolling/main/installer-amd64/current/images/netboot/netboot.tar.gz
# for 32 bit systems:
wget http://repo.kali.org/kali/dists/kali-rolling/main/installer-i386/current/images/netboot/netboot.tar.gz
tar zxpf netboot.tar.gz
rm netboot.tar.gz

 

Ручное конфигурирование интерфейса

    auto eth0
    iface eth0 inet static
        address 192.168.0.7
        netmask 255.255.255.0
        gateway 192.168.0.254


Starting SSH on boot Kali 2.x

#systemctl enable ssh.service

 

 

How do I find and install the missing firmware?


$ apt-cache search d101m_ucode.bin
firmware-linux-nonfree – Binary firmware for various drivers in the Linux kernel

# apt-get install ….
 

 

Поделиться:

383 просмотров