kali安装linux-header

1.配置kali linux 的apt-get 源

echo
"deb https://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
deb-src https://mirrors.ustc.edu.cn/kali kali-rolling main non-free " 
> /etc/apt/sources.list

  

2.更新apt-get源包路径

apt-get update

  

3.安装linux-header

apt-get -y install linux-headers-$(uname -r)

  

4.如果出现错误,则使用如下方法安装linux-header,查看可用的linux-header版本

apt-cache search linux headers

  

5.更新内核 

apt-get linux-image-4.14.0-kali-amd64

  

6.安装linux-headers

apt-get linux-headers-4.14.0-kali-amd64

  

7.重启,查看内核版本

init 6
uname -r

8.安装chrom

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
dpkg -i google-chrome-stable_current_amd64.deb 

 9.安装vmware tools

kali安装vmtools 
apt-get install open-vm-tools-desktop fuse

  

原文地址:https://www.cnblogs.com/pingzhe/p/8196172.html