linux-headers-4.3.0-kali-amd64が見つかりません

linux-headers-4.3.0-kali-amd64が見つかりません

VMPlayer仮想マシンにVMwareツールをインストールしようとしていますが、インストール中の特定の時点でlinux-headersパスを設定する必要があります。だから私は以下を使ってインストールしようとしました。

apt-get install gcc make linux-headers-$(uname -r)

その後、エラーが発生します。

Couldnt find any package by glob 'linux-headers-4.3.0-kali-amd64'

私のものソース、リスト文書は次のソースから提供されます。

 deb http://http.kali.org/kali kali-rolling main contrib non-free
 deb http://http.kali.org/kali kali main contrib non-free

 deb http://http.kali.org/kali sana main contrib non-free
 deb http://http.kali.org/kali-security kali/updates main contrib non-free
 deb http://http.kali.org/kali-security sana/updates main contrib non-free

apt-get updateヘッダーをインストールする前にこれを行いました。ダウンロードするにはどうすればよいですか?

ベストアンサー1

以前(4.3.0)カーネルのLinuxカーネルヘッダをインストールする代わりに、カーネルディストリビューション自体をアップグレードします。/etc/apt/sources.list最新バージョンのKaliファイルに更新したら、次の手順を実行してください。Kaliローリングストア:

sudo apt-get update # this pulls the latest packages list from the kali sources repo
sudo apt-get -y dist-upgrade # when installing this, you would see the latest kernel 
                        # image in the list of packages to be installed,something
                        # like" linux-image-4.5.0-kali1-amd64"
reboot # MOST IMPORTANT STEP! make sure you reboot the machine via this cmd OR 
                        # shutdown, restart forcefully after completing prev cmds
uname -r # check that the kernel release has updated

おすすめ記事