Compile Linux Kernel

  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Compile Linux Kernel as PDF for free.

More details

  • Words: 90
  • Pages: 1
Download the kernel from http://www.kernel.org Install the development tools and libraries: # yum ­y groupinstall "Development Tools" "Development Libraries" Install qt and qt­devel for xconfig: # yum ­y install qt qt­devel Copy the kernel to you kernel source directory: # tar ­xzvpf ~/Desktop/linux*.tar.gz ­C /usr/src/kernels/ # cd /usr/src/kernels # rm linux # ln ­s linux­2* linux # cd /usr/src/kernels/linux # make mrproper # cp /boot/config­`uname ­r` ./.config # make oldconfig # make xconfig # vi Makefile # change extraversion if needed # make all # make modules_install # make install

Related Documents