modified: README.md

This commit is contained in:
2026-02-15 09:24:08 +00:00
parent 1e8eeca968
commit f4db04de81

View File

@@ -30,6 +30,7 @@
- [gio](#gio) - [gio](#gio)
- [CLI Diagnostics and System Topology](#cli-diagnostics-and-system-topology) - [CLI Diagnostics and System Topology](#cli-diagnostics-and-system-topology)
- [lspci](#lspci) - [lspci](#lspci)
- [sudo](#sudo)
## Distro ## Distro
@@ -347,7 +348,6 @@ gio mount smb://server/share < /home/username/.credentials
gio mount -u smb://server/share gio mount -u smb://server/share
``` ```
### CLI Diagnostics and System Topology ### CLI Diagnostics and System Topology
#### lspci #### lspci
@@ -357,9 +357,21 @@ Displays information about each PCI bus on your system. This includes informatio
lspci [options] lspci [options]
| Option | Description | | Option | Description |
| -------- | ------------- | | --- | --- |
| -v | Verbose | | -v | Verbose |
``` bash ``` bash
lspci -v lspci -v
``` ```
### sudo
``` bash
apt install sudo
```
ad user to sudo group:
```bash
sudo usermod -aG sudo mf
```