Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Kali Linux Cookbook

You're reading from  Kali Linux Cookbook

Product type Book
Published in Oct 2013
Publisher Packt
ISBN-13 9781783289592
Pages 260 pages
Edition 1st Edition
Languages
Toc

Table of Contents (16) Chapters close

Kali Linux Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
1. Up and Running with Kali Linux 2. Customizing Kali Linux 3. Advanced Testing Lab 4. Information Gathering 5. Vulnerability Assessment 6. Exploiting Vulnerabilities 7. Escalating Privileges 8. Password Attacks 9. Wireless Attacks Index

Preparing kernel headers


There will occasionally be times where we'll face the need to compile code which requires kernel headers. Kernel headers are the source code of the Linux kernel. In this first recipe, we'll explain the steps required to prepare kernel headers for later use.

Getting ready

An Internet connection is required to complete this recipe.

How to do it...

Let's begin the process of preparing kernel headers:

  1. We begin first by updating our distribution by executing the following command:

    apt-get update
    
  2. Next, we must use apt-get again to prepare the kernel headers. Execute the following command:

    apt-get install linux-headers - `uname –r`
    
  3. Copy the following directory and its entire contents:

    cd /usr/src/linux
    cp -rf include/generated/* include/linux/
    
  4. We're now ready to compile code that requires kernel headers.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}