add user to group
usermod -a -G examplegroup exampleusername
add user to group
usermod -a -G examplegroup exampleusername
linux add user to group
# add user to additional group
usermod -G groupname username
Adding users to groups
sudo usermod -a -G <groupname> <username>
e.g.
sudo usermod -a -G wonderland alice
add user to group
usermod -a -G <group> <user>
$ usermod -a -G developer tom
how to set default user group in django
from django.contrib.auth.models import User, Group
from django.db.models.signals import post_save
from django.dispatch import receiver
@receiver(post_save, sender=User)
def create_user_profile(sender, instance, created, **kwargs):
if created:
instance.groups.add(Group.objects.get(name='group_name'))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us