This page looks best with JavaScript enabled

Users

 ·  ☕ 1 min read

Groups

  • Add a new group
root: bash
  • root# groupadd [groupname]
  • Remove group:
root: bash
  • root# groupdel [groupname]
  • Add a user to a group:
root: bash
  • root# gpasswd -a [username] [groupname]
  • Remove a user from group:
root: bash
  • root# gpasswd -d [username] [groupname]

Users

  • Create a new user and set password for user
root: bash
  • root# user add -m -G [group] -s /bin/bash [username]
  • Remove user (-r option will remove home folder and mail spool)
root: bash
  • root# userdel -r [username]

Sudoers

Add user to sudoers (with all premissions)

/etc/sudoers
1
[username] ALL=(ALL) ALL

More information here

Share on

Avatar
WRITTEN BY