Where are the current kernel build options stored?











up vote
19
down vote

favorite
7












Is there a way to know if the kernel was compiled with a certain option activated (i.e. CONFIG_PROC_EVENTS=y) without having to pull out the kernel sources package and looking in the config file?










share|improve this question




























    up vote
    19
    down vote

    favorite
    7












    Is there a way to know if the kernel was compiled with a certain option activated (i.e. CONFIG_PROC_EVENTS=y) without having to pull out the kernel sources package and looking in the config file?










    share|improve this question


























      up vote
      19
      down vote

      favorite
      7









      up vote
      19
      down vote

      favorite
      7






      7





      Is there a way to know if the kernel was compiled with a certain option activated (i.e. CONFIG_PROC_EVENTS=y) without having to pull out the kernel sources package and looking in the config file?










      share|improve this question















      Is there a way to know if the kernel was compiled with a certain option activated (i.e. CONFIG_PROC_EVENTS=y) without having to pull out the kernel sources package and looking in the config file?







      linux-kernel compiling






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 at 2:42









      Evan Carroll

      4,96094176




      4,96094176










      asked Jul 17 '13 at 3:25









      Alicia

      7221718




      7221718






















          4 Answers
          4






          active

          oldest

          votes

















          up vote
          13
          down vote













          If you look through your /boot directory you'll notice these files:



          $ ls -l /boot/|grep config
          -rw-r--r-- 1 root root 109919 Oct 21 2011 config-2.6.35.14-100.fc14.x86_64
          -rw-r--r-- 1 root root 109919 Oct 27 2011 config-2.6.35.14-103.fc14.x86_64
          -rw-r--r-- 1 root root 109919 Nov 23 2011 config-2.6.35.14-106.fc14.x86_64


          Notice what version of the Kernel you're using:



          $ uname -r
          2.6.35.14-106.fc14.x86_64


          If you grep through the appropriate "config-uname -r" file you can see what options the Kernel was built with:



          $ grep CONFIG_PROC_EVENTS= /boot/config-`uname -r`
          CONFIG_PROC_EVENTS=y


          References




          • How To Check What Kernel Build Options Enabled In The Linux Kernel?






          share|improve this answer

















          • 3




            That's true in Debian based distros, but may not be true in others, i.e. Arch Linux.
            – Alicia
            Jul 17 '13 at 6:56








          • 1




            @ntrrgc - I can't confirm for ArchLinux, but it's that way for RedHat, Debian, & Ubuntu. These 3 distros cover most of the *nix world. If someone has a ArchLinux distro can you please confirm this approach?
            – slm
            Jul 17 '13 at 11:24






          • 2




            I use Arch Linux and I can confirm this does not work in Arch Linux.
            – Alicia
            Jul 17 '13 at 15:31










          • @slm this isn't even true for Ubuntu, at least Kubuntu. I just checked — the only thing I have in /boot/ is grub directory.
            – Hi-Angel
            Nov 24 '15 at 15:52










          • @slm perhaps are these configs a part of some package? Then it would be enough to list files of that package.
            – Hi-Angel
            Nov 24 '15 at 16:02


















          up vote
          11
          down vote













          Kernel options can be found in /proc/config.gz.



          zgrep CONFIG_PROC_EVENTS= /proc/config.gz


          if the kernel was compiled with CONFIG_IKCONFIG_PROC=y.






          share|improve this answer



















          • 6




            This only works if kernel is compiled with CONFIG_IKCONFIG_PROC set.
            – Bruce Ediger
            Jul 17 '13 at 3:46






          • 1




            This did not work for me on any of the distros that I had available: Debian, RedHat based, nor Ubuntu. These are all stock systems so I don't think this approach is that useful unless you built your kernel yourself or your particular distro provides it.
            – slm
            Jul 17 '13 at 11:25








          • 1




            In distro kernels, the IKCONFIG option may be enabled only as a module. Try to modprobe configs and check if /proc/config.gz shows up.
            – XZS
            Sep 5 '13 at 15:21


















          up vote
          0
          down vote













          If your kernel was build with CONFIG_IKCONFIG_PROC, you can find the configuration listed in /proc/config.gz



          zless /proc/config.gz


          Debian and Redhat based kernel packages generally install a config-$version file in /boot,



          less /boot/config-$(uname -r)


          In Debian you can also find the default options in kernel-package's ./kernel/Config/config as well as architecture specific configuration options in ./kernel/Config/.



          mkdir /tmp/k
          cd /tmp/k
          apt-get source kernel-package
          find . -path '*/kernel/Config/*' -type f





          share|improve this answer






























            up vote
            -1
            down vote













            sudo find / -xdev -name .config(-xdev keeps it on one filesystem)



            Generally it will be under /usr/src/some-specific-kernel-header-version/.config



            Just read it as any text, search with grep, or to see how two versions differ diff -y -suppress-common-lines /path/linux2.6-r3/.config /path/linux2.6-r4/.config






            share|improve this answer





















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "106"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














               

              draft saved


              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f83319%2fwhere-are-the-current-kernel-build-options-stored%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              13
              down vote













              If you look through your /boot directory you'll notice these files:



              $ ls -l /boot/|grep config
              -rw-r--r-- 1 root root 109919 Oct 21 2011 config-2.6.35.14-100.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Oct 27 2011 config-2.6.35.14-103.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Nov 23 2011 config-2.6.35.14-106.fc14.x86_64


              Notice what version of the Kernel you're using:



              $ uname -r
              2.6.35.14-106.fc14.x86_64


              If you grep through the appropriate "config-uname -r" file you can see what options the Kernel was built with:



              $ grep CONFIG_PROC_EVENTS= /boot/config-`uname -r`
              CONFIG_PROC_EVENTS=y


              References




              • How To Check What Kernel Build Options Enabled In The Linux Kernel?






              share|improve this answer

















              • 3




                That's true in Debian based distros, but may not be true in others, i.e. Arch Linux.
                – Alicia
                Jul 17 '13 at 6:56








              • 1




                @ntrrgc - I can't confirm for ArchLinux, but it's that way for RedHat, Debian, & Ubuntu. These 3 distros cover most of the *nix world. If someone has a ArchLinux distro can you please confirm this approach?
                – slm
                Jul 17 '13 at 11:24






              • 2




                I use Arch Linux and I can confirm this does not work in Arch Linux.
                – Alicia
                Jul 17 '13 at 15:31










              • @slm this isn't even true for Ubuntu, at least Kubuntu. I just checked — the only thing I have in /boot/ is grub directory.
                – Hi-Angel
                Nov 24 '15 at 15:52










              • @slm perhaps are these configs a part of some package? Then it would be enough to list files of that package.
                – Hi-Angel
                Nov 24 '15 at 16:02















              up vote
              13
              down vote













              If you look through your /boot directory you'll notice these files:



              $ ls -l /boot/|grep config
              -rw-r--r-- 1 root root 109919 Oct 21 2011 config-2.6.35.14-100.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Oct 27 2011 config-2.6.35.14-103.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Nov 23 2011 config-2.6.35.14-106.fc14.x86_64


              Notice what version of the Kernel you're using:



              $ uname -r
              2.6.35.14-106.fc14.x86_64


              If you grep through the appropriate "config-uname -r" file you can see what options the Kernel was built with:



              $ grep CONFIG_PROC_EVENTS= /boot/config-`uname -r`
              CONFIG_PROC_EVENTS=y


              References




              • How To Check What Kernel Build Options Enabled In The Linux Kernel?






              share|improve this answer

















              • 3




                That's true in Debian based distros, but may not be true in others, i.e. Arch Linux.
                – Alicia
                Jul 17 '13 at 6:56








              • 1




                @ntrrgc - I can't confirm for ArchLinux, but it's that way for RedHat, Debian, & Ubuntu. These 3 distros cover most of the *nix world. If someone has a ArchLinux distro can you please confirm this approach?
                – slm
                Jul 17 '13 at 11:24






              • 2




                I use Arch Linux and I can confirm this does not work in Arch Linux.
                – Alicia
                Jul 17 '13 at 15:31










              • @slm this isn't even true for Ubuntu, at least Kubuntu. I just checked — the only thing I have in /boot/ is grub directory.
                – Hi-Angel
                Nov 24 '15 at 15:52










              • @slm perhaps are these configs a part of some package? Then it would be enough to list files of that package.
                – Hi-Angel
                Nov 24 '15 at 16:02













              up vote
              13
              down vote










              up vote
              13
              down vote









              If you look through your /boot directory you'll notice these files:



              $ ls -l /boot/|grep config
              -rw-r--r-- 1 root root 109919 Oct 21 2011 config-2.6.35.14-100.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Oct 27 2011 config-2.6.35.14-103.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Nov 23 2011 config-2.6.35.14-106.fc14.x86_64


              Notice what version of the Kernel you're using:



              $ uname -r
              2.6.35.14-106.fc14.x86_64


              If you grep through the appropriate "config-uname -r" file you can see what options the Kernel was built with:



              $ grep CONFIG_PROC_EVENTS= /boot/config-`uname -r`
              CONFIG_PROC_EVENTS=y


              References




              • How To Check What Kernel Build Options Enabled In The Linux Kernel?






              share|improve this answer












              If you look through your /boot directory you'll notice these files:



              $ ls -l /boot/|grep config
              -rw-r--r-- 1 root root 109919 Oct 21 2011 config-2.6.35.14-100.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Oct 27 2011 config-2.6.35.14-103.fc14.x86_64
              -rw-r--r-- 1 root root 109919 Nov 23 2011 config-2.6.35.14-106.fc14.x86_64


              Notice what version of the Kernel you're using:



              $ uname -r
              2.6.35.14-106.fc14.x86_64


              If you grep through the appropriate "config-uname -r" file you can see what options the Kernel was built with:



              $ grep CONFIG_PROC_EVENTS= /boot/config-`uname -r`
              CONFIG_PROC_EVENTS=y


              References




              • How To Check What Kernel Build Options Enabled In The Linux Kernel?







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jul 17 '13 at 4:47









              slm

              244k66505670




              244k66505670








              • 3




                That's true in Debian based distros, but may not be true in others, i.e. Arch Linux.
                – Alicia
                Jul 17 '13 at 6:56








              • 1




                @ntrrgc - I can't confirm for ArchLinux, but it's that way for RedHat, Debian, & Ubuntu. These 3 distros cover most of the *nix world. If someone has a ArchLinux distro can you please confirm this approach?
                – slm
                Jul 17 '13 at 11:24






              • 2




                I use Arch Linux and I can confirm this does not work in Arch Linux.
                – Alicia
                Jul 17 '13 at 15:31










              • @slm this isn't even true for Ubuntu, at least Kubuntu. I just checked — the only thing I have in /boot/ is grub directory.
                – Hi-Angel
                Nov 24 '15 at 15:52










              • @slm perhaps are these configs a part of some package? Then it would be enough to list files of that package.
                – Hi-Angel
                Nov 24 '15 at 16:02














              • 3




                That's true in Debian based distros, but may not be true in others, i.e. Arch Linux.
                – Alicia
                Jul 17 '13 at 6:56








              • 1




                @ntrrgc - I can't confirm for ArchLinux, but it's that way for RedHat, Debian, & Ubuntu. These 3 distros cover most of the *nix world. If someone has a ArchLinux distro can you please confirm this approach?
                – slm
                Jul 17 '13 at 11:24






              • 2




                I use Arch Linux and I can confirm this does not work in Arch Linux.
                – Alicia
                Jul 17 '13 at 15:31










              • @slm this isn't even true for Ubuntu, at least Kubuntu. I just checked — the only thing I have in /boot/ is grub directory.
                – Hi-Angel
                Nov 24 '15 at 15:52










              • @slm perhaps are these configs a part of some package? Then it would be enough to list files of that package.
                – Hi-Angel
                Nov 24 '15 at 16:02








              3




              3




              That's true in Debian based distros, but may not be true in others, i.e. Arch Linux.
              – Alicia
              Jul 17 '13 at 6:56






              That's true in Debian based distros, but may not be true in others, i.e. Arch Linux.
              – Alicia
              Jul 17 '13 at 6:56






              1




              1




              @ntrrgc - I can't confirm for ArchLinux, but it's that way for RedHat, Debian, & Ubuntu. These 3 distros cover most of the *nix world. If someone has a ArchLinux distro can you please confirm this approach?
              – slm
              Jul 17 '13 at 11:24




              @ntrrgc - I can't confirm for ArchLinux, but it's that way for RedHat, Debian, & Ubuntu. These 3 distros cover most of the *nix world. If someone has a ArchLinux distro can you please confirm this approach?
              – slm
              Jul 17 '13 at 11:24




              2




              2




              I use Arch Linux and I can confirm this does not work in Arch Linux.
              – Alicia
              Jul 17 '13 at 15:31




              I use Arch Linux and I can confirm this does not work in Arch Linux.
              – Alicia
              Jul 17 '13 at 15:31












              @slm this isn't even true for Ubuntu, at least Kubuntu. I just checked — the only thing I have in /boot/ is grub directory.
              – Hi-Angel
              Nov 24 '15 at 15:52




              @slm this isn't even true for Ubuntu, at least Kubuntu. I just checked — the only thing I have in /boot/ is grub directory.
              – Hi-Angel
              Nov 24 '15 at 15:52












              @slm perhaps are these configs a part of some package? Then it would be enough to list files of that package.
              – Hi-Angel
              Nov 24 '15 at 16:02




              @slm perhaps are these configs a part of some package? Then it would be enough to list files of that package.
              – Hi-Angel
              Nov 24 '15 at 16:02












              up vote
              11
              down vote













              Kernel options can be found in /proc/config.gz.



              zgrep CONFIG_PROC_EVENTS= /proc/config.gz


              if the kernel was compiled with CONFIG_IKCONFIG_PROC=y.






              share|improve this answer



















              • 6




                This only works if kernel is compiled with CONFIG_IKCONFIG_PROC set.
                – Bruce Ediger
                Jul 17 '13 at 3:46






              • 1




                This did not work for me on any of the distros that I had available: Debian, RedHat based, nor Ubuntu. These are all stock systems so I don't think this approach is that useful unless you built your kernel yourself or your particular distro provides it.
                – slm
                Jul 17 '13 at 11:25








              • 1




                In distro kernels, the IKCONFIG option may be enabled only as a module. Try to modprobe configs and check if /proc/config.gz shows up.
                – XZS
                Sep 5 '13 at 15:21















              up vote
              11
              down vote













              Kernel options can be found in /proc/config.gz.



              zgrep CONFIG_PROC_EVENTS= /proc/config.gz


              if the kernel was compiled with CONFIG_IKCONFIG_PROC=y.






              share|improve this answer



















              • 6




                This only works if kernel is compiled with CONFIG_IKCONFIG_PROC set.
                – Bruce Ediger
                Jul 17 '13 at 3:46






              • 1




                This did not work for me on any of the distros that I had available: Debian, RedHat based, nor Ubuntu. These are all stock systems so I don't think this approach is that useful unless you built your kernel yourself or your particular distro provides it.
                – slm
                Jul 17 '13 at 11:25








              • 1




                In distro kernels, the IKCONFIG option may be enabled only as a module. Try to modprobe configs and check if /proc/config.gz shows up.
                – XZS
                Sep 5 '13 at 15:21













              up vote
              11
              down vote










              up vote
              11
              down vote









              Kernel options can be found in /proc/config.gz.



              zgrep CONFIG_PROC_EVENTS= /proc/config.gz


              if the kernel was compiled with CONFIG_IKCONFIG_PROC=y.






              share|improve this answer














              Kernel options can be found in /proc/config.gz.



              zgrep CONFIG_PROC_EVENTS= /proc/config.gz


              if the kernel was compiled with CONFIG_IKCONFIG_PROC=y.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Apr 16 at 10:40









              Ciro Santilli 新疆改造中心 六四事件 法轮功

              4,70824038




              4,70824038










              answered Jul 17 '13 at 3:25









              Alicia

              7221718




              7221718








              • 6




                This only works if kernel is compiled with CONFIG_IKCONFIG_PROC set.
                – Bruce Ediger
                Jul 17 '13 at 3:46






              • 1




                This did not work for me on any of the distros that I had available: Debian, RedHat based, nor Ubuntu. These are all stock systems so I don't think this approach is that useful unless you built your kernel yourself or your particular distro provides it.
                – slm
                Jul 17 '13 at 11:25








              • 1




                In distro kernels, the IKCONFIG option may be enabled only as a module. Try to modprobe configs and check if /proc/config.gz shows up.
                – XZS
                Sep 5 '13 at 15:21














              • 6




                This only works if kernel is compiled with CONFIG_IKCONFIG_PROC set.
                – Bruce Ediger
                Jul 17 '13 at 3:46






              • 1




                This did not work for me on any of the distros that I had available: Debian, RedHat based, nor Ubuntu. These are all stock systems so I don't think this approach is that useful unless you built your kernel yourself or your particular distro provides it.
                – slm
                Jul 17 '13 at 11:25








              • 1




                In distro kernels, the IKCONFIG option may be enabled only as a module. Try to modprobe configs and check if /proc/config.gz shows up.
                – XZS
                Sep 5 '13 at 15:21








              6




              6




              This only works if kernel is compiled with CONFIG_IKCONFIG_PROC set.
              – Bruce Ediger
              Jul 17 '13 at 3:46




              This only works if kernel is compiled with CONFIG_IKCONFIG_PROC set.
              – Bruce Ediger
              Jul 17 '13 at 3:46




              1




              1




              This did not work for me on any of the distros that I had available: Debian, RedHat based, nor Ubuntu. These are all stock systems so I don't think this approach is that useful unless you built your kernel yourself or your particular distro provides it.
              – slm
              Jul 17 '13 at 11:25






              This did not work for me on any of the distros that I had available: Debian, RedHat based, nor Ubuntu. These are all stock systems so I don't think this approach is that useful unless you built your kernel yourself or your particular distro provides it.
              – slm
              Jul 17 '13 at 11:25






              1




              1




              In distro kernels, the IKCONFIG option may be enabled only as a module. Try to modprobe configs and check if /proc/config.gz shows up.
              – XZS
              Sep 5 '13 at 15:21




              In distro kernels, the IKCONFIG option may be enabled only as a module. Try to modprobe configs and check if /proc/config.gz shows up.
              – XZS
              Sep 5 '13 at 15:21










              up vote
              0
              down vote













              If your kernel was build with CONFIG_IKCONFIG_PROC, you can find the configuration listed in /proc/config.gz



              zless /proc/config.gz


              Debian and Redhat based kernel packages generally install a config-$version file in /boot,



              less /boot/config-$(uname -r)


              In Debian you can also find the default options in kernel-package's ./kernel/Config/config as well as architecture specific configuration options in ./kernel/Config/.



              mkdir /tmp/k
              cd /tmp/k
              apt-get source kernel-package
              find . -path '*/kernel/Config/*' -type f





              share|improve this answer



























                up vote
                0
                down vote













                If your kernel was build with CONFIG_IKCONFIG_PROC, you can find the configuration listed in /proc/config.gz



                zless /proc/config.gz


                Debian and Redhat based kernel packages generally install a config-$version file in /boot,



                less /boot/config-$(uname -r)


                In Debian you can also find the default options in kernel-package's ./kernel/Config/config as well as architecture specific configuration options in ./kernel/Config/.



                mkdir /tmp/k
                cd /tmp/k
                apt-get source kernel-package
                find . -path '*/kernel/Config/*' -type f





                share|improve this answer

























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  If your kernel was build with CONFIG_IKCONFIG_PROC, you can find the configuration listed in /proc/config.gz



                  zless /proc/config.gz


                  Debian and Redhat based kernel packages generally install a config-$version file in /boot,



                  less /boot/config-$(uname -r)


                  In Debian you can also find the default options in kernel-package's ./kernel/Config/config as well as architecture specific configuration options in ./kernel/Config/.



                  mkdir /tmp/k
                  cd /tmp/k
                  apt-get source kernel-package
                  find . -path '*/kernel/Config/*' -type f





                  share|improve this answer














                  If your kernel was build with CONFIG_IKCONFIG_PROC, you can find the configuration listed in /proc/config.gz



                  zless /proc/config.gz


                  Debian and Redhat based kernel packages generally install a config-$version file in /boot,



                  less /boot/config-$(uname -r)


                  In Debian you can also find the default options in kernel-package's ./kernel/Config/config as well as architecture specific configuration options in ./kernel/Config/.



                  mkdir /tmp/k
                  cd /tmp/k
                  apt-get source kernel-package
                  find . -path '*/kernel/Config/*' -type f






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 21 at 2:41

























                  answered Nov 21 at 2:30









                  Evan Carroll

                  4,96094176




                  4,96094176






















                      up vote
                      -1
                      down vote













                      sudo find / -xdev -name .config(-xdev keeps it on one filesystem)



                      Generally it will be under /usr/src/some-specific-kernel-header-version/.config



                      Just read it as any text, search with grep, or to see how two versions differ diff -y -suppress-common-lines /path/linux2.6-r3/.config /path/linux2.6-r4/.config






                      share|improve this answer

























                        up vote
                        -1
                        down vote













                        sudo find / -xdev -name .config(-xdev keeps it on one filesystem)



                        Generally it will be under /usr/src/some-specific-kernel-header-version/.config



                        Just read it as any text, search with grep, or to see how two versions differ diff -y -suppress-common-lines /path/linux2.6-r3/.config /path/linux2.6-r4/.config






                        share|improve this answer























                          up vote
                          -1
                          down vote










                          up vote
                          -1
                          down vote









                          sudo find / -xdev -name .config(-xdev keeps it on one filesystem)



                          Generally it will be under /usr/src/some-specific-kernel-header-version/.config



                          Just read it as any text, search with grep, or to see how two versions differ diff -y -suppress-common-lines /path/linux2.6-r3/.config /path/linux2.6-r4/.config






                          share|improve this answer












                          sudo find / -xdev -name .config(-xdev keeps it on one filesystem)



                          Generally it will be under /usr/src/some-specific-kernel-header-version/.config



                          Just read it as any text, search with grep, or to see how two versions differ diff -y -suppress-common-lines /path/linux2.6-r3/.config /path/linux2.6-r4/.config







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jun 19 at 13:29









                          Max Power

                          1523




                          1523






























                               

                              draft saved


                              draft discarded



















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f83319%2fwhere-are-the-current-kernel-build-options-stored%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Morgemoulin

                              Scott Moir

                              Souastre