mkogg.py: Fix 'self.get_mp4_metadata(self, source)'
[blog.git] / posts / newgrp.mdwn
1 When you add a user to a new group, you're often told you need to log
2 out and log back in for the new membership to take effect.  If you're
3 at the terminal running [[screen]], this is no big deal, but it can be
4 annoying if you're running a lot of graphical stuff that doesn't
5 suspend and resume so easily.  Luckily there is `newgrp` which can
6 adjust your current group ID to match the new group:
7
8     $ usermod -a -G groupname username
9     $ newgrp groupname
10
11 [[!tag tags/linux]]