Sed Usage to update GRUB file





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I am new to using sed but quickly learning to love it for its general flexibility in automation. I am looking to run a script with various security controls every time I deploy a new system, and part of that requires me to lock down the GRUB. I am looking to unlock the general Ubuntu option from the GRUB menu so anyone can use it after that without a password, while keeping everything else password protected.



that being said, I am looking to search the /boot/grub/grub.cfg file for a specific line and add --unrestricted to that option. ( We only use 16.04.03 so all systems would theoretically have the same file upon install )



The line in the file is:



menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


And I want it to look like:



menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


I know sed -i is for in place editing and s/ should search. But beyond that I am lost on the syntax here to make it actually do what we need. As far as I can tell, that positioning of --unrestricted is needed as I believe it would be easier if we didnt have to have such a long search, but again I am new to sed and unsure. Could someone help me with this sed insertion? Preferably also explain to me why different syntax goes where it does, so I know for the future.










share|improve this question







New contributor




Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



























    0















    I am new to using sed but quickly learning to love it for its general flexibility in automation. I am looking to run a script with various security controls every time I deploy a new system, and part of that requires me to lock down the GRUB. I am looking to unlock the general Ubuntu option from the GRUB menu so anyone can use it after that without a password, while keeping everything else password protected.



    that being said, I am looking to search the /boot/grub/grub.cfg file for a specific line and add --unrestricted to that option. ( We only use 16.04.03 so all systems would theoretically have the same file upon install )



    The line in the file is:



    menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


    And I want it to look like:



    menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


    I know sed -i is for in place editing and s/ should search. But beyond that I am lost on the syntax here to make it actually do what we need. As far as I can tell, that positioning of --unrestricted is needed as I believe it would be easier if we didnt have to have such a long search, but again I am new to sed and unsure. Could someone help me with this sed insertion? Preferably also explain to me why different syntax goes where it does, so I know for the future.










    share|improve this question







    New contributor




    Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      I am new to using sed but quickly learning to love it for its general flexibility in automation. I am looking to run a script with various security controls every time I deploy a new system, and part of that requires me to lock down the GRUB. I am looking to unlock the general Ubuntu option from the GRUB menu so anyone can use it after that without a password, while keeping everything else password protected.



      that being said, I am looking to search the /boot/grub/grub.cfg file for a specific line and add --unrestricted to that option. ( We only use 16.04.03 so all systems would theoretically have the same file upon install )



      The line in the file is:



      menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


      And I want it to look like:



      menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


      I know sed -i is for in place editing and s/ should search. But beyond that I am lost on the syntax here to make it actually do what we need. As far as I can tell, that positioning of --unrestricted is needed as I believe it would be easier if we didnt have to have such a long search, but again I am new to sed and unsure. Could someone help me with this sed insertion? Preferably also explain to me why different syntax goes where it does, so I know for the future.










      share|improve this question







      New contributor




      Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I am new to using sed but quickly learning to love it for its general flexibility in automation. I am looking to run a script with various security controls every time I deploy a new system, and part of that requires me to lock down the GRUB. I am looking to unlock the general Ubuntu option from the GRUB menu so anyone can use it after that without a password, while keeping everything else password protected.



      that being said, I am looking to search the /boot/grub/grub.cfg file for a specific line and add --unrestricted to that option. ( We only use 16.04.03 so all systems would theoretically have the same file upon install )



      The line in the file is:



      menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


      And I want it to look like:



      menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-simple-2aa7ed2c-67a7-42d5-84fb-0ddab74c5dd0' {


      I know sed -i is for in place editing and s/ should search. But beyond that I am lost on the syntax here to make it actually do what we need. As far as I can tell, that positioning of --unrestricted is needed as I believe it would be easier if we didnt have to have such a long search, but again I am new to sed and unsure. Could someone help me with this sed insertion? Preferably also explain to me why different syntax goes where it does, so I know for the future.







      16.04 grub2 bash scripts sed






      share|improve this question







      New contributor




      Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 17 mins ago









      Brendan77222Brendan77222

      387




      387




      New contributor




      Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Brendan77222 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          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',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          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
          });


          }
          });






          Brendan77222 is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1139431%2fsed-usage-to-update-grub-file%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Brendan77222 is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Brendan77222 is a new contributor. Be nice, and check out our Code of Conduct.













          Brendan77222 is a new contributor. Be nice, and check out our Code of Conduct.












          Brendan77222 is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1139431%2fsed-usage-to-update-grub-file%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

          GameSpot

          connect to host localhost port 22: Connection refused

          Getting a Wifi WPA2 wifi connection