notes/computery_stuff/linux.md

23 lines
251 B
Markdown
Raw Normal View History

2021-07-04 11:17:53 +00:00
---
author: Alvie Rahman
date: \today
2021-08-23 14:25:05 +00:00
title: Linux
2022-03-02 01:43:54 +00:00
tags:
- linux
uuid: 8ef11516-4afd-4f80-abb8-bdce045e8b65
2021-07-04 11:17:53 +00:00
---
# user stuff
## add user to group
```bash
2021-09-01 14:55:07 +00:00
usermod -a -G group user
2021-07-04 11:17:53 +00:00
```
## change primary user group
```bash
2021-09-01 14:55:07 +00:00
usermod -g group user
2021-07-04 11:17:53 +00:00
```