21 lines
210 B
Markdown
Executable File
21 lines
210 B
Markdown
Executable File
---
|
|
author: Alvie Rahman
|
|
date: \today
|
|
title: Linux
|
|
tags: [ linux ]
|
|
---
|
|
|
|
# user stuff
|
|
|
|
## add user to group
|
|
|
|
```bash
|
|
usermod -a -G group user
|
|
```
|
|
|
|
## change primary user group
|
|
|
|
```bash
|
|
usermod -g group user
|
|
```
|