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


-1

VMPlayer VMに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'

sources.listファイルには次のソースがあります。

 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を実行しました。ダウンロードするにはどうすればよいですか?


apt-get install open-vm-toolsを試しましたか?
multithr3at3d

1
infosecの質問ではありません。
ニールスミスライン16年

回答:


0

私は同じ問題に遭遇しました。apt-get install linux-headers *を実行すると、近似一致のリストが表示されます。もちろん「N」とだけ言ってください。4.3はリストにないようです。

代わりにlinux-headers-4.4.0-kali1-amd64を使用してください...


ヘッダーのバージョンはカーネルのバージョンと一致するはずです!
ロミオニノフ

私にとっての秘trickは、「apt-get dist-upgrade」を実行してからシステムを再起動することでした。それが完了すると、メソッドは完全に機能しました。

0

4.3を使用している場合は、最初に4.4にアップグレードしてヘッダーをダウンロードします。sources.listを「gguth」リストで更新して実行します

apt-get update -y && apt-get upgrade -y  && apt-get dist-upgrade -y

これにより、システムが4.4.0 ..に更新され、4.4.0 kaliヘッダーに合わせられます。


0

古いバージョン(4.3.0)のカーネルのlinuxカーネルヘッダーをインストールするのではなく、カーネルリリースバージョン自体をアップグレードします。Kaliローリングリポジトリの最新バージョンでkali /etc/apt/sources.listファイルを更新した後、次の手順を実行します。

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 =) 

がんばろう!

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.