1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 07:55:32 +02:00

mkhomedir_helper: add page (#10571)

* mkhomedir_helper: add page

---------

Co-authored-by: pixel <pixel+github@chrissx.de>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
Managor 2023-08-09 17:44:05 +03:00 committed by GitHub
parent 92205fee9f
commit 14490b66d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
# mkhomedir_helper
> Create the user's home directory after creating the user.
> More information: <https://manned.org/mkhomedir_helper>.
- Create a home directory for a user based on `/etc/skel` with umask 022:
`sudo mkhomedir_helper {{username}}`
- Create a home directory for a user based on `/etc/skel` with all permissions for owner (0) and read permission for group (3):
`sudo mkhomedir_helper {{username}} {{037}}`
- Create a home directory for a user based on a custom skeleton:
`sudo mkhomedir_helper {{username}} {{umask}} {{path/to/skeleton_directory}}`