How do i compile linux kernel 4.19 on centos [on hold]











up vote
-1
down vote

favorite












I am trying to compile the linux kernel into a binary (Trying to make a linux distro) on centos. I need a step by step walk through on how to do this.










share|improve this question















put on hold as off-topic by Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl Dec 6 at 6:45


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl

If this question can be reworded to fit the rules in the help center, please edit the question.

















    up vote
    -1
    down vote

    favorite












    I am trying to compile the linux kernel into a binary (Trying to make a linux distro) on centos. I need a step by step walk through on how to do this.










    share|improve this question















    put on hold as off-topic by Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl Dec 6 at 6:45


    This question appears to be off-topic. The users who voted to close gave this specific reason:


    • "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl

    If this question can be reworded to fit the rules in the help center, please edit the question.















      up vote
      -1
      down vote

      favorite









      up vote
      -1
      down vote

      favorite











      I am trying to compile the linux kernel into a binary (Trying to make a linux distro) on centos. I need a step by step walk through on how to do this.










      share|improve this question















      I am trying to compile the linux kernel into a binary (Trying to make a linux distro) on centos. I need a step by step walk through on how to do this.







      linux centos linux-kernel






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 6 at 1:17









      Rui F Ribeiro

      38.4k1479128




      38.4k1479128










      asked Dec 6 at 0:44









      lebro111

      315




      315




      put on hold as off-topic by Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl Dec 6 at 6:45


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl

      If this question can be reworded to fit the rules in the help center, please edit the question.




      put on hold as off-topic by Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl Dec 6 at 6:45


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "Requests for learning materials (tutorials, how-tos etc.) are off topic. The only exception is questions about where to find official documentation (e.g. POSIX specifications). See the Help Center and our Community Meta for more information." – Stephen Harris, Rui F Ribeiro, Jeff Schaller, G-Man, RalfFriedl

      If this question can be reworded to fit the rules in the help center, please edit the question.






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          There are a lot of resources online for compiling the Linux Kernel.



          For example, check out the kernel documentation on Linux From Scratch.



          Linux From Scratch is also a great resource if you plan on making your own distro.






          share|improve this answer





















          • I may look into that. Thank You
            – lebro111
            2 days ago


















          up vote
          0
          down vote













          git clone --depth 1 --branch linux-4.19.y https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
          cd linux
          cp /boot/config-$(uname -r) .config
          #use a config editing tool to automatically make it compatible with the version, and change any settings you want.
          make





          share|improve this answer























          • I am trying now.. hope it work!! oh yes and thank you.
            – lebro111
            2 days ago










          • it did not work.
            – lebro111
            2 days ago


















          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          There are a lot of resources online for compiling the Linux Kernel.



          For example, check out the kernel documentation on Linux From Scratch.



          Linux From Scratch is also a great resource if you plan on making your own distro.






          share|improve this answer





















          • I may look into that. Thank You
            – lebro111
            2 days ago















          up vote
          0
          down vote













          There are a lot of resources online for compiling the Linux Kernel.



          For example, check out the kernel documentation on Linux From Scratch.



          Linux From Scratch is also a great resource if you plan on making your own distro.






          share|improve this answer





















          • I may look into that. Thank You
            – lebro111
            2 days ago













          up vote
          0
          down vote










          up vote
          0
          down vote









          There are a lot of resources online for compiling the Linux Kernel.



          For example, check out the kernel documentation on Linux From Scratch.



          Linux From Scratch is also a great resource if you plan on making your own distro.






          share|improve this answer












          There are a lot of resources online for compiling the Linux Kernel.



          For example, check out the kernel documentation on Linux From Scratch.



          Linux From Scratch is also a great resource if you plan on making your own distro.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Dec 6 at 2:29









          Peschke

          2,400924




          2,400924












          • I may look into that. Thank You
            – lebro111
            2 days ago


















          • I may look into that. Thank You
            – lebro111
            2 days ago
















          I may look into that. Thank You
          – lebro111
          2 days ago




          I may look into that. Thank You
          – lebro111
          2 days ago












          up vote
          0
          down vote













          git clone --depth 1 --branch linux-4.19.y https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
          cd linux
          cp /boot/config-$(uname -r) .config
          #use a config editing tool to automatically make it compatible with the version, and change any settings you want.
          make





          share|improve this answer























          • I am trying now.. hope it work!! oh yes and thank you.
            – lebro111
            2 days ago










          • it did not work.
            – lebro111
            2 days ago















          up vote
          0
          down vote













          git clone --depth 1 --branch linux-4.19.y https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
          cd linux
          cp /boot/config-$(uname -r) .config
          #use a config editing tool to automatically make it compatible with the version, and change any settings you want.
          make





          share|improve this answer























          • I am trying now.. hope it work!! oh yes and thank you.
            – lebro111
            2 days ago










          • it did not work.
            – lebro111
            2 days ago













          up vote
          0
          down vote










          up vote
          0
          down vote









          git clone --depth 1 --branch linux-4.19.y https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
          cd linux
          cp /boot/config-$(uname -r) .config
          #use a config editing tool to automatically make it compatible with the version, and change any settings you want.
          make





          share|improve this answer














          git clone --depth 1 --branch linux-4.19.y https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
          cd linux
          cp /boot/config-$(uname -r) .config
          #use a config editing tool to automatically make it compatible with the version, and change any settings you want.
          make






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Dec 6 at 3:13

























          answered Dec 6 at 2:03









          user1133275

          2,740415




          2,740415












          • I am trying now.. hope it work!! oh yes and thank you.
            – lebro111
            2 days ago










          • it did not work.
            – lebro111
            2 days ago


















          • I am trying now.. hope it work!! oh yes and thank you.
            – lebro111
            2 days ago










          • it did not work.
            – lebro111
            2 days ago
















          I am trying now.. hope it work!! oh yes and thank you.
          – lebro111
          2 days ago




          I am trying now.. hope it work!! oh yes and thank you.
          – lebro111
          2 days ago












          it did not work.
          – lebro111
          2 days ago




          it did not work.
          – lebro111
          2 days ago



          Popular posts from this blog

          サソリ

          広島県道265号伴広島線

          Accessing regular linux commands in Huawei's Dopra Linux