Create a new user in Linux and grant permissions to the specified directory

Create a new user in Linux and grant permissions to the specified directory

1 Create a user and specify the user's root path and password

useradd -d /home/mydir -m username

Users created in this way can log in using ssh, but have only read-only permissions to browse and download some files but cannot write or modify them.

It is recommended to obtain permissions for the specified path by adding the user to a group.

2 Set a password

passwd username

3 User Authorization

chown -R username: username /home/ mydir
chmod 755 /home/mydir

4 Add users to the group

Add a user to a user group. Try not to use it directly (unless it really belongs to only one group):

usermod -G groupA username

Doing this will remove you from the other groups and make you a member of groupA only.

Should be used with -a option:

usermod -a -G groupA username

To view the groups to which a user belongs, use the command

groups username

Summarize

The above is what I introduced to you about creating a new user in Linux and granting relevant permissions to the specified directory. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to disable root remote login and add new users in Linux
  • Detailed explanation of how to set SFTP service user directory permissions in Linux system
  • A detailed introduction to Linux file and directory permissions
  • The meaning of file permissions and directory permissions in Linux and the significance of permissions to file directories

<<:  Complete steps to install MySQL 8.0.x on Linux

>>:  DOM operation implementation in react

Recommend

js+canvas realizes code rain effect

This article shares the specific code of js+canva...

Quickly solve the problem of slow startup after Tomcat reconfiguration

During the configuration of Jenkins+Tomcat server...

Pure CSS header fixed implementation code

There are two main reasons why it is difficult to...

jQuery combined with CSS to achieve the return to top function

CSS Operations CSS $("").css(name|pro|[...

Docker commands are implemented so that ordinary users can execute them

After installing docker, there will usually be a ...

Implementing a simple Gobang game with native JavaScript

This article shares the specific code for impleme...

CentOS7.5 installation tutorial of MySQL

1. First check whether the system has mysql insta...

Detailed tutorial on installing Docker and nvidia-docker on Ubuntu 16.04

Table of contents Docker Installation Nvidia-dock...

14 practical experiences on reducing SCSS style code by 50%

Preface Sass is an extension of the CSS3 language...

Detailed tutorial on installing Tomcat9 windows service

1. Preparation 1.1 Download the tomcat compressed...

MySQL high availability cluster deployment and failover implementation

Table of contents 1. MHA 1. Concept 2. Compositio...

Implementation of one-click TLS encryption for docker remote api

Table of contents 1. Change the 2375 port of Dock...

Solution to mysql prompt "got timeout reading communication packets"

Error message: user: 'root' host: `localh...

HTML tags: sub tag and sup tag

Today I will introduce two HTML tags that I don’t...