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