20 lines
204 B
Markdown
20 lines
204 B
Markdown
|
---
|
||
|
author: Alvie Rahman
|
||
|
date: \today
|
||
|
title: linux notes
|
||
|
---
|
||
|
|
||
|
# user stuff
|
||
|
|
||
|
## add user to group
|
||
|
|
||
|
```bash
|
||
|
# usermod -a -G group user
|
||
|
```
|
||
|
|
||
|
## change primary user group
|
||
|
|
||
|
```bash
|
||
|
# usermod -g group user
|
||
|
```
|