Is sysctl.conf last match?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite
1












Where can I find the official documentation that sysctl.conf is last match based?



So, there are two entries in the /etc/sysctl.conf file:



sysctl vm.swappiness=10
sysctl vm.swappiness=11


Which will win? The last one? What happens if there are files in the /etc/sysctl.d directory?










share|improve this question



























    up vote
    2
    down vote

    favorite
    1












    Where can I find the official documentation that sysctl.conf is last match based?



    So, there are two entries in the /etc/sysctl.conf file:



    sysctl vm.swappiness=10
    sysctl vm.swappiness=11


    Which will win? The last one? What happens if there are files in the /etc/sysctl.d directory?










    share|improve this question

























      up vote
      2
      down vote

      favorite
      1









      up vote
      2
      down vote

      favorite
      1






      1





      Where can I find the official documentation that sysctl.conf is last match based?



      So, there are two entries in the /etc/sysctl.conf file:



      sysctl vm.swappiness=10
      sysctl vm.swappiness=11


      Which will win? The last one? What happens if there are files in the /etc/sysctl.d directory?










      share|improve this question















      Where can I find the official documentation that sysctl.conf is last match based?



      So, there are two entries in the /etc/sysctl.conf file:



      sysctl vm.swappiness=10
      sysctl vm.swappiness=11


      Which will win? The last one? What happens if there are files in the /etc/sysctl.d directory?







      sysctl






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 18 mins ago









      Stephen Kitt

      152k23338406




      152k23338406










      asked 5 hours ago









      KollarA

      294




      294




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          4
          down vote













          I don’t think there is any such official documentation. sysctl entries are handled by procps and systemd; but neither projects’ documentation address how entries are processed within the same configuration file.



          The short version is that the last entry in sysctl.conf wins, even when other files are present (in /etc/sysctl.d or elsewhere), regardless of which system is used to load the settings.



          procps



          To understand how procps processes entries, we need to look at the source code for sysctl. This shows that later entries are processed without knowledge of earlier entries, so the last one wins (look at the Preload function). When multiple configuration files are given on the command line, these are processed in order, as described in the man page:




          Using this option
          will mean arguments to sysctl are files, which are read in the
          order they are specified.




          Things get a little more complex with the --system option, but at least that’s documented:




          Load settings from all system configuration files. Files are
          read from directories in the following list in given order
          from top to bottom. Once a file of a given filename is
          loaded, any file of the same name in subsequent directories is
          ignored.



          • /run/sysctl.d/*.conf

          • /etc/sysctl.d/*.conf

          • /usr/local/lib/sysctl.d/*.conf

          • /usr/lib/sysctl.d/*.conf

          • /lib/sysctl.d/*.conf

          • /etc/sysctl.conf



          The documentation isn’t quite complete. As mentioned above, entries within a given file are applied in order, and overwrite any value given to the same setting previously. In addition, looking at the PreloadSystem function show that files are processed in name order, and that /etc/sysctl.conf is processed unconditionnally (i.e. an identically-named file in an earlier directory doesn’t override it).



          systemd



          systemd has its own sysctl handler, which is documented in the sysctl.d manpage; that has a section on precedence:




          Configuration files are read from directories in /etc/, /run/, and /usr/lib/, in order of precedence. Each configuration file in these configuration directories shall be named in the style of filename.conf. Files in /etc/ override files with the same name in /run/ and /usr/lib/. Files in /run/ override files with the same name in /usr/lib/.



          […] All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. It is recommended to prefix all filenames with a two-digit number and a dash, to simplify the ordering of the files.




          Again, later entries within a single configuration file override earlier entries.






          share|improve this answer





























            up vote
            2
            down vote













            Doing this assertion in a more practical way:



            First things first: Values will not be applied if you prefix the sysctl word on your sysctl.conf entries("manpages are lol" as you said but you didn't seem to have seriously read them). And, it's an easy task to test this: Put the following content at the end of your /etc/sysctl.conf



            vm.swappiness = 60
            vm.swappiness = 61


            I'm using swappines here cause i know that it's a low impact sysctl to mess arround with little difference values depending on your system load (and the default value is 60 on most distros). Apply only this file by typing sysctl -p /etc/sysctl.conf(manpage). Double-check the value with sysctl -a



            root@host:~# sysctl -a | grep "vm.swappiness"
            vm.swappiness = 61


            Voilá.



            Now that you know files are read on a top-down approach, it's just a matter of reading sysctl.d manpage to figure out what is the precedence on spread sysctl files across you system. As it's already explained by @Stephen Kitt answer, i'll not repeat this info here.



            Also, this sysctl.d directories precedence will depend if the distro you are using is systemd-based or not...






            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: false,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              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%2f477940%2fis-sysctl-conf-last-match%23new-answer', 'question_page');

              );

              Post as a guest






























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              4
              down vote













              I don’t think there is any such official documentation. sysctl entries are handled by procps and systemd; but neither projects’ documentation address how entries are processed within the same configuration file.



              The short version is that the last entry in sysctl.conf wins, even when other files are present (in /etc/sysctl.d or elsewhere), regardless of which system is used to load the settings.



              procps



              To understand how procps processes entries, we need to look at the source code for sysctl. This shows that later entries are processed without knowledge of earlier entries, so the last one wins (look at the Preload function). When multiple configuration files are given on the command line, these are processed in order, as described in the man page:




              Using this option
              will mean arguments to sysctl are files, which are read in the
              order they are specified.




              Things get a little more complex with the --system option, but at least that’s documented:




              Load settings from all system configuration files. Files are
              read from directories in the following list in given order
              from top to bottom. Once a file of a given filename is
              loaded, any file of the same name in subsequent directories is
              ignored.



              • /run/sysctl.d/*.conf

              • /etc/sysctl.d/*.conf

              • /usr/local/lib/sysctl.d/*.conf

              • /usr/lib/sysctl.d/*.conf

              • /lib/sysctl.d/*.conf

              • /etc/sysctl.conf



              The documentation isn’t quite complete. As mentioned above, entries within a given file are applied in order, and overwrite any value given to the same setting previously. In addition, looking at the PreloadSystem function show that files are processed in name order, and that /etc/sysctl.conf is processed unconditionnally (i.e. an identically-named file in an earlier directory doesn’t override it).



              systemd



              systemd has its own sysctl handler, which is documented in the sysctl.d manpage; that has a section on precedence:




              Configuration files are read from directories in /etc/, /run/, and /usr/lib/, in order of precedence. Each configuration file in these configuration directories shall be named in the style of filename.conf. Files in /etc/ override files with the same name in /run/ and /usr/lib/. Files in /run/ override files with the same name in /usr/lib/.



              […] All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. It is recommended to prefix all filenames with a two-digit number and a dash, to simplify the ordering of the files.




              Again, later entries within a single configuration file override earlier entries.






              share|improve this answer


























                up vote
                4
                down vote













                I don’t think there is any such official documentation. sysctl entries are handled by procps and systemd; but neither projects’ documentation address how entries are processed within the same configuration file.



                The short version is that the last entry in sysctl.conf wins, even when other files are present (in /etc/sysctl.d or elsewhere), regardless of which system is used to load the settings.



                procps



                To understand how procps processes entries, we need to look at the source code for sysctl. This shows that later entries are processed without knowledge of earlier entries, so the last one wins (look at the Preload function). When multiple configuration files are given on the command line, these are processed in order, as described in the man page:




                Using this option
                will mean arguments to sysctl are files, which are read in the
                order they are specified.




                Things get a little more complex with the --system option, but at least that’s documented:




                Load settings from all system configuration files. Files are
                read from directories in the following list in given order
                from top to bottom. Once a file of a given filename is
                loaded, any file of the same name in subsequent directories is
                ignored.



                • /run/sysctl.d/*.conf

                • /etc/sysctl.d/*.conf

                • /usr/local/lib/sysctl.d/*.conf

                • /usr/lib/sysctl.d/*.conf

                • /lib/sysctl.d/*.conf

                • /etc/sysctl.conf



                The documentation isn’t quite complete. As mentioned above, entries within a given file are applied in order, and overwrite any value given to the same setting previously. In addition, looking at the PreloadSystem function show that files are processed in name order, and that /etc/sysctl.conf is processed unconditionnally (i.e. an identically-named file in an earlier directory doesn’t override it).



                systemd



                systemd has its own sysctl handler, which is documented in the sysctl.d manpage; that has a section on precedence:




                Configuration files are read from directories in /etc/, /run/, and /usr/lib/, in order of precedence. Each configuration file in these configuration directories shall be named in the style of filename.conf. Files in /etc/ override files with the same name in /run/ and /usr/lib/. Files in /run/ override files with the same name in /usr/lib/.



                […] All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. It is recommended to prefix all filenames with a two-digit number and a dash, to simplify the ordering of the files.




                Again, later entries within a single configuration file override earlier entries.






                share|improve this answer
























                  up vote
                  4
                  down vote










                  up vote
                  4
                  down vote









                  I don’t think there is any such official documentation. sysctl entries are handled by procps and systemd; but neither projects’ documentation address how entries are processed within the same configuration file.



                  The short version is that the last entry in sysctl.conf wins, even when other files are present (in /etc/sysctl.d or elsewhere), regardless of which system is used to load the settings.



                  procps



                  To understand how procps processes entries, we need to look at the source code for sysctl. This shows that later entries are processed without knowledge of earlier entries, so the last one wins (look at the Preload function). When multiple configuration files are given on the command line, these are processed in order, as described in the man page:




                  Using this option
                  will mean arguments to sysctl are files, which are read in the
                  order they are specified.




                  Things get a little more complex with the --system option, but at least that’s documented:




                  Load settings from all system configuration files. Files are
                  read from directories in the following list in given order
                  from top to bottom. Once a file of a given filename is
                  loaded, any file of the same name in subsequent directories is
                  ignored.



                  • /run/sysctl.d/*.conf

                  • /etc/sysctl.d/*.conf

                  • /usr/local/lib/sysctl.d/*.conf

                  • /usr/lib/sysctl.d/*.conf

                  • /lib/sysctl.d/*.conf

                  • /etc/sysctl.conf



                  The documentation isn’t quite complete. As mentioned above, entries within a given file are applied in order, and overwrite any value given to the same setting previously. In addition, looking at the PreloadSystem function show that files are processed in name order, and that /etc/sysctl.conf is processed unconditionnally (i.e. an identically-named file in an earlier directory doesn’t override it).



                  systemd



                  systemd has its own sysctl handler, which is documented in the sysctl.d manpage; that has a section on precedence:




                  Configuration files are read from directories in /etc/, /run/, and /usr/lib/, in order of precedence. Each configuration file in these configuration directories shall be named in the style of filename.conf. Files in /etc/ override files with the same name in /run/ and /usr/lib/. Files in /run/ override files with the same name in /usr/lib/.



                  […] All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. It is recommended to prefix all filenames with a two-digit number and a dash, to simplify the ordering of the files.




                  Again, later entries within a single configuration file override earlier entries.






                  share|improve this answer














                  I don’t think there is any such official documentation. sysctl entries are handled by procps and systemd; but neither projects’ documentation address how entries are processed within the same configuration file.



                  The short version is that the last entry in sysctl.conf wins, even when other files are present (in /etc/sysctl.d or elsewhere), regardless of which system is used to load the settings.



                  procps



                  To understand how procps processes entries, we need to look at the source code for sysctl. This shows that later entries are processed without knowledge of earlier entries, so the last one wins (look at the Preload function). When multiple configuration files are given on the command line, these are processed in order, as described in the man page:




                  Using this option
                  will mean arguments to sysctl are files, which are read in the
                  order they are specified.




                  Things get a little more complex with the --system option, but at least that’s documented:




                  Load settings from all system configuration files. Files are
                  read from directories in the following list in given order
                  from top to bottom. Once a file of a given filename is
                  loaded, any file of the same name in subsequent directories is
                  ignored.



                  • /run/sysctl.d/*.conf

                  • /etc/sysctl.d/*.conf

                  • /usr/local/lib/sysctl.d/*.conf

                  • /usr/lib/sysctl.d/*.conf

                  • /lib/sysctl.d/*.conf

                  • /etc/sysctl.conf



                  The documentation isn’t quite complete. As mentioned above, entries within a given file are applied in order, and overwrite any value given to the same setting previously. In addition, looking at the PreloadSystem function show that files are processed in name order, and that /etc/sysctl.conf is processed unconditionnally (i.e. an identically-named file in an earlier directory doesn’t override it).



                  systemd



                  systemd has its own sysctl handler, which is documented in the sysctl.d manpage; that has a section on precedence:




                  Configuration files are read from directories in /etc/, /run/, and /usr/lib/, in order of precedence. Each configuration file in these configuration directories shall be named in the style of filename.conf. Files in /etc/ override files with the same name in /run/ and /usr/lib/. Files in /run/ override files with the same name in /usr/lib/.



                  […] All configuration files are sorted by their filename in lexicographic order, regardless of which of the directories they reside in. If multiple files specify the same option, the entry in the file with the lexicographically latest name will take precedence. It is recommended to prefix all filenames with a two-digit number and a dash, to simplify the ordering of the files.




                  Again, later entries within a single configuration file override earlier entries.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 19 mins ago

























                  answered 4 hours ago









                  Stephen Kitt

                  152k23338406




                  152k23338406






















                      up vote
                      2
                      down vote













                      Doing this assertion in a more practical way:



                      First things first: Values will not be applied if you prefix the sysctl word on your sysctl.conf entries("manpages are lol" as you said but you didn't seem to have seriously read them). And, it's an easy task to test this: Put the following content at the end of your /etc/sysctl.conf



                      vm.swappiness = 60
                      vm.swappiness = 61


                      I'm using swappines here cause i know that it's a low impact sysctl to mess arround with little difference values depending on your system load (and the default value is 60 on most distros). Apply only this file by typing sysctl -p /etc/sysctl.conf(manpage). Double-check the value with sysctl -a



                      root@host:~# sysctl -a | grep "vm.swappiness"
                      vm.swappiness = 61


                      Voilá.



                      Now that you know files are read on a top-down approach, it's just a matter of reading sysctl.d manpage to figure out what is the precedence on spread sysctl files across you system. As it's already explained by @Stephen Kitt answer, i'll not repeat this info here.



                      Also, this sysctl.d directories precedence will depend if the distro you are using is systemd-based or not...






                      share|improve this answer
























                        up vote
                        2
                        down vote













                        Doing this assertion in a more practical way:



                        First things first: Values will not be applied if you prefix the sysctl word on your sysctl.conf entries("manpages are lol" as you said but you didn't seem to have seriously read them). And, it's an easy task to test this: Put the following content at the end of your /etc/sysctl.conf



                        vm.swappiness = 60
                        vm.swappiness = 61


                        I'm using swappines here cause i know that it's a low impact sysctl to mess arround with little difference values depending on your system load (and the default value is 60 on most distros). Apply only this file by typing sysctl -p /etc/sysctl.conf(manpage). Double-check the value with sysctl -a



                        root@host:~# sysctl -a | grep "vm.swappiness"
                        vm.swappiness = 61


                        Voilá.



                        Now that you know files are read on a top-down approach, it's just a matter of reading sysctl.d manpage to figure out what is the precedence on spread sysctl files across you system. As it's already explained by @Stephen Kitt answer, i'll not repeat this info here.



                        Also, this sysctl.d directories precedence will depend if the distro you are using is systemd-based or not...






                        share|improve this answer






















                          up vote
                          2
                          down vote










                          up vote
                          2
                          down vote









                          Doing this assertion in a more practical way:



                          First things first: Values will not be applied if you prefix the sysctl word on your sysctl.conf entries("manpages are lol" as you said but you didn't seem to have seriously read them). And, it's an easy task to test this: Put the following content at the end of your /etc/sysctl.conf



                          vm.swappiness = 60
                          vm.swappiness = 61


                          I'm using swappines here cause i know that it's a low impact sysctl to mess arround with little difference values depending on your system load (and the default value is 60 on most distros). Apply only this file by typing sysctl -p /etc/sysctl.conf(manpage). Double-check the value with sysctl -a



                          root@host:~# sysctl -a | grep "vm.swappiness"
                          vm.swappiness = 61


                          Voilá.



                          Now that you know files are read on a top-down approach, it's just a matter of reading sysctl.d manpage to figure out what is the precedence on spread sysctl files across you system. As it's already explained by @Stephen Kitt answer, i'll not repeat this info here.



                          Also, this sysctl.d directories precedence will depend if the distro you are using is systemd-based or not...






                          share|improve this answer












                          Doing this assertion in a more practical way:



                          First things first: Values will not be applied if you prefix the sysctl word on your sysctl.conf entries("manpages are lol" as you said but you didn't seem to have seriously read them). And, it's an easy task to test this: Put the following content at the end of your /etc/sysctl.conf



                          vm.swappiness = 60
                          vm.swappiness = 61


                          I'm using swappines here cause i know that it's a low impact sysctl to mess arround with little difference values depending on your system load (and the default value is 60 on most distros). Apply only this file by typing sysctl -p /etc/sysctl.conf(manpage). Double-check the value with sysctl -a



                          root@host:~# sysctl -a | grep "vm.swappiness"
                          vm.swappiness = 61


                          Voilá.



                          Now that you know files are read on a top-down approach, it's just a matter of reading sysctl.d manpage to figure out what is the precedence on spread sysctl files across you system. As it's already explained by @Stephen Kitt answer, i'll not repeat this info here.



                          Also, this sysctl.d directories precedence will depend if the distro you are using is systemd-based or not...







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 4 hours ago









                          nwildner

                          13.6k14074




                          13.6k14074



























                               

                              draft saved


                              draft discarded















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f477940%2fis-sysctl-conf-last-match%23new-answer', 'question_page');

                              );

                              Post as a guest













































































                              Comments

                              Popular posts from this blog

                              Long meetings (6-7 hours a day): Being “babysat” by supervisor

                              Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

                              Confectionery