본문 바로가기

Kali

kali에 vmware 설치. kernel header 못찾을때 해결법

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

출처:http://www.drchaos.com/installing-vmware-tools-on-kali-linux/


Installing VMware Tools on Kali Linux

Posted In Security - By Aamir Lakhani on Thursday, August 14th, 2014 With 3 Comments

If you are using Kali Linux and trying to use it in a VM environment as a guest operating system on VMware you may run into some issues. It is recommended that you install VM Tools for VMware on Kali Linux.

This guide will help you install VM Tools on any installation of Kali Linux (including 64-bit ISOs). It will also allow you to use Kali Linux in VMware ESXi environments.

The first thing you need to do on Kali Linux is prep the system for VM Tools. You do so by issuing the following commands:

 

TIP: I recommend enabling SSH first on Kali Linux, and then doing this over an SSH shell so you can copy and paste the commands. To enable SSH on Kali Linux, follow the guide on Dr. Chaos at http://www.drchaos.com/enable-ssh-on-kali-linux/

Note: all commands are typed as one line in the terminal

echo cups enabled >> /usr/sbin/update-rc.d
echo vmware-tools enabled >> /usr/sbin/update-rc.d
apt-get install gcc make linux-headers-$(uname -r)

Note: This is typed as one line

ln -s /usr/src/linux-headers-$(uname -r)/include/generated/uapi/linux/version.h /usr/src/linux-headers-$(uname -r)/include/linux/

ln

Next, mount the VMware tools ISO by clicking “Install VMware Tools” NOTE: These steps differ depending on if you are using Mac, Windows, or ESXi.

Screen Shot 2014-08-15 at 11.32.24 PM

You may need to download VMWare tools for the operating system

Download VM Tools Mac Fusion

 

This should mount VMWare tools (virtual) CD into Kali. Next go the command line

mkdir /mnt/vmware
mount /dev/cdrom /mnt/vmware/
cp -rf /mnt/vmware/VMwareTools* /tmp/

mounting VMWare tools

Next, you will change to the /tmp directory and run the VM Tools installation script.

cd /tmp/
tar zxpf VMwareTools-*.tar.gz 
cd vmware-tools-distrib/
./vmware-install.pl

untaring and installing vware tools thru script

The last command ” ./vmware-tools-install.pl”  is to run the VM Tools installation script. Follow the onscreen instructions when you run the script and accept the defaults.

Follow the prompts for the VMware Tools installation and you are done. You can accept all the default prompts.

You are complete with the installation of VMWare Tools for Kali Linux. Reboot your system


'Kali' 카테고리의 다른 글

kali 한글 타자 추가  (0) 2015.02.17
kali에 adobe flash player 설치하기  (0) 2015.02.16
kali n150ua 드라이버설치  (0) 2015.01.09
virtual box에 kali깔기  (0) 2015.01.08
kali linux 패키지 업데이트  (0) 2014.08.11