What is the use of option -o in the useradd command? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionuseradd fails on archlinuxDisable login for useraddWhat does adduser do that useradd doesn't?useradd PAM authentication failedWhat variables are valid within /etc/default/useradd file?Can't add users anymore by using useradduseradd where account name is a numberDebian 9 - useraddadduser has no difference from useraddwhat is difference between useradd -m and useradd -d?

How is simplicity better than precision and clarity in prose?

Why use gamma over alpha radiation?

Are my PIs rude or am I just being too sensitive?

Limit for e and 1/e

Geometric mean and geometric standard deviation

Complexity of many constant time steps with occasional logarithmic steps

Array/tabular for long multiplication

What are the performance impacts of 'functional' Rust?

Need a suitable toxic chemical for a murder plot in my novel

How are presidential pardons supposed to be used?

Is it possible to ask for a hotel room without minibar/extra services?

What LEGO pieces have "real-world" functionality?

Estimated State payment too big --> money back; + 2018 Tax Reform

Losing the Initialization Vector in Cipher Block Chaining

If A makes B more likely then B makes A more likely"

How to colour the US map with Yellow, Green, Red and Blue to minimize the number of states with the colour of Green

Unexpected result with right shift after bitwise negation

What would be Julian Assange's expected punishment, on the current English criminal law?

Classification of bundles, Postnikov towers, obstruction theory, local coefficients

If I can make up priors, why can't I make up posteriors?

What's the point in a preamp?

Working around an AWS network ACL rule limit

Two different pronunciation of "понял"

What is the electric potential inside a point charge?



What is the use of option -o in the useradd command?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionuseradd fails on archlinuxDisable login for useraddWhat does adduser do that useradd doesn't?useradd PAM authentication failedWhat variables are valid within /etc/default/useradd file?Can't add users anymore by using useradduseradd where account name is a numberDebian 9 - useraddadduser has no difference from useraddwhat is difference between useradd -m and useradd -d?



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








7















As the title indicates, what is the use of option -o for command useradd? What is a good use case of this option?










share|improve this question






























    7















    As the title indicates, what is the use of option -o for command useradd? What is a good use case of this option?










    share|improve this question


























      7












      7








      7


      2






      As the title indicates, what is the use of option -o for command useradd? What is a good use case of this option?










      share|improve this question
















      As the title indicates, what is the use of option -o for command useradd? What is a good use case of this option?







      linux useradd






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 9 at 17:58









      GAD3R

      28.2k1958114




      28.2k1958114










      asked Apr 9 at 17:23









      osmakosmak

      584




      584




















          2 Answers
          2






          active

          oldest

          votes


















          10














          useradd’s -o option, along with its -u option, allows you to create a user with a non-unique user id. One use case for that is to create users with identical privileges (since they share the same user id) but different passwords, and if appropriate, home directories and shells. This can be useful for service accounts (although typically you’d achieve the same result using sudo nowadays); it can also be useful for rescue purposes with a root-equivalent account using a statically-linked shell such as sash.






          share|improve this answer
































            5














            The -o option allows the creation of users with non-unique IDs, only when you also supply the numerical value of their UID with the -u option in the same line, e.g.:



            # useradd -o huey -u 501
            # useradd -o dewey -u 501
            # useradd -o louie -u 501


            This permits setting up multiple users with same rights and priveleges, but with different home directories and passwords.






            share|improve this answer























            • # useradd -o scrooge -u 0

              – rrauenza
              Apr 9 at 21:44






            • 1





              Wonderful way to break all applications that parse usernames as output of id or ls -l. Given su - scrooge -c 'id -u -n' says 'root' :)

              – kubanczyk
              Apr 10 at 7:30












            • And, quite unexpectedly, it also totalled my gdm on Ubuntu 18.04. Awww crap, I should have done it inside container...

              – kubanczyk
              Apr 11 at 14:30











            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',
            autoActivateHeartbeat: false,
            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%2f511517%2fwhat-is-the-use-of-option-o-in-the-useradd-command%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            10














            useradd’s -o option, along with its -u option, allows you to create a user with a non-unique user id. One use case for that is to create users with identical privileges (since they share the same user id) but different passwords, and if appropriate, home directories and shells. This can be useful for service accounts (although typically you’d achieve the same result using sudo nowadays); it can also be useful for rescue purposes with a root-equivalent account using a statically-linked shell such as sash.






            share|improve this answer





























              10














              useradd’s -o option, along with its -u option, allows you to create a user with a non-unique user id. One use case for that is to create users with identical privileges (since they share the same user id) but different passwords, and if appropriate, home directories and shells. This can be useful for service accounts (although typically you’d achieve the same result using sudo nowadays); it can also be useful for rescue purposes with a root-equivalent account using a statically-linked shell such as sash.






              share|improve this answer



























                10












                10








                10







                useradd’s -o option, along with its -u option, allows you to create a user with a non-unique user id. One use case for that is to create users with identical privileges (since they share the same user id) but different passwords, and if appropriate, home directories and shells. This can be useful for service accounts (although typically you’d achieve the same result using sudo nowadays); it can also be useful for rescue purposes with a root-equivalent account using a statically-linked shell such as sash.






                share|improve this answer















                useradd’s -o option, along with its -u option, allows you to create a user with a non-unique user id. One use case for that is to create users with identical privileges (since they share the same user id) but different passwords, and if appropriate, home directories and shells. This can be useful for service accounts (although typically you’d achieve the same result using sudo nowadays); it can also be useful for rescue purposes with a root-equivalent account using a statically-linked shell such as sash.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Apr 10 at 8:00

























                answered Apr 9 at 17:28









                Stephen KittStephen Kitt

                181k25415494




                181k25415494























                    5














                    The -o option allows the creation of users with non-unique IDs, only when you also supply the numerical value of their UID with the -u option in the same line, e.g.:



                    # useradd -o huey -u 501
                    # useradd -o dewey -u 501
                    # useradd -o louie -u 501


                    This permits setting up multiple users with same rights and priveleges, but with different home directories and passwords.






                    share|improve this answer























                    • # useradd -o scrooge -u 0

                      – rrauenza
                      Apr 9 at 21:44






                    • 1





                      Wonderful way to break all applications that parse usernames as output of id or ls -l. Given su - scrooge -c 'id -u -n' says 'root' :)

                      – kubanczyk
                      Apr 10 at 7:30












                    • And, quite unexpectedly, it also totalled my gdm on Ubuntu 18.04. Awww crap, I should have done it inside container...

                      – kubanczyk
                      Apr 11 at 14:30















                    5














                    The -o option allows the creation of users with non-unique IDs, only when you also supply the numerical value of their UID with the -u option in the same line, e.g.:



                    # useradd -o huey -u 501
                    # useradd -o dewey -u 501
                    # useradd -o louie -u 501


                    This permits setting up multiple users with same rights and priveleges, but with different home directories and passwords.






                    share|improve this answer























                    • # useradd -o scrooge -u 0

                      – rrauenza
                      Apr 9 at 21:44






                    • 1





                      Wonderful way to break all applications that parse usernames as output of id or ls -l. Given su - scrooge -c 'id -u -n' says 'root' :)

                      – kubanczyk
                      Apr 10 at 7:30












                    • And, quite unexpectedly, it also totalled my gdm on Ubuntu 18.04. Awww crap, I should have done it inside container...

                      – kubanczyk
                      Apr 11 at 14:30













                    5












                    5








                    5







                    The -o option allows the creation of users with non-unique IDs, only when you also supply the numerical value of their UID with the -u option in the same line, e.g.:



                    # useradd -o huey -u 501
                    # useradd -o dewey -u 501
                    # useradd -o louie -u 501


                    This permits setting up multiple users with same rights and priveleges, but with different home directories and passwords.






                    share|improve this answer













                    The -o option allows the creation of users with non-unique IDs, only when you also supply the numerical value of their UID with the -u option in the same line, e.g.:



                    # useradd -o huey -u 501
                    # useradd -o dewey -u 501
                    # useradd -o louie -u 501


                    This permits setting up multiple users with same rights and priveleges, but with different home directories and passwords.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Apr 9 at 17:35









                    K7AAYK7AAY

                    1,1161028




                    1,1161028












                    • # useradd -o scrooge -u 0

                      – rrauenza
                      Apr 9 at 21:44






                    • 1





                      Wonderful way to break all applications that parse usernames as output of id or ls -l. Given su - scrooge -c 'id -u -n' says 'root' :)

                      – kubanczyk
                      Apr 10 at 7:30












                    • And, quite unexpectedly, it also totalled my gdm on Ubuntu 18.04. Awww crap, I should have done it inside container...

                      – kubanczyk
                      Apr 11 at 14:30

















                    • # useradd -o scrooge -u 0

                      – rrauenza
                      Apr 9 at 21:44






                    • 1





                      Wonderful way to break all applications that parse usernames as output of id or ls -l. Given su - scrooge -c 'id -u -n' says 'root' :)

                      – kubanczyk
                      Apr 10 at 7:30












                    • And, quite unexpectedly, it also totalled my gdm on Ubuntu 18.04. Awww crap, I should have done it inside container...

                      – kubanczyk
                      Apr 11 at 14:30
















                    # useradd -o scrooge -u 0

                    – rrauenza
                    Apr 9 at 21:44





                    # useradd -o scrooge -u 0

                    – rrauenza
                    Apr 9 at 21:44




                    1




                    1





                    Wonderful way to break all applications that parse usernames as output of id or ls -l. Given su - scrooge -c 'id -u -n' says 'root' :)

                    – kubanczyk
                    Apr 10 at 7:30






                    Wonderful way to break all applications that parse usernames as output of id or ls -l. Given su - scrooge -c 'id -u -n' says 'root' :)

                    – kubanczyk
                    Apr 10 at 7:30














                    And, quite unexpectedly, it also totalled my gdm on Ubuntu 18.04. Awww crap, I should have done it inside container...

                    – kubanczyk
                    Apr 11 at 14:30





                    And, quite unexpectedly, it also totalled my gdm on Ubuntu 18.04. Awww crap, I should have done it inside container...

                    – kubanczyk
                    Apr 11 at 14:30

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • 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%2funix.stackexchange.com%2fquestions%2f511517%2fwhat-is-the-use-of-option-o-in-the-useradd-command%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

                    Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                    Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                    What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company