Updated: 2023-08-09 19:00:09 + 4
parent
da1d448a9e
commit
9b31c25c85
|
@ -73,7 +73,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Project Vault/Obsidian/Obsidian-git process.md",
|
"file": "Coding Tips (Classical)/Terminal Tips/Computers/Linux/KDE/Users.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
}
|
}
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Project Vault/Obsidian/Obsidian-git process.md",
|
"file": "Coding Tips (Classical)/Terminal Tips/Computers/Linux/KDE/Users.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
|
@ -163,7 +163,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Project Vault/Obsidian/Obsidian-git process.md",
|
"file": "Coding Tips (Classical)/Terminal Tips/Computers/Linux/KDE/Users.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
}
|
}
|
||||||
|
@ -186,7 +186,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Project Vault/Obsidian/Obsidian-git process.md"
|
"file": "Coding Tips (Classical)/Terminal Tips/Computers/Linux/KDE/Users.md"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -211,6 +211,8 @@
|
||||||
},
|
},
|
||||||
"active": "368b690b57efb87a",
|
"active": "368b690b57efb87a",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Pasted image 20230809185553.png",
|
||||||
|
"Coding Tips (Classical)/Project Vault/Obsidian/Obsidian-git process.md",
|
||||||
"Coding Tips (Classical)/Terminal Tips/Computers/Linux/KDE/Users.md",
|
"Coding Tips (Classical)/Terminal Tips/Computers/Linux/KDE/Users.md",
|
||||||
"Coding Tips (Classical)/Terminal Tips/GUIs/About GUIs.md",
|
"Coding Tips (Classical)/Terminal Tips/GUIs/About GUIs.md",
|
||||||
"Coding Tips (Classical)/Terminal Tips/CLI Tools/CLI Tool Collection/VHS.md",
|
"Coding Tips (Classical)/Terminal Tips/CLI Tools/CLI Tool Collection/VHS.md",
|
||||||
|
@ -248,8 +250,6 @@
|
||||||
"Coding Tips (Classical)/Project Vault/Obsidian/imgFiles/Pasted image 20230804094119.png",
|
"Coding Tips (Classical)/Project Vault/Obsidian/imgFiles/Pasted image 20230804094119.png",
|
||||||
"Classical",
|
"Classical",
|
||||||
"Machine Tips (Quantum)/Math/Algorithms/Encryption",
|
"Machine Tips (Quantum)/Math/Algorithms/Encryption",
|
||||||
"Machine Tips (Quantum)/Math/Linear Algebra Basics.md",
|
|
||||||
"Machine Tips (Quantum)/Math/Math Software.md",
|
|
||||||
"Untitled.canvas",
|
"Untitled.canvas",
|
||||||
"Coding Tips (Classical)/Project Vault/Obsidian/imgFiles/Pasted image 20230802150926.png",
|
"Coding Tips (Classical)/Project Vault/Obsidian/imgFiles/Pasted image 20230802150926.png",
|
||||||
"Coding Tips (Classical)/Project Vault/Comms/RADIO/Hardware",
|
"Coding Tips (Classical)/Project Vault/Comms/RADIO/Hardware",
|
||||||
|
|
|
@ -6,6 +6,13 @@ General self-hosted information flow:
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Git manual update command Shortcut:
|
||||||
|
```
|
||||||
|
git add .
|
||||||
|
git fetch
|
||||||
|
git commit -m "Noted: `date +'%Y-%m-%d %H:%M:%S'`"
|
||||||
|
git push -u origin main
|
||||||
|
```
|
||||||
|
|
||||||
## Syncing my Obsidian: The Steps I took
|
## Syncing my Obsidian: The Steps I took
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
As a linux user, we know the difference between a user having root privileges and users without. This is an important thing to understand. Sudo for the win.
|
As a linux user, we know the difference between a user having root privileges and users without. This is an important thing to understand. Sudo for the win.
|
||||||
|
|
||||||
|
![[Pasted image 20230809185553.png]]
|
||||||
|
|
||||||
|
There are 3 kinds of users on linux.
|
||||||
|
1. Super user
|
||||||
|
2. System user
|
||||||
|
3. Normal user
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### Adding Users
|
### Adding Users
|
||||||
|
@ -49,4 +56,12 @@ sudo passwd joe
|
||||||
Removing a user:
|
Removing a user:
|
||||||
```
|
```
|
||||||
userdel joe
|
userdel joe
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### Misc User stuff
|
||||||
|
|
||||||
|
View all users:
|
||||||
|
```
|
||||||
|
cat /etc/passwd
|
||||||
|
```
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
Loading…
Reference in New Issue