How to modify the group to which a user belongs in Linux

How to modify the group to which a user belongs in Linux

Modify the group to which a user belongs in Linux

1. Set a user's group

usermod -g user group username

Note: -g|--gid, modify the user's gid, the group must exist

2. Add the user to a group(s)

usermod -a -G usergroup username

Note:

-a|--append, append the user to certain groups, only used with the -G option

-G|--groups, add the user to certain groups, only used with the -a option

Content Extension

User Management Commands

useradd Note: Add a user
adduser Note: Add a user
passwd Note: Set a password for the user
usermod Note: Modify user commands. You can use usermod to modify the login name, user's home directory, etc.
pwcov Note: Synchronize users from /etc/passwd to /etc/shadow
pwck Note: pwck is used to check whether the contents of the user configuration files /etc/passwd and /etc/shadow files are legal or complete;
pwunconv Note: It is the reverse operation of pwcov. It creates /etc/passwd from /etc/shadow and /etc/passwd, and then deletes the /etc/shadow file.
finger Note: View user information tool
id Note: View the user's UID, GID and the user group to which he belongs
chfn Note: Change User Information Tool
su Note: User switching tool
sudo Note: sudo is to execute a command as another user. su is used to switch users and then complete the corresponding task through the switched user. However, sudo can directly execute commands afterwards. For example, sudo does not require the root password to execute the commands granted by root. Only root can execute the corresponding commands. However, this can be achieved by editing /etc/sudoers through visudo.
visudo Note: visodo is the command to edit /etc/sudoers. You can also use vi to edit /etc/sudoers directly without using this command, and the effect is the same.
sudoedit Note: It has similar functions to sudo;

The above is all the content of this introduction. Thank you for your learning and support for 123WORDPRESS.COM.

You may also be interested in:
  • Summary of common commands for Linux user and group management
  • How to create, modify, and delete users and groups in Linux
  • Solution to Linux cannot use userdel to delete users and groups
  • Linux user and group commands summary and detailed introduction
  • Some examples of linux search filtering and user and group management commands
  • Guide to user and group configuration management in Linux operating system
  • Implementation of effective user groups and initial user groups in Linux
  • Summary of Linux user groups and permissions
  • Summary of 4 ways to add users to groups in Linux
  • Detailed explanation of adding/deleting users and user groups in Linux
  • How to view all users and user groups in Linux (modify user groups)
  • Linux user and group command example analysis [switching, adding users, permission control, etc.]

<<:  Detailed explanation of the use of Vue Smooth DnD, a draggable component of Vue

>>:  MySQL 5.6.37 (zip) download installation configuration graphic tutorial

Recommend

Introduction to the usage of props in Vue

Preface: In Vue, props can be used to connect ori...

3 codes for automatic refresh of web pages

In fact, it is very simple to achieve this effect,...

HTML table tag tutorial (31): cell width and height attributes WIDTH, HEIGHT

By default, the width and height of the cell are ...

Echarts implements switching different X-axes in one graph (example code)

Rendering If you want to achieve the effect shown...

How to write CSS elegantly with react

Table of contents 1. Inline styles 2. Use import ...

Analysis of the problem of deploying vue project and configuring proxy in Nginx

1. Install and start nginx # Install nginx sudo a...

Detailed tutorial on how to create a user in mysql and grant user permissions

Table of contents User Management Create a new us...

Nginx one domain name to access multiple projects method example

Background Recently, I encountered such a problem...

IIS7 IIS8 reverse proxy rule writing, installation and configuration method

Purpose: Treat Station A as the secondary directo...

21 MySQL standardization and optimization best practices!

Preface Every good habit is a treasure. This arti...