1.VMware Workstation
2.kali-linux-2.0-amd64.isohtml
手動安裝linux
Debian 7.x 64
位,全程使用默認設置。cd/dvd
硬件導入ISO文件,開始安裝系統,選擇圖形安裝。grub
選擇提供的第二項,其他一概選擇默認選項便可。或者直接下載官方VM鏡像bash
1.修改APT更新源網絡
vi /etc/apt/sources.list
打開後能夠看到kali官方的更新源,若是你安裝的時候沒選擇網絡鏡像,此時會發現全部更新源都被註釋了,此時把更新源deb http:\\***
前的#
刪除便可,若是以爲官方源鏈接速度太慢或者沒法鏈接能夠添加中國的源(官方不推薦使用官方其餘的源
)。
添加源再文件最後添加:ssh
#中科大kali源 deb http://mirrors.ustc.edu.cn/kali sana main non-free contrib deb http://mirrors.ustc.edu.cn/kali-security/ sana/updates main contrib non-free deb-src http://mirrors.ustc.edu.cn/kali-security/ sana/updates main contrib non-free #阿里雲kali源 deb http://mirrors.aliyun.com/kali sana main non-free contrib deb http://mirrors.aliyun.com/kali-security/ sana/updates main contrib non-free deb-src http://mirrors.aliyun.com/kali-security/ sana/updates main contrib non-free
2.更新系統工具
apt-get update apt-get dist-upgrade apt-get clean
在看會漫畫,等待安裝完成。阿里雲
3.安裝VMware Tools
code
因爲缺乏編譯內核的頭文件,直接安裝VMware Tools
爲提示手動打開頭文件文職,因此要安裝頭文件,最好先更新一次系統。htm
apt-get install linux-headers-$( uname -r )
接着按照正常步驟安裝便可。get
若是是最新的滾動版,建議直接下載官方的Kali的vm鏡像,或者使用open-vm-tool
apt-get update apt-get install open-vm-tools-desktop fuse reboot
4.配置SSH
Kali
沿用Debian
的設置,默認關閉SSH
服務,因此沒法用PUTTY
等工具遠程打開。修改配置文件
vi /etc/ssh/sshd_config
去掉#PasswordAuthentication yes
前的註釋
修改PermitRootLogin without-password
爲PermitRootLogin yes
,:wq
保存退出。
打開SSH服務
service ssh start
檢查服務狀態
service ssh status
設置SSH
爲開機自啓動
vi /etc/rc.local
在exit 0
前添加/etc/init.d/ssh start
,保存便可。
或者
update-rc.d ssh enable
如今就可用Putty
或者XShell
進行登陸。
5.添加標準用戶
useradd -m yourname -G sudo -s /bin/bash passwd yourname
如今你就能夠開始Kali2.0
的征程了.