Compare commits

..

2 Commits

Author SHA1 Message Date
1e8eeca968 modified: README.md
new file:   docs/journald.md
2026-01-12 23:52:21 +00:00
8c0dbf9ea0 modified: docs/display-managers/sddm.md 2026-01-10 01:34:54 +00:00
3 changed files with 23 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
- [Network Configuration](#network-configuration) - [Network Configuration](#network-configuration)
- [hostname / hostnamectl](#hostname--hostnamectl) - [hostname / hostnamectl](#hostname--hostnamectl)
- [static ip](#static-ip) - [static ip](#static-ip)
- [System info](#system-info)
- [System Monitoring Utilities](#system-monitoring-utilities) - [System Monitoring Utilities](#system-monitoring-utilities)
- [btop](#btop) - [btop](#btop)
- [memory usage by user](#memory-usage-by-user) - [memory usage by user](#memory-usage-by-user)
@@ -216,6 +217,16 @@ Reiniciar configuração sem reboot de computador
sudo /etc/init.d/networking restart sudo /etc/init.d/networking restart
``` ```
### System info
```bash
# get distribution
cat /etc/os-release
# get kernel version
uname -a
```
### System Monitoring Utilities ### System Monitoring Utilities
#### btop #### btop

View File

@@ -18,3 +18,8 @@ SDDM (Simple Desktop Display Manager) is the default graphical login manager use
- Replaced KDM (KDE Display Manager) starting with KDE Plasma 5. - Replaced KDM (KDE Display Manager) starting with KDE Plasma 5.
- Used by KDE-centric distributions like KDE neon, OpenSUSE KDE, and Fedora KDE Spin. - Used by KDE-centric distributions like KDE neon, OpenSUSE KDE, and Fedora KDE Spin.
```bash
# control ui login at boot
systemctl start|stop|enabled|disable sddm
``

7
docs/journald.md Normal file
View File

@@ -0,0 +1,7 @@
# journald
**get errors from last boot:**
```bash
journalctl -b -1 -p err
```