notes/computery_stuff/linux.md

23 lines
251 B
Markdown
Executable File

---
author: Alvie Rahman
date: \today
title: Linux
tags:
- linux
uuid: 8ef11516-4afd-4f80-abb8-bdce045e8b65
---
# user stuff
## add user to group
```bash
usermod -a -G group user
```
## change primary user group
```bash
usermod -g group user
```