-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

useradd


> Create a new user.

> See also: `users`, `userdel`, `usermod`.

More information.


Create a new user:

sudo useradd {username}

Create a new user with the specified user id:

sudo useradd --uid {id} {username}

Create a new user with the specified shell:

sudo useradd --shell {path/to/shell} {username}

Create a new user belonging to additional groups (mind the lack of whitespace):

sudo useradd --groups {group1,group2,...} {username}

Create a new user with the default home directory:

sudo useradd --create-home {username}

Create a new user with the home directory filled by template directory files:

sudo useradd --skel {path/to/template_directory} --create-home {username}

Create a new system user without the home directory:

sudo useradd --system {username}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 17:58:52 2024