Which command adds the new user tux and creates the user's home directory with default configuration files?
Which command adds the new user tux and creates the user's home directory with default configuration files?
The command that adds a new user and creates the user's home directory with default configuration files is useradd -m tux. The -m option ensures that the home directory is created if it does not exist. Other options do not provide the correct functionality to create a home directory with default configuration files for the new user.
it's useradd -m tux not useradd ""m tux
noticed the "" on a few examples, for some reason its subbing for -
I ran useradd -m tux on my kali linux distro and it worked. it created another user under my /home/ directory which is now /home/tux
It should be useradd -m tux, please fix it.
As many people said here, this is not "useradd ג€"m tux" but "useradd -m tux", I can't believe this is not fixed !
Is someone going to fix the typos?
I'm not sure what the quotes in front of the m are?
I believe when they were copying and pasting commands here in this paper, instead of - it copied ""
The following command creates a home folder (-m) and set the specified home directory (-d) as the value for the new user's login: $ sudo useradd -m -d /home/bob01 bob01
which one is the correct answer?
Command: useradd -m tux
useradd -m tux
useradd ג€"m tux
useradd -m tux
answer b