Horje
add and remove users in linux Code Example
add and remove users in linux
#to add a user
sudo useradd <username>

#to remove a user
sudo userdel <username>

#to check for users
cat /etc/passwd

#to check for groups
cat /etc/group

#to assign a password to a user
sudo passwd <username>
  
#to allow the user login without username
sudo passwd -d <username>




Shell

Related
check my localhost command Code Example check my localhost command Code Example
ubuntu delete folder Code Example ubuntu delete folder Code Example
run flake8 Code Example run flake8 Code Example
No module named 'django_redis' Code Example No module named 'django_redis' Code Example
yarn install No such file or directory: 'install' Code Example yarn install No such file or directory: 'install' Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9