- Linux kernel in nutshell
- Saved searches
- Use saved searches to filter your results more quickly
- License
- brianredbeard/lkn
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- Linux kernel in nutshell
Linux kernel in nutshell
This is the web site for the book, Linux Kernel in a Nutshell, by Greg Kroah-Hartman, published by O’Reilly.
Written by a leading developer and maintainer of the Linux kernel, Linux Kernel in a Nutshell is a comprehensive overview of kernel configuration and building, a critical task for Linux users and administrators.
No distribution can provide a Linux kernel that meets all users’ needs. Computers big and small have special requirements that require reconfiguring and rebuilding the kernel. Whether you are trying to get sound, wireless support, and power management working on a laptop or incorporating enterprise features such as logical volume management on a large server, you can benefit from the insights in this book.
Linux Kernel in a Nutshell covers the entire range of kernel tasks, starting with downloading the source and making sure that the kernel is in sync with the versions of the tools you need. In addition to configuration and installation steps, the book offers reference material and discussions of related topics such as control of kernel options at runtime.
A key benefit of the book is a chapter on determining exactly what drivers are needed for your hardware. Also included are recipes that list what you need to do to accomplish a wide range of popular tasks.
If you want to know how to build, configure, and install a custom Linux kernel on your machine, buy this book. It is written by someone who spends every day building, configuring, and installing custom kernels as part of the development process of this fun, collaborative project called Linux.
I’m especially proud of the chapter on how to figure out how to configure a custom kernel based on the hardware running on your machine. This is an essential task for anyone wanting to wring out the best possible speed and control of your hardware.
This book is intended to cover everything that is needed to know in order to properly build, customize, and install the Linux kernel. No programming experience is needed to understand and use this book.
Some familiarity with how to use Linux, and some basic command-line usage is expected of the reader.
This book is not intended to go into the programming aspects of the Linux kernel; there are many other good books listed in the Bibliography that already cover this topic.
I want this book to help bring more people into the Linux kernel development fold. The act of building a customized kernel for your machine is one of the basic tasks needed to become a Linux kernel developer. The more people that try this out, and realize that there is not any real magic behind the whole Linux kernel process, the more people will be willing to jump in and help out in making the kernel the best that it can be.
This book is available under the terms of the Creative Commons Attribution-ShareAlike 2.5 license. That means that you are free to download and redistribute it. The development of the book was made possible, however, by those who purchase a copy from O’Reilly or elsewhere.
The book is current as of the 2.6.18 kernel release, newer kernel versions will cause some of the configuration items to move around and new configuration options will be added. However the main concepts in the book still remain for any kernel version released.
The book is available for download in either PDF or DocBook format for the entire book, or by the individual chapter. The entire history of the development of the book (you too can see why the first versions of the book were 1000 pages long) can be downloaded in a git repository.
Linux Kernel in a Nutshell chapter files:
Title page Copyright and credits Preface DocBook Part I: Building the Kernel DocBook Chapter 1: Introduction DocBook Chapter 2: Requirements for Building and Using the Kernel DocBook Chapter 3: Retrieving the Kernel Source DocBook Chapter 4: Configuring and Building DocBook Chapter 5: Installing and Booting from a Kernel DocBook Chapter 6: Upgrading a Kernel DocBook Part II: Major Customizations DocBook Chapter 7: Customizing a Kernel DocBook Chapter 8: Kernel Configuration Recipes DocBook Part III: Kernel Reference DocBook Chapter 9: Kernel Boot Command-Line Parameter Reference DocBook Chapter 10: Kernel Build Command-Line Reference DocBook Chapter 11: Kernel Configuration Option Reference DocBook Part IV: Additional Information DocBook Appendix A: Helpful Utilities DocBook Appendix B: Bibliography DocBook Index
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Linux Kernel in a Nutshell
License
brianredbeard/lkn
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Linux Kernel in a Nutshell
Linux Kernel in a Nutshell is a 2006 book by Greg Kroah-Hartman. It is released under the Creative Commons Attribution-ShareAlike 2.5 License.
This is a mirror and not the authoritative location (http://www.kroah.com/lkn/)
The book is written in Docbook XML format as per standard O’Reilly guidelines. More information on their toolchain can be found in the dblite directory. O’Reilly books use a modified version of Docbook XML and their corredponding DTD files are in the dblite path.
One of the primary reasons for this mirror was creating a version of the book in EPUB and Mobi format. These files are located under the «releases» directory. The source for the epub changes are in the epub branch.
To generate the required files for the epub:
$ xsltproc /usr/share/sgml/docbook/xsl-stylesheets-1.78.1/epub/docbook.xsl ../book.xml $ cp -r ../images OEBPS/ $ echo "application/epub+zip" > mimetype $ zip -0Xqr lkn.epub mimetype META-INF OEBPS/
This will create two new directories META-INF and OEBPS. These contain the content for the book. Unfortunately since the O’Reilly Docbook is non standard it doesn’t know how to handle the images, but copying the directory into OEBPS fixes this. Finally, the zip command generates the actual epub file lkn.epub .
Linux kernel in nutshell
This is the web site for the book, Linux Kernel in a Nutshell, by Greg Kroah-Hartman, published by O’Reilly.
Written by a leading developer and maintainer of the Linux kernel, Linux Kernel in a Nutshell is a comprehensive overview of kernel configuration and building, a critical task for Linux users and administrators.
No distribution can provide a Linux kernel that meets all users’ needs. Computers big and small have special requirements that require reconfiguring and rebuilding the kernel. Whether you are trying to get sound, wireless support, and power management working on a laptop or incorporating enterprise features such as logical volume management on a large server, you can benefit from the insights in this book.
Linux Kernel in a Nutshell covers the entire range of kernel tasks, starting with downloading the source and making sure that the kernel is in sync with the versions of the tools you need. In addition to configuration and installation steps, the book offers reference material and discussions of related topics such as control of kernel options at runtime.
A key benefit of the book is a chapter on determining exactly what drivers are needed for your hardware. Also included are recipes that list what you need to do to accomplish a wide range of popular tasks.
If you want to know how to build, configure, and install a custom Linux kernel on your machine, buy this book. It is written by someone who spends every day building, configuring, and installing custom kernels as part of the development process of this fun, collaborative project called Linux.
I’m especially proud of the chapter on how to figure out how to configure a custom kernel based on the hardware running on your machine. This is an essential task for anyone wanting to wring out the best possible speed and control of your hardware.
This book is intended to cover everything that is needed to know in order to properly build, customize, and install the Linux kernel. No programming experience is needed to understand and use this book.
Some familiarity with how to use Linux, and some basic command-line usage is expected of the reader.
This book is not intended to go into the programming aspects of the Linux kernel; there are many other good books listed in the Bibliography that already cover this topic.
I want this book to help bring more people into the Linux kernel development fold. The act of building a customized kernel for your machine is one of the basic tasks needed to become a Linux kernel developer. The more people that try this out, and realize that there is not any real magic behind the whole Linux kernel process, the more people will be willing to jump in and help out in making the kernel the best that it can be.
This book is available under the terms of the Creative Commons Attribution-ShareAlike 2.5 license. That means that you are free to download and redistribute it. The development of the book was made possible, however, by those who purchase a copy from O’Reilly or elsewhere.
The book is current as of the 2.6.18 kernel release, newer kernel versions will cause some of the configuration items to move around and new configuration options will be added. However the main concepts in the book still remain for any kernel version released.
The book is available for download in either PDF or DocBook format for the entire book, or by the individual chapter. The entire history of the development of the book (you too can see why the first versions of the book were 1000 pages long) can be downloaded in a git repository.
Linux Kernel in a Nutshell chapter files:
Title page Copyright and credits Preface DocBook Part I: Building the Kernel DocBook Chapter 1: Introduction DocBook Chapter 2: Requirements for Building and Using the Kernel DocBook Chapter 3: Retrieving the Kernel Source DocBook Chapter 4: Configuring and Building DocBook Chapter 5: Installing and Booting from a Kernel DocBook Chapter 6: Upgrading a Kernel DocBook Part II: Major Customizations DocBook Chapter 7: Customizing a Kernel DocBook Chapter 8: Kernel Configuration Recipes DocBook Part III: Kernel Reference DocBook Chapter 9: Kernel Boot Command-Line Parameter Reference DocBook Chapter 10: Kernel Build Command-Line Reference DocBook Chapter 11: Kernel Configuration Option Reference DocBook Part IV: Additional Information DocBook Appendix A: Helpful Utilities DocBook Appendix B: Bibliography DocBook Index