How do I reach/edit /etc/security/pam_env.conf?












0















In a quest to find out how to enable touchscreen scrolling in Firefox, I found this



"Add MOZ_USE_XINPUT2 DEFAULT=1 to /etc/security/pam_env.conf"



How do I get to "/etc/security/pam_env.conf"? it doesn't seem to be in the Firefox about:config and when put into my terminal it says permission denied.










share|improve this question



























    0















    In a quest to find out how to enable touchscreen scrolling in Firefox, I found this



    "Add MOZ_USE_XINPUT2 DEFAULT=1 to /etc/security/pam_env.conf"



    How do I get to "/etc/security/pam_env.conf"? it doesn't seem to be in the Firefox about:config and when put into my terminal it says permission denied.










    share|improve this question

























      0












      0








      0








      In a quest to find out how to enable touchscreen scrolling in Firefox, I found this



      "Add MOZ_USE_XINPUT2 DEFAULT=1 to /etc/security/pam_env.conf"



      How do I get to "/etc/security/pam_env.conf"? it doesn't seem to be in the Firefox about:config and when put into my terminal it says permission denied.










      share|improve this question














      In a quest to find out how to enable touchscreen scrolling in Firefox, I found this



      "Add MOZ_USE_XINPUT2 DEFAULT=1 to /etc/security/pam_env.conf"



      How do I get to "/etc/security/pam_env.conf"? it doesn't seem to be in the Firefox about:config and when put into my terminal it says permission denied.







      firefox touchscreen






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 20 at 20:12









      David ZhongDavid Zhong

      1




      1






















          1 Answer
          1






          active

          oldest

          votes


















          0














          It is asking you to edit the existing file to add a new variable. The simplest text editor in Ubuntu is nano.



          System files, including those in /etc, need sudo priveleges to edit. Please open a terminal and do:



          sudo nano /etc/security/pam_env.conf


          After supplying your password, the file will open ready to be modified. I suggest that you add the text at the very end so that you can easily find and remove it if you decide to at some later time. The end of the file will look like this:



          #
          # silly examples of escaped variables, just to show how they work.
          #
          #DOLLAR DEFAULT=$
          #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
          #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
          #ATSIGN DEFAULT="" OVERRIDE=@


          Add your new variable so that it looks like this:



          #
          # silly examples of escaped variables, just to show how they work.
          #
          #DOLLAR DEFAULT=$
          #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
          #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
          #ATSIGN DEFAULT="" OVERRIDE=@
          MOZ_USE_XINPUT2 DEFAULT=1


          Proofread carefully. Save the file (Ctrl+o followed by Enter) and close the text editor (Ctrl+x).



          I am not familiar with this method of invoking touchscreen scrolling, so I can't vouch for its effectiveness. This answer is simply to show you how to add text at the end of a file.






          share|improve this answer

























            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
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111468%2fhow-do-i-reach-edit-etc-security-pam-env-conf%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            It is asking you to edit the existing file to add a new variable. The simplest text editor in Ubuntu is nano.



            System files, including those in /etc, need sudo priveleges to edit. Please open a terminal and do:



            sudo nano /etc/security/pam_env.conf


            After supplying your password, the file will open ready to be modified. I suggest that you add the text at the very end so that you can easily find and remove it if you decide to at some later time. The end of the file will look like this:



            #
            # silly examples of escaped variables, just to show how they work.
            #
            #DOLLAR DEFAULT=$
            #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
            #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
            #ATSIGN DEFAULT="" OVERRIDE=@


            Add your new variable so that it looks like this:



            #
            # silly examples of escaped variables, just to show how they work.
            #
            #DOLLAR DEFAULT=$
            #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
            #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
            #ATSIGN DEFAULT="" OVERRIDE=@
            MOZ_USE_XINPUT2 DEFAULT=1


            Proofread carefully. Save the file (Ctrl+o followed by Enter) and close the text editor (Ctrl+x).



            I am not familiar with this method of invoking touchscreen scrolling, so I can't vouch for its effectiveness. This answer is simply to show you how to add text at the end of a file.






            share|improve this answer






























              0














              It is asking you to edit the existing file to add a new variable. The simplest text editor in Ubuntu is nano.



              System files, including those in /etc, need sudo priveleges to edit. Please open a terminal and do:



              sudo nano /etc/security/pam_env.conf


              After supplying your password, the file will open ready to be modified. I suggest that you add the text at the very end so that you can easily find and remove it if you decide to at some later time. The end of the file will look like this:



              #
              # silly examples of escaped variables, just to show how they work.
              #
              #DOLLAR DEFAULT=$
              #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
              #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
              #ATSIGN DEFAULT="" OVERRIDE=@


              Add your new variable so that it looks like this:



              #
              # silly examples of escaped variables, just to show how they work.
              #
              #DOLLAR DEFAULT=$
              #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
              #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
              #ATSIGN DEFAULT="" OVERRIDE=@
              MOZ_USE_XINPUT2 DEFAULT=1


              Proofread carefully. Save the file (Ctrl+o followed by Enter) and close the text editor (Ctrl+x).



              I am not familiar with this method of invoking touchscreen scrolling, so I can't vouch for its effectiveness. This answer is simply to show you how to add text at the end of a file.






              share|improve this answer




























                0












                0








                0







                It is asking you to edit the existing file to add a new variable. The simplest text editor in Ubuntu is nano.



                System files, including those in /etc, need sudo priveleges to edit. Please open a terminal and do:



                sudo nano /etc/security/pam_env.conf


                After supplying your password, the file will open ready to be modified. I suggest that you add the text at the very end so that you can easily find and remove it if you decide to at some later time. The end of the file will look like this:



                #
                # silly examples of escaped variables, just to show how they work.
                #
                #DOLLAR DEFAULT=$
                #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
                #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
                #ATSIGN DEFAULT="" OVERRIDE=@


                Add your new variable so that it looks like this:



                #
                # silly examples of escaped variables, just to show how they work.
                #
                #DOLLAR DEFAULT=$
                #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
                #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
                #ATSIGN DEFAULT="" OVERRIDE=@
                MOZ_USE_XINPUT2 DEFAULT=1


                Proofread carefully. Save the file (Ctrl+o followed by Enter) and close the text editor (Ctrl+x).



                I am not familiar with this method of invoking touchscreen scrolling, so I can't vouch for its effectiveness. This answer is simply to show you how to add text at the end of a file.






                share|improve this answer















                It is asking you to edit the existing file to add a new variable. The simplest text editor in Ubuntu is nano.



                System files, including those in /etc, need sudo priveleges to edit. Please open a terminal and do:



                sudo nano /etc/security/pam_env.conf


                After supplying your password, the file will open ready to be modified. I suggest that you add the text at the very end so that you can easily find and remove it if you decide to at some later time. The end of the file will look like this:



                #
                # silly examples of escaped variables, just to show how they work.
                #
                #DOLLAR DEFAULT=$
                #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
                #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
                #ATSIGN DEFAULT="" OVERRIDE=@


                Add your new variable so that it looks like this:



                #
                # silly examples of escaped variables, just to show how they work.
                #
                #DOLLAR DEFAULT=$
                #DOLLARDOLLAR DEFAULT= OVERRIDE=$${DOLLAR}
                #DOLLARPLUS DEFAULT=${REMOTEHOST}${REMOTEHOST}
                #ATSIGN DEFAULT="" OVERRIDE=@
                MOZ_USE_XINPUT2 DEFAULT=1


                Proofread carefully. Save the file (Ctrl+o followed by Enter) and close the text editor (Ctrl+x).



                I am not familiar with this method of invoking touchscreen scrolling, so I can't vouch for its effectiveness. This answer is simply to show you how to add text at the end of a file.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 20 at 21:50

























                answered Jan 20 at 21:31









                chili555chili555

                38.8k55177




                38.8k55177






























                    draft saved

                    draft discarded




















































                    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%2f1111468%2fhow-do-i-reach-edit-etc-security-pam-env-conf%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

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?