Das Ubuntu-Terminal: Teil 1: Navigation & System-Infos

-

Letztes Update am Sa., 19 Sep. 2026 10:52:26 +0200 von Andreas Potthoff

Inhaltsverzeichnis

Verzeichnisstruktur & Navigation

pwd

Vollständigen Pfadnamen des aktuellen Arbeitsverzeichnisses anzeigen

Wenn du dich im Terminal bewegst, verliert man ohne visuelle Ordner-Fenster schnell die Orientierung. Der Befehl pwd (Print Working Directory) wirft dir sofort deinen exakten, absoluten Standort im Dateisystem aus. So weißt du immer, ob du dich in deinem Benutzerordner oder tief in den Systemkonfigurationen befindest.

andreas@NUC6CAYH:~$ pwd
/home/andreas

cd

Das Arbeitsverzeichnis der Shell ändern

Mit cd (Change Directory) wechselst du fliegend zwischen den Verzeichnissen deines Systems. Wenn du den Befehl ohne zusätzlichen Pfad eingibst, springst du automatisch in dein persönliches Heimatverzeichnis (~).

Wichtige Parameter / Shortcuts:

  • cd Ordnername – Wechselt direkt in den angegebenen Unterordner.
  • cd .. – Wandert genau eine Verzeichnisebene nach oben.
  • cd / – Bringt dich direkt an die oberste Wurzel (Root) des Linux-Dateisystems.
andreas@NUC6CAYH:~$ ls -a
.   .bash_history  .bashrc  .config  .local    .ssh    Dokumente  Musik         Videos    snap
..  .bash_logout   .cache   .gnupg   .profile  Bilder  Downloads  Schreibtisch  Vorlagen  Öffentlich
andreas@NUC6CAYH:~$ cd Bilder
andreas@NUC6CAYH:~/Bilder$ ls -a
.  ..
andreas@NUC6CAYH:~/Bilder$ cd ..
andreas@NUC6CAYH:~$ ls -a
.   .bash_history  .bashrc  .config  .local    .ssh    Dokumente  Musik         Videos    snap
..  .bash_logout   .cache   .gnupg   .profile  Bilder  Downloads  Schreibtisch  Vorlagen  Öffentlich
andreas@NUC6CAYH:~$

ls

Verzeichnisinhalt auflisten

Der Befehl ls (List) ist das Gegenstück zum Öffnen eines Ordnerfensters. Er zeigt dir alle sichtbaren Dateien und Ordner an deinem aktuellen Standort.

andreas@NUC6CAYH:~$ ls
Bilder  Dokumente  Downloads  Musik  Schreibtisch  Videos  Vorlagen  snap  Öffentlich

Verzeichnisinhalt auflisten detailliert

Mit der Parameter-Kombination -lh wechselt das Terminal in die Langansicht (-l) und gibt die Dateigrößen in lesbaren Einheiten (-h für human-readable, z. B. Kilobyte oder Megabyte) aus. Hier siehst du auch die Linux-Dateiberechtigungen (z. B. drwxr-xr-x), den Besitzer und das Änderungsdatum.

andreas@NUC6CAYH:~$ ls -lh
total 36K
drwxr-xr-x 2 andreas andreas 4.0K Aug 30 18:44 Bilder
drwxr-xr-x 2 andreas andreas 4.0K Aug 30 18:44 Dokumente
drwxr-xr-x 2 andreas andreas 4.0K Aug 31 19:23 Downloads
drwxr-xr-x 2 andreas andreas 4.0K Aug 30 18:44 Musik
drwxr-xr-x 2 andreas andreas 4.0K Aug 30 18:44 Schreibtisch
drwxr-xr-x 2 andreas andreas 4.0K Aug 30 18:44 Videos
drwxr-xr-x 2 andreas andreas 4.0K Aug 30 18:44 Vorlagen
drwx------ 8 andreas andreas 4.0K Aug 31 18:37 snap
drwxr-xr-x 2 andreas andreas 4.0K Aug 30 18:44 Öffentlich

Verzeichnisinhalt auflisten detailliert mit versteckten Verzeichnissen

Wenn du das Flag -a (All) anhängst, enthüllt Linux alle versteckten Dateien und Konfigurationsordner, die standardmäßig mit einem Punkt beginnen (wie .bashrc oder .config). Die Kurzschreibweise -lha kombiniert die detaillierte Langansicht mit der Sichtbarkeit aller versteckten Elemente.

andreas@NUC6CAYH:~$ ls -lha
total 84K
drwxr-x--- 16 andreas andreas 4.0K Aug 31 14:00 .
drwxr-xr-x  3 root    root    4.0K Aug 30 18:34 ..
-rw-------  1 andreas andreas 4.1K Sep 15 21:10 .bash_history
-rw-r--r--  1 andreas andreas  220 Feb 13  2026 .bash_logout
-rw-r--r--  1 andreas andreas 3.7K Feb 13  2026 .bashrc
drwx------ 15 andreas andreas 4.0K Sep 13 09:15 .cache
drwx------ 16 andreas andreas 4.0K Sep 13 08:48 .config
drwx------  2 andreas andreas 4.0K Sep 13 23:38 .gnupg
drwx------  4 andreas andreas 4.0K Aug 30 18:44 .local
-rw-r--r--  1 andreas andreas  807 Feb 13  2026 .profile
drwx------  2 andreas andreas 4.0K Aug 30 18:43 .ssh
drwxr-xr-x  2 andreas andreas 4.0K Aug 30 18:44 Bilder
drwxr-xr-x  2 andreas andreas 4.0K Aug 30 18:44 Dokumente
drwxr-xr-x  2 andreas andreas 4.0K Aug 31 19:23 Downloads
drwxr-xr-x  2 andreas andreas 4.0K Aug 30 18:44 Musik
drwxr-xr-x  2 andreas andreas 4.0K Aug 30 18:44 Schreibtisch
drwxr-xr-x  2 andreas andreas 4.0K Aug 30 18:44 Videos
drwxr-xr-x  2 andreas andreas 4.0K Aug 30 18:44 Vorlagen
drwx------  8 andreas andreas 4.0K Aug 31 18:37 snap
drwxr-xr-x  2 andreas andreas 4.0K Aug 30 18:44 Öffentlich

Systeminformationen

Betriebssystem

lsb_release

Betriebssystem Distribution anzeigen

Während der Kernel das unsichtbare Herz des Systems ist, bestimmt die Distribution die Werkzeuge und die Oberfläche. Mit diesen Befehlen weist sich dein System exakt aus:

Der offizielle „Ausweis“ deines Systems. Er verrät dir die genaue Ubuntu-Versionsnummer und den offiziellen Codenamen (z. B. resolute).

andreas@NUC6CAYH:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 26.04.1 LTS
Release:        26.04
Codename:       resolute

Betriebssystem Release anzeigen – Systemdatei: os-release

Die universelle Systemdatei. Dieser Befehl liest die standardisierten Identifikationsdaten direkt aus dem Systemkern.

andreas@NUC6CAYH:~$ cat /etc/os-release
PRETTY_NAME="Ubuntu 26.04.1 LTS"
NAME="Ubuntu"
VERSION_ID="26.04"
VERSION="26.04.1 LTS (Resolute Raccoon)"
VERSION_CODENAME=resolute
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=resolute
LOGO=ubuntu-logo

uptime

Systemlaufzeit, Online-Users und Auslastung anzeigen

Der Standardbefehl uptime liefert Admins eine schnelle Drei-in-Eins-Statusmeldung: Die aktuelle Uhrzeit, die exakte Laufzeit seit dem letzten Systemstart, die Anzahl der aktiv eingeloggten Terminal-Sitzungen und die Systemauslastung (Load Average) der letzten 1, 5 und 15 Minuten.

andreas@NUC6CAYH:~$ uptime
 21:15:53 up 12:04,  2 users,  load average: 0,00, 0,00, 0,00

Letzter Systemstart mit Datum und Zeit anzeigen

Der Parameter -s (Since) isoliert den genauen Zeitpunkt, an dem die Maschine hochgefahren wurde. Das ist extrem nützlich, wenn du Protokolle abgleichst und wissen willst, ob nach einem Stromausfall oder Update ein automatischer Reboot stattgefunden hat.

andreas@NUC6CAYH:~$ uptime -s
2026-09-13 09:11:45

Betriebszeit in ansehnlichem Format anzeigen

Wenn du auf die unübersichtlichen Last-Werte verzichten willst, gibt dir der Parameter -p (Pretty) die nackte Laufzeit in einem leicht verständlichen, lesbaren Textformat aus.


andreas@NUC6CAYH:~$ uptime -p
up 12 hours, 5 minutes

Kernel

uname

Kernel-Name anzeigen

Ein einfacher Aufruf von uname liefert dir das grundlegende Betriebssystem-Fundament zurück – im Regelfall schlicht „Linux“.

andreas@NUC6CAYH:~$ uname
Linux

Kernel, Versionen, Node, Machine anzeigen

Mit dem Parameter -a (All) zieht der Befehl blank: Er gibt dir die komplette System-Identifikation aus. Dazu gehören der Hostname, die genaue Version und das Kompilierungsdatum des Linux-Kernels sowie die Prozessorarchitektur (z. B. x86_64).

andreas@NUC6CAYH:~$ uname -a
Linux NUC6CAYH 7.0.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Aug  1 04:26:38 UTC 2026 x86_64 GNU/Linux

lsmod

Status der Module im Linux-Kernel anzeigen

Linux hält seinen Kernel schlank, indem es Treiber und Funktionen als dynamische Module lädt. lsmod (List Modules) zeigt dir in Echtzeit an, welche Kernel-Treiber (z. B. für Grafik, Sound oder Dateisysteme) gerade aktiv im Arbeitsspeicher geladen sind.


andreas@NUC6CAYH:~$ lsmod
Module                  Size  Used by
xt_recent              24576  0
xt_conntrack           12288  0
nf_conntrack          196608  1 xt_conntrack
nf_defrag_ipv6         24576  1 nf_conntrack
nf_defrag_ipv4         12288  1 nf_conntrack
nft_compat             20480  0
x_tables               65536  3 xt_conntrack,nft_compat,xt_recent
nf_tables             409600  1 nft_compat
nfnetlink              20480  2 nft_compat,nf_tables
rfcomm                110592  4
snd_seq_dummy          12288  0
snd_hrtimer            12288  1
snd_hda_codec_intelhdmi    24576  1
snd_hda_codec_hdmi     65536  1 snd_hda_codec_intelhdmi
snd_hda_codec_alc269   151552  1
snd_hda_codec_realtek_lib    65536  1 snd_hda_codec_alc269
snd_hda_scodec_component    20480  1 snd_hda_codec_alc269
snd_hda_codec_generic   126976  2 snd_hda_codec_realtek_lib,snd_hda_codec_alc269
snd_hda_intel          65536  1
snd_sof_pci_intel_apl    12288  0
snd_sof_intel_hda_generic    40960  1 snd_sof_pci_intel_apl
cmac                   12288  3
algif_hash             20480  1
soundwire_intel        86016  1 snd_sof_intel_hda_generic
algif_skcipher         12288  1
af_alg                 32768  6 algif_hash,algif_skcipher
snd_sof_intel_hda_sdw_bpt    20480  1 soundwire_intel
bnep                   32768  2
snd_sof_intel_hda_common   200704  3 snd_sof_intel_hda_sdw_bpt,snd_sof_intel_hda_generic,snd_sof_pci_intel_apl
snd_soc_hdac_hda       20480  1 snd_sof_intel_hda_common
snd_sof_intel_hda_mlink    45056  4 snd_sof_intel_hda_sdw_bpt,soundwire_intel,snd_sof_intel_hda_common,snd_sof_intel_hda_generic
snd_sof_intel_hda      24576  2 snd_sof_intel_hda_common,snd_sof_intel_hda_generic
soundwire_cadence      53248  1 soundwire_intel
snd_sof_pci            24576  2 snd_sof_intel_hda_generic,snd_sof_pci_intel_apl
snd_sof_xtensa_dsp     12288  1 snd_sof_intel_hda_generic
snd_sof               438272  5 snd_sof_intel_hda_sdw_bpt,snd_sof_pci,snd_sof_intel_hda_common,snd_sof_intel_hda_generic,snd_sof_intel_hda
snd_sof_utils          16384  1 snd_sof
snd_soc_acpi_intel_match   147456  2 snd_sof_intel_hda_generic,snd_sof_pci_intel_apl
intel_rapl_msr         20480  0
snd_soc_acpi_intel_sdca_quirks    12288  1 snd_soc_acpi_intel_match
soundwire_generic_allocation    24576  1 soundwire_intel
intel_rapl_common      57344  1 intel_rapl_msr
snd_soc_sdw_utils     126976  1 snd_sof_intel_hda_generic
snd_soc_acpi           16384  2 snd_soc_acpi_intel_match,snd_sof_intel_hda_generic
intel_pmc_bxt          16384  0
intel_telemetry_pltdrv    16384  0
soundwire_bus        1183744  4 soundwire_intel,snd_soc_sdw_utils,soundwire_generic_allocation,soundwire_cadence
intel_punit_ipc        12288  1 intel_telemetry_pltdrv
intel_telemetry_core    16384  1 intel_telemetry_pltdrv
snd_soc_sdca          126976  2 snd_soc_acpi_intel_sdca_quirks,soundwire_bus
x86_pkg_temp_thermal    20480  0
coretemp               24576  0
crc8                   12288  1 soundwire_cadence
snd_soc_avs           233472  0
btusb                  81920  0
kvm_intel             552960  0
snd_soc_hda_codec      24576  1 snd_soc_avs
snd_hda_ext_core       32768  7 snd_sof_intel_hda_sdw_bpt,snd_soc_avs,snd_soc_hda_codec,snd_sof_intel_hda_common,snd_soc_hdac_hda,snd_sof_intel_hda_mlink,snd_sof_intel_hda
btmtk                  36864  1 btusb
cmdlinepart            16384  0
btrtl                  36864  1 btusb
iwlmvm                868352  0
snd_hda_codec         212992  10 snd_hda_codec_generic,snd_soc_avs,snd_hda_codec_hdmi,snd_soc_hda_codec,snd_hda_intel,snd_hda_codec_realtek_lib,snd_soc_hdac_hda,snd_hda_codec_alc269,snd_sof_intel_hda,snd_hda_codec_intelhdmi
btbcm                  24576  1 btusb
spi_nor               180224  1
snd_hda_core          151552  13 snd_hda_codec_generic,snd_soc_avs,snd_hda_codec_hdmi,snd_soc_hda_codec,snd_hda_intel,snd_hda_ext_core,snd_hda_codec,snd_sof_intel_hda_common,snd_hda_codec_realtek_lib,snd_soc_hdac_hda,snd_hda_codec_alc269,snd_sof_intel_hda,snd_hda_codec_intelhdmi
snd_intel_dspcfg       45056  5 snd_soc_avs,snd_hda_intel,snd_sof,snd_sof_intel_hda_common,snd_sof_intel_hda_generic
mtd                   106496  5 spi_nor,cmdlinepart
at24                   32768  0
kvm                  1527808  1 kvm_intel
btintel                69632  1 btusb
snd_intel_sdw_acpi     16384  2 snd_intel_dspcfg,snd_sof_intel_hda_generic
mac80211             1933312  1 iwlmvm
spi_intel_platform     12288  1
irqbypass              16384  1 kvm
rapl                   20480  0
spi_intel              36864  1 spi_intel_platform
snd_hwdep              24576  1 snd_hda_codec
i2c_i801               36864  0
i2c_smbus              20480  1 i2c_i801
qrtr                   53248  2
mei_pxp                16384  0
mei_hdcp               28672  0
intel_cstate           20480  0
bluetooth            1134592  34 btrtl,btmtk,btintel,btbcm,bnep,btusb,rfcomm
wmi_bmof               12288  0
lpc_ich                32768  0
i2c_mux                20480  1 i2c_i801
snd_soc_core          446464  8 snd_soc_avs,snd_soc_hda_codec,soundwire_intel,snd_sof,snd_soc_sdca,snd_sof_intel_hda_common,snd_soc_sdw_utils,snd_soc_hdac_hda
libarc4                12288  1 mac80211
snd_compress           40960  2 snd_soc_avs,snd_soc_core
ac97_bus               12288  1 snd_soc_core
iwlwifi               655360  1 iwlmvm
snd_pcm_dmaengine      20480  1 snd_soc_core
i915                 5099520  29
snd_pcm               208896  14 snd_soc_avs,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,soundwire_intel,snd_sof,snd_soc_sdca,snd_sof_intel_hda_common,snd_compress,snd_sof_intel_hda_generic,snd_soc_core,snd_sof_utils,snd_hda_core,snd_pcm_dmaengine
binfmt_misc            24576  1
r8169                 151552  0
cfg80211             1548288  3 iwlmvm,iwlwifi,mac80211
realtek                57344  1
intel_xhci_usb_role_switch    12288  0
drm_buddy              28672  1 i915
ttm                   135168  1 i915
snd_seq_midi           24576  0
snd_seq_midi_event     16384  1 snd_seq_midi
nls_iso8859_1          12288  1
snd_rawmidi            57344  1 snd_seq_midi
drm_display_helper    303104  1 i915
snd_seq               126976  9 snd_seq_midi,snd_seq_midi_event,snd_seq_dummy
intel_pmc_core        151552  0
pmt_telemetry          16384  1 intel_pmc_core
cec                   106496  2 drm_display_helper,i915
snd_seq_device         16384  3 snd_seq,snd_seq_midi,snd_rawmidi
snd_timer              53248  3 snd_seq,snd_hrtimer,snd_pcm
rc_core                81920  1 cec
snd                   147456  21 snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_sof,snd_soc_sdca,snd_timer,snd_hda_codec_realtek_lib,snd_compress,snd_soc_sdw_utils,snd_hda_codec_alc269,snd_soc_core,snd_pcm,snd_rawmidi
pmt_discovery          24576  1 pmt_telemetry
mei_me                 61440  2
pmt_class              20480  2 pmt_telemetry,pmt_discovery
intel_pmc_ssram_telemetry    16384  1 intel_pmc_core
soundcore              16384  1 snd
mei                   184320  5 mei_hdcp,mei_pxp,mei_me
i2c_algo_bit           16384  1 i915
intel_vsec             24576  2 intel_pmc_ssram_telemetry,pmt_telemetry
input_leds             12288  0
mac_hid                12288  0
sch_fq_codel           28672  2
efi_pstore             12288  0
spi_pxa2xx_platform    12288  0
dw_dmac                12288  0
dw_dmac_core           40960  1 dw_dmac
spi_pxa2xx_core        32768  1 spi_pxa2xx_platform
8250_dw                20480  0
rtsx_pci_sdmmc         36864  0
intel_lpss_pci         28672  6
intel_lpss             12288  1 intel_lpss_pci
ghash_clmulni_intel    12288  0
video                  77824  1 i915
idma64                 20480  0
rtsx_pci              143360  1 rtsx_pci_sdmmc
ahci                   53248  2
libahci                57344  1 ahci
wmi                    36864  2 video,wmi_bmof
pinctrl_broxton        40960  0
psmouse               225280  0
serio_raw              20480  0
uas                    32768  3
usb_storage            86016  1 uas
hid_generic            12288  0
usbhid                 86016  0
hid                   282624  3 usbhid,snd_soc_sdca,hid_generic
ppdev                  24576  0
lp                     32768  0
parport                81920  2 lp,ppdev
msr                    12288  0
dmi_sysfs              28672  0
autofs4                61440  2
aesni_intel            98304  1

CPU

lscpu

Informationen zur CPU-Architektur ausgeben

Du willst wissen, welcher Prozessor in deinem System taktet? lscpu liest die CPU-Daten direkt aus den Systemarchiven aus und zeigt dir Kerne, Threads, Cache-Größen sowie integrierte Sicherheits-Patches gegen CPU-Schachstellen an.

andreas@NUC6CAYH:~$ lscpu
Architektur:                       x86_64
  CPU Operationsmodus:             32-bit, 64-bit
  Adressgrößen:                    39 bits physical, 48 bits virtual
  Byte-Reihenfolge:                Little Endian
CPU(s):                            4
  Liste der Online-CPU(s):         0-3
Anbieterkennung:                   GenuineIntel
  Modellname:                      Intel(R) Celeron(R) CPU J3455 @ 1.50GHz
    Prozessorfamilie:              6
    Modell:                        92
    Thread(s) pro Kern:            1
    Kern(e) pro Sockel:            4
    Sockel:                        1
    Stepping:                      9
    Skalierung der CPU(s):         67%
    Maximale Taktfrequenz der CPU: 2300,0000
    Minimale Taktfrequenz der CPU: 800,0000
    BogoMIPS:                      2995,20
    Markierungen:                  fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat
                                    pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx
                                    pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_goo
                                   d nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_kn
                                   own_freq pni pclmulqdq dtes64 ds_cpl vmx est tm2 ssse3 sdbg cx16
                                   xtpr pdcm sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer ae
                                   s xsave rdrand lahf_lm 3dnowprefetch cpuid_fault cat_l2 ibrs ibpb
                                    stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjus
                                   t smep erms mpx rdt_a rdseed smap clflushopt intel_pt sha_ni xsav
                                   eopt xsavec xgetbv1 xsaves dtherm ida arat pln pts vnmi md_clear
                                   arch_capabilities
Virtualisierungsfunktionen:
  Virtualisierung:                 VT-x
Caches (Gesamtsumme):
  L1d:                             96 KiB (4 Instanzen)
  L1i:                             128 KiB (4 Instanzen)
  L2:                              2 MiB (2 Instanzen)
NUMA:
  NUMA-Knoten:                     1
  NUMA-Knoten0 CPU(s):             0-3
Schwachstellen:
  Gather data sampling:            Not affected
  Ghostwrite:                      Not affected
  Indirect target selection:       Not affected
  Itlb multihit:                   Not affected
  L1tf:                            Not affected
  Mds:                             Not affected
  Meltdown:                        Not affected
  Mmio stale data:                 Not affected
  Old microcode:                   Not affected
  Reg file data sampling:          Vulnerable: No microcode
  Retbleed:                        Not affected
  Spec rstack overflow:            Not affected
  Spec store bypass:               Not affected
  Spectre v1:                      Mitigation; usercopy/swapgs barriers and __user pointer sanitizat
                                   ion
  Spectre v2:                      Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP disabled
                                   ; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
  Srbds:                           Not affected
  Tsa:                             Not affected
  Tsx async abort:                 Not affected
  Vmscape:                         Not affected

Ein erweitertes lesbares CPU-Architektur Format anzeigen

Der Parameter -e (Extended) bereitet die CPU-Daten tabellarisch auf. Er listet jeden CPU-Kern einzeln auf und zeigt dir live die minimale, maximale und aktuell anliegende Taktfrequenz in Megahertz (MHz) an. Perfekt, um das Energiespar-Verhalten deines NUCs zu prüfen!

andreas@NUC6CAYH:~$ lscpu -e
CPU NODE SOCKET CORE L1d:L1i:L2 ONLINE    MAXMHZ   MINMHZ       MHZ
  0    0      0    0 0:0:0          ja 2300,0000 800,0000 1233,0410
  1    0      0    1 2:2:0          ja 2300,0000 800,0000  898,5690
  2    0      0    2 4:4:1          ja 2300,0000 800,0000  940,7370
  3    0      0    3 6:6:1          ja 2300,0000 800,0000  998,4000

Speicher

free

Anzeige des freien und belegten Speichers

RAM ist durch nichts zu ersetzen – außer durch noch mehr RAM. Um zu prüfen, ob dein Ubuntu-System flüssig atmen kann oder der Speicher am Limit kratzt, nutzt du diese beiden Werkzeuge:

Die perfekte Alltagsübersicht. Sie zeigt dir auf einen Blick den physischen Arbeitsspeicher und den Auslagerungsspeicher (Swap) in leicht lesbaren Gigabytes (Gi).

andreas@NUC6CAYH:~$ free -hltv
               gesamt       benutzt     frei      gemns.  Puffer/Cache verfügbar
Speicher:       14Gi       930Mi        13Gi        52Mi       1,3Gi        14Gi
Niedrig :       14Gi       1,8Gi        13Gi
Hoch    :         0B          0B          0B
Auslager:      4,0Gi          0B       4,0Gi
Gesamt  :       18Gi       930Mi        17Gi
Comm:           11Gi       2,9Gi       8,6Gi

Speicherbelegung anzeigen – Systemdatei: meminfo

Der absolute Deep-Dive für Administratoren. Hier listet der Kernel bytegenau auf, wie viel Speicher für Puffer, Cache oder aktive Prozesse reserviert ist.

andreas@NUC6CAYH:~$ cat /proc/meminfo
MemTotal:       15692696 kB
MemFree:        13763752 kB
MemAvailable:   14739496 kB
Buffers:          183708 kB
Cached:          1073780 kB
SwapCached:            0 kB
Active:           904528 kB
Inactive:         647704 kB
Active(anon):     348692 kB
Inactive(anon):        0 kB
Active(file):     555836 kB
Inactive(file):   647704 kB
Unevictable:       45328 kB
Mlocked:               0 kB
SwapTotal:       4194300 kB
SwapFree:        4194300 kB
Zswap:                 0 kB
Zswapped:              0 kB
Dirty:                 4 kB
Writeback:             0 kB
AnonPages:        340296 kB
Mapped:           263980 kB
Shmem:             54172 kB
KReclaimable:      58904 kB
Slab:             180596 kB
SReclaimable:      58904 kB
SUnreclaim:       121692 kB
KernelStack:        7744 kB
PageTables:        13600 kB
SecPageTables:      2680 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    12040648 kB
Committed_AS:    3022564 kB
VmallocTotal:   34359738367 kB
VmallocUsed:       43744 kB
VmallocChunk:          0 kB
Percpu:             3632 kB
HardwareCorrupted:     0 kB
AnonHugePages:         0 kB
ShmemHugePages:    38912 kB
ShmemPmdMapped:        0 kB
FileHugePages:         0 kB
FilePmdMapped:         0 kB
CmaTotal:              0 kB
CmaFree:               0 kB
Unaccepted:            0 kB
Balloon:               0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:               0 kB
DirectMap4k:      201976 kB
DirectMap2M:     3837952 kB
DirectMap1G:    14680064 kB

Hardware

Wenn du wissen willst, welches Mainboard oder welche exakten RAM-Riegel auf deiner Platine verbaut sind, liefert dir lshw (List Hardware) die Antwort.

lshw

Kompakte Informationen zur Hardwarekonfiguration der Maschine

Wenn du wissen willst, welches Mainboard oder welche exakten RAM-Riegel auf deiner Platine verbaut sind, liefert dir lshw (List Hardware) die Antwort. Da der Befehl tief in die Hardware-Register greift, solltest du ihn immer mit Administratorrechten (sudo) ausführen.

Wichtiger Profi-Tipp: Nutze unbedingt den Parameter sudo lshw -short. Ohne das -short wirst du von einer kilometerlangen Textwand erschlagen. Mit dem Parameter wird deine Hardware zu einer sauberen, perfekt scannbaren Tabelle zusammengefasst.

andreas@NUC6CAYH:~$ sudo lshw -short
[sudo: authenticate] Passwort:
H/W-Pfad               Gerät     Klasse         Beschreibung
=============================================================
                                  system         NUC6CAYH
/0                                bus            NUC6CAYB
/0/0                              memory         64KiB BIOS
/0/2e                             memory         16GiB Systemspeicher
/0/2e/0                           memory         8GiB SODIMM DDR3 Synchron 1600 MHz (0,6 ns)
/0/2e/1                           memory         8GiB SODIMM DDR3 Synchron 1600 MHz (0,6 ns)
/0/32                             memory         224KiB L1 Cache
/0/33                             memory         2MiB L2 Cache
/0/34                             processor      Intel(R) Celeron(R) CPU J3455 @ 1.50GHz
/0/100                            bridge         Celeron N3350/Pentium N4200/Atom E3900 Series Host
/0/100/2               /dev/fb0   display        Apollo Lake GT1 [HD Graphics 500]
/0/100/e               card0      multimedia     Celeron N3350/Pentium N4200/Atom E3900 Series Audio
/0/100/e/0             input10    input          HDA Intel PCH Headphone Front
/0/100/e/1             input11    input          HDA Intel PCH Front Headphone Surround
/0/100/e/2             input12    input          HDA Intel PCH HDMI/DP,pcm=3
/0/100/e/3             input13    input          HDA Intel PCH HDMI/DP,pcm=7
/0/100/e/4             input14    input          HDA Intel PCH HDMI/DP,pcm=8
/0/100/e/5             input9     input          HDA Intel PCH Mic
/0/100/f                          communication  Celeron N3350/Pentium N4200/Atom E3900 Series Trust
/0/100/12              scsi1      storage        Celeron N3350/Pentium N4200/Atom E3900 Series SATA
/0/100/12/0.0.0        /dev/sdb   disk           250GB SanDisk SDSSDH32
/0/100/12/0.0.0/1      /dev/sdb1  volume         231GiB EXT4-Laufwerk
/0/100/12/0.0.0/2      /dev/sdb2  volume         1074MiB Windows FAT Laufwerk
/0/100/13                         bridge         Celeron N3350/Pentium N4200/Atom E3900 Series PCI E
/0/100/13/0            mmc0       bus            RTS5229 PCI Express Card Reader
/0/100/13.1                       bridge         Celeron N3350/Pentium N4200/Atom E3900 Series PCI E
/0/100/13.1/0          wlp2s0     network        Dual Band Wireless-AC 3168NGW [Stone Peak]
/0/100/13.2                       bridge         Celeron N3350/Pentium N4200/Atom E3900 Series PCI E
/0/100/13.2/0          enp3s0     network        RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet
/0/100/15                         bus            Celeron N3350/Pentium N4200/Atom E3900 Series USB x
/0/100/15/0            usb1       bus            xHCI Host Controller
/0/100/15/0/3                     bus            USB2.0 Hub
/0/100/15/0/3/3        input5     input          Logitech USB Optical Mouse
/0/100/15/0/3/4        input6     input          DELL Dell QuietKey Keyboard
/0/100/15/0/8                     communication  Wireless-AC 3168 Bluetooth
/0/100/15/1            usb2       bus            xHCI Host Controller
/0/100/15/1/4          scsi0      storage        Expansion SW
/0/100/15/1/4/0.0.0    /dev/sda   disk           5TB Expansion SW
/0/100/15/1/4/0.0.0/1  /dev/sda1  volume         29GiB EXT4-Laufwerk
/0/100/15/1/4/0.0.0/2  /dev/sda2  volume         476GiB EXT4-Laufwerk
/0/100/15/1/4/0.0.0/3  /dev/sda3  volume         4150GiB EXT4-Laufwerk
/0/100/16                         generic        Celeron N3350/Pentium N4200/Atom E3900 Series I2C C
/0/100/18                         generic        Celeron N3350/Pentium N4200/Atom E3900 Series HSUAR
/0/100/19                         generic        Celeron N3350/Pentium N4200/Atom E3900 Series SPI C
/0/100/19.1                       generic        Celeron N3350/Pentium N4200/Atom E3900 Series SPI C
/0/100/19.2                       generic        Celeron N3350/Pentium N4200/Atom E3900 Series SPI C
/0/100/1a                         bus            Celeron N3350/Pentium N4200/Atom E3900 Series PWM P
/0/100/1f                         bridge         Celeron N3350/Pentium N4200/Atom E3900 Series Low P
/0/100/1f/0                       system         PnP device PNP0b00
/0/100/1f.1                       bus            Celeron N3350/Pentium N4200/Atom E3900 Series SMBus
/1                     input0     input          Power Button
/2                     input1     input          Sleep Button
/3                     input2     input          Power Button
/4                     input3     input          AT Raw Set 2 keyboard
/5                     input8     input          Video Bus

Detaillierte Informationen zur Hardwarekonfiguration der Maschine

Wenn du den Befehl sudo lshw ohne das -short-Flag ausführst, schaltet Linux in den Vollmodus. Hier listet das System für jede einzelne Komponente tiefste technische Details wie Seriennummern, Bus-Informationen, vergebene IRQ-Interrupts und die genaue BIOS-Firmware-Version (z. B. AYAPLCEL.86A) auf. Perfekt, wenn du exakte Spezifikationen für ein Hardware-Upgrade suchst.

andreas@NUC6CAYH:~$ sudo lshw
nuc6cayh
    Beschreibung: Mini PC
    Produkt: NUC6CAYH
    Hersteller: Intel(R) Client Systems
    Version: J26843-411
    Seriennummer: G6AY050003T8
    Breite: 64 bits
    Fähigkeiten: smbios-3.0.0 dmi-3.0.0 smp vsyscall32
    Konfiguration: boot=normal chassis=mini family=AY uuid=5badd3e1-642b-5f24-1b5f-1c697aa0efcc
  *-core
       Beschreibung: Hauptplatine
       Produkt: NUC6CAYB
       Hersteller: Intel Corporation
       Physische ID: 0
       Version: J23203-410
       Seriennummer: GEAY04800J9B
       Steckplatz: Default string
     *-firmware
          Beschreibung: BIOS
          Hersteller: Intel Corp.
          Physische ID: 0
          Version: AYAPLCEL.86A.0071.2021.1208.1638
          date: 12/08/2021
          Größe: 64KiB
          Kapazität: 16MiB
          Fähigkeiten: pci upgrade shadowing cdboot bootselect socketedrom edd int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int14serial int17printer acpi usb biosbootspecification uefi
     *-memory
          Beschreibung: Systemspeicher
          Physische ID: 2e
          Steckplatz: Systemplatine oder Hauptplatine
          Größe: 16GiB
        *-bank:0
             Beschreibung: SODIMM DDR3 Synchron 1600 MHz (0,6 ns)
             Produkt: CT102464BF160B.C16
             Hersteller: Unde
             Physische ID: 0
             Seriennummer: E08BB363
             Steckplatz: ChannelA-DIMM0
             Größe: 8GiB
             Breite: 64 bits
             Takt: 1600MHz (0.6ns)
        *-bank:1
             Beschreibung: SODIMM DDR3 Synchron 1600 MHz (0,6 ns)
             Produkt: CT102464BF160B.C16
             Hersteller: Unde
             Physische ID: 1
             Seriennummer: E08BB363
             Steckplatz: ChannelB-DIMM0
             Größe: 8GiB
             Breite: 64 bits
             Takt: 1600MHz (0.6ns)
     *-cache:0
          Beschreibung: L1 Cache
          Physische ID: 32
          Steckplatz: CPU Internal L1
          Größe: 224KiB
          Kapazität: 224KiB
          Fähigkeiten: synchronous internal write-back
          Konfiguration: level=1
     *-cache:1
          Beschreibung: L2 Cache
          Physische ID: 33
          Steckplatz: CPU Internal L2
          Größe: 2MiB
          Kapazität: 2MiB
          Fähigkeiten: synchronous internal write-back unified
          Konfiguration: level=2
     *-cpu
          Beschreibung: CPU
          Produkt: Intel(R) Celeron(R) CPU J3455 @ 1.50GHz
          Hersteller: Intel Corp.
          Physische ID: 34
          Bus-Informationen: cpu@0
          Version: 6.92.9
          Steckplatz: SOCKET 0
          Größe: 2196MHz
          Kapazität: 2300MHz
          Breite: 64 bits
          Takt: 100MHz
          Fähigkeiten: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 ds_cpl vmx est tm2 ssse3 sdbg cx16 xtpr pdcm sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave rdrand lahf_lm 3dnowprefetch cpuid_fault cat_l2 ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust smep erms mpx rdt_a rdseed smap clflushopt intel_pt sha_ni xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts vnmi md_clear arch_capabilities cpufreq
          Konfiguration: cores=4 enabledcores=4 microcode=72 threads=4
     *-pci
          Beschreibung: Host bridge
          Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series Host Bridge
          Hersteller: Intel Corporation
          Physische ID: 100
          Bus-Informationen: pci@0000:00:00.0
          Version: 0b
          Breite: 32 bits
          Takt: 33MHz
        *-display
             Beschreibung: VGA compatible controller
             Produkt: Apollo Lake GT1 [HD Graphics 500]
             Hersteller: Intel Corporation
             Physische ID: 2
             Bus-Informationen: pci@0000:00:02.0
             Logischer Name: /dev/fb0
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pciexpress msi pm vga_controller bus_master cap_list rom fb
             Konfiguration: depth=32 driver=i915 latency=0 mode=1366x768 resolution=1366,768 visual=truecolor xres=1366 yres=768
             Ressourcen: irq:136 memory:90000000-90ffffff memory:80000000-8fffffff ioport:f000(Größe=64) memory:c0000-dffff
        *-multimedia
             Beschreibung: Audio device
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster
             Hersteller: Intel Corporation
             Physische ID: e
             Bus-Informationen: pci@0000:00:0e.0
             Logischer Name: card0
             Logischer Name: /dev/snd/controlC0
             Logischer Name: /dev/snd/hwC0D0
             Logischer Name: /dev/snd/hwC0D2
             Logischer Name: /dev/snd/pcmC0D0c
             Logischer Name: /dev/snd/pcmC0D0p
             Logischer Name: /dev/snd/pcmC0D1p
             Logischer Name: /dev/snd/pcmC0D3p
             Logischer Name: /dev/snd/pcmC0D7p
             Logischer Name: /dev/snd/pcmC0D8p
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm msi pciexpress hda_compatible_with_vendor_specific_extensions bus_master cap_list
             Konfiguration: driver=snd_hda_intel latency=0
             Ressourcen: irq:137 memory:91410000-91413fff memory:91000000-910fffff
           *-input:0
                Produkt: HDA Intel PCH Headphone Front
                Physische ID: 0
                Logischer Name: input10
                Logischer Name: /dev/input/event8
           *-input:1
                Produkt: HDA Intel PCH Front Headphone Surround
                Physische ID: 1
                Logischer Name: input11
                Logischer Name: /dev/input/event9
           *-input:2
                Produkt: HDA Intel PCH HDMI/DP,pcm=3
                Physische ID: 2
                Logischer Name: input12
                Logischer Name: /dev/input/event10
           *-input:3
                Produkt: HDA Intel PCH HDMI/DP,pcm=7
                Physische ID: 3
                Logischer Name: input13
                Logischer Name: /dev/input/event11
           *-input:4
                Produkt: HDA Intel PCH HDMI/DP,pcm=8
                Physische ID: 4
                Logischer Name: input14
                Logischer Name: /dev/input/event12
           *-input:5
                Produkt: HDA Intel PCH Mic
                Physische ID: 5
                Logischer Name: input9
                Logischer Name: /dev/input/event7
        *-communication
             Beschreibung: Communication controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series Trusted Execution Engine
             Hersteller: Intel Corporation
             Physische ID: f
             Bus-Informationen: pci@0000:00:0f.0
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm msi bus_master cap_list
             Konfiguration: driver=mei_me latency=0
             Ressourcen: irq:133 memory:91427000-91427fff
        *-sata
             Beschreibung: SATA controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series SATA AHCI Controller
             Hersteller: Intel Corporation
             Physische ID: 12
             Bus-Informationen: pci@0000:00:12.0
             Logischer Name: scsi1
             Version: 0b
             Breite: 32 bits
             Takt: 66MHz
             Fähigkeiten: sata msi pm ahci_1.0 bus_master cap_list emulated
             Konfiguration: driver=ahci latency=0
             Ressourcen: irq:131 memory:91414000-91415fff memory:91424000-914240ff ioport:f090(Größe=8) ioport:f080(Größe=4) ioport:f060(Größe=32) memory:91423000-914237ff
           *-disk
                Beschreibung: ATA Disk
                Produkt: SanDisk SDSSDH32
                Physische ID: 0.0.0
                Bus-Informationen: scsi@1:0.0.0
                Logischer Name: /dev/sdb
                Version: 70RL
                Seriennummer: 202397803271
                Größe: 232GiB (250GB)
                Fähigkeiten: gpt-1.00 partitioned partitioned:gpt
                Konfiguration: ansiversion=5 guid=96231207-0ebc-47b5-a3db-2af169be5de1 logicalsectorsize=512 sectorsize=512
              *-volume:0
                   Beschreibung: EXT4-Laufwerk
                   Hersteller: Linux
                   Physische ID: 1
                   Bus-Informationen: scsi@1:0.0.0,1
                   Logischer Name: /dev/sdb1
                   Logischer Name: /
                   Version: 1.0
                   Seriennummer: 9684d459-4884-457e-b3bf-7fda21789ed3
                   Größe: 231GiB
                   Fähigkeiten: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized
                   Konfiguration: created=2026-08-30 18:26:00 filesystem=ext4 lastmountpoint=/ modified=2026-09-15 18:34:11 mount.fstype=ext4 mount.options=rw,relatime mounted=2026-09-13 09:11:51 state=mounted
              *-volume:1
                   Beschreibung: Windows FAT Laufwerk
                   Hersteller: mkfs.fat
                   Physische ID: 2
                   Bus-Informationen: scsi@1:0.0.0,2
                   Logischer Name: /dev/sdb2
                   Logischer Name: /boot/efi
                   Version: FAT32
                   Seriennummer: 88f7-849e
                   Größe: 1073MiB
                   Kapazität: 1074MiB
                   Fähigkeiten: boot fat initialized
                   Konfiguration: FATs=2 filesystem=fat mount.fstype=vfat mount.options=rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro state=mounted
        *-pci:0
             Beschreibung: PCI bridge
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #1
             Hersteller: Intel Corporation
             Physische ID: 13
             Bus-Informationen: pci@0000:00:13.0
             Version: fb
             Breite: 32 bits
             Takt: 33MHz
             Fähigkeiten: pci pciexpress msi pm normal_decode bus_master cap_list
             Konfiguration: driver=pcieport
             Ressourcen: irq:123 memory:91300000-913fffff
           *-generic
                Beschreibung: MMC Host
                Produkt: RTS5229 PCI Express Card Reader
                Hersteller: Realtek Semiconductor Co., Ltd.
                Physische ID: 0
                Bus-Informationen: pci@0000:01:00.0
                Logischer Name: mmc0
                Version: 01
                Breite: 32 bits
                Takt: 33MHz
                Fähigkeiten: pm msi pciexpress bus_master cap_list
                Konfiguration: driver=rtsx_pci latency=0
                Ressourcen: irq:132 memory:91300000-91300fff
        *-pci:1
             Beschreibung: PCI bridge
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #2
             Hersteller: Intel Corporation
             Physische ID: 13.1
             Bus-Informationen: pci@0000:00:13.1
             Version: fb
             Breite: 32 bits
             Takt: 33MHz
             Fähigkeiten: pci pciexpress msi pm normal_decode bus_master cap_list
             Konfiguration: driver=pcieport
             Ressourcen: irq:124 memory:91200000-912fffff
           *-network
                Beschreibung: Kabellose Verbindung
                Produkt: Dual Band Wireless-AC 3168NGW [Stone Peak]
                Hersteller: Intel Corporation
                Physische ID: 0
                Bus-Informationen: pci@0000:02:00.0
                Logischer Name: wlp2s0
                Version: 10
                Seriennummer: 34:7d:f6:c1:54:4e
                Breite: 64 bits
                Takt: 33MHz
                Fähigkeiten: pm msi pciexpress bus_master cap_list ethernet physical wireless
                Konfiguration: broadcast=yes driver=iwlwifi driverversion=7.0.0-31-generic firmware=29.0bd893f3.0 3168-29.ucode latency=0 link=no multicast=yes wireless=IEEE 802.11
                Ressourcen: irq:135 memory:91200000-91201fff
        *-pci:2
             Beschreibung: PCI bridge
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #3
             Hersteller: Intel Corporation
             Physische ID: 13.2
             Bus-Informationen: pci@0000:00:13.2
             Version: fb
             Breite: 32 bits
             Takt: 33MHz
             Fähigkeiten: pci pciexpress msi pm normal_decode bus_master cap_list
             Konfiguration: driver=pcieport
             Ressourcen: irq:125 ioport:e000(Größe=4096) memory:91100000-911fffff
           *-network
                Beschreibung: Ethernet interface
                Produkt: RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller
                Hersteller: Realtek Semiconductor Co., Ltd.
                Physische ID: 0
                Bus-Informationen: pci@0000:03:00.0
                Logischer Name: enp3s0
                Version: 15
                Seriennummer: 1c:69:7a:a0:ef:cc
                Größe: 1Gbit/s
                Kapazität: 1Gbit/s
                Breite: 64 bits
                Takt: 33MHz
                Fähigkeiten: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
                Konfiguration: autonegotiation=on broadcast=yes driver=r8169 driverversion=7.0.0-31-generic duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=192.168.178.46 latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
                Ressourcen: irq:20 ioport:e000(Größe=256) memory:91104000-91104fff memory:91100000-91103fff
        *-usb
             Beschreibung: USB controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series USB xHCI
             Hersteller: Intel Corporation
             Physische ID: 15
             Bus-Informationen: pci@0000:00:15.0
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm msi xhci bus_master cap_list
             Konfiguration: driver=xhci_hcd latency=0
             Ressourcen: irq:126 memory:91400000-9140ffff
           *-usbhost:0
                Produkt: xHCI Host Controller
                Hersteller: Linux 7.0.0-31-generic xhci-hcd
                Physische ID: 0
                Bus-Informationen: usb@1
                Logischer Name: usb1
                Version: 7.00
                Fähigkeiten: usb-2.00
                Konfiguration: driver=hub slots=8 speed=480Mbit/s
              *-usb:0
                   Beschreibung: USB-Hub
                   Produkt: USB2.0 Hub
                   Hersteller: Genesys Logic, Inc.
                   Physische ID: 3
                   Bus-Informationen: usb@1:3
                   Version: 85.36
                   Fähigkeiten: usb-2.00
                   Konfiguration: driver=hub maxpower=100mA slots=4 speed=480Mbit/s
                 *-usb:0
                      Beschreibung: Maus
                      Produkt: Logitech USB Optical Mouse
                      Hersteller: Logitech
                      Physische ID: 3
                      Bus-Informationen: usb@1:3.3
                      Logischer Name: input5
                      Logischer Name: /dev/input/event4
                      Logischer Name: /dev/input/mouse0
                      Version: 54.00
                      Fähigkeiten: usb-2.00 usb
                      Konfiguration: driver=usbhid maxpower=98mA speed=1Mbit/s
                 *-usb:1
                      Beschreibung: Tastatur
                      Produkt: DELL Dell QuietKey Keyboard
                      Hersteller: DELL
                      Physische ID: 4
                      Bus-Informationen: usb@1:3.4
                      Logischer Name: input6
                      Logischer Name: /dev/input/event5
                      Logischer Name: input6::capslock
                      Logischer Name: input6::numlock
                      Logischer Name: input6::scrolllock
                      Version: 1.01
                      Fähigkeiten: usb-1.10 usb
                      Konfiguration: driver=usbhid maxpower=100mA speed=1Mbit/s
              *-usb:1
                   Beschreibung: Bluetooth-Schnittstelle
                   Produkt: Wireless-AC 3168 Bluetooth
                   Hersteller: Intel Corp.
                   Physische ID: 8
                   Bus-Informationen: usb@1:8
                   Version: 0.01
                   Fähigkeiten: bluetooth usb-2.00
                   Konfiguration: driver=btusb maxpower=100mA speed=12Mbit/s
           *-usbhost:1
                Produkt: xHCI Host Controller
                Hersteller: Linux 7.0.0-31-generic xhci-hcd
                Physische ID: 1
                Bus-Informationen: usb@2
                Logischer Name: usb2
                Version: 7.00
                Fähigkeiten: usb-3.00
                Konfiguration: driver=hub slots=7 speed=5000Mbit/s
              *-usb
                   Beschreibung: Massenspeichergerät
                   Produkt: Expansion SW
                   Hersteller: Seagate
                   Physische ID: 4
                   Bus-Informationen: usb@2:4
                   Logischer Name: scsi0
                   Version: 19.01
                   Seriennummer: 00000000NACD11Q2
                   Fähigkeiten: usb-3.20 scsi
                   Konfiguration: driver=uas maxpower=896mA speed=5000Mbit/s
                 *-disk
                      Beschreibung: SCSI Disk
                      Produkt: Expansion SW
                      Hersteller: Seagate
                      Physische ID: 0.0.0
                      Bus-Informationen: scsi@0:0.0.0
                      Logischer Name: /dev/sda
                      Version: 1901
                      Seriennummer: 00000000NACD11Q2
                      Größe: 4657GiB (5TB)
                      Fähigkeiten: gpt-1.00 partitioned partitioned:gpt
                      Konfiguration: ansiversion=6 guid=b2c0ca9e-9811-4ec1-a10c-742734cd5631 logicalsectorsize=512 sectorsize=4096
                    *-volume:0
                         Beschreibung: EXT4-Laufwerk
                         Hersteller: Linux
                         Physische ID: 1
                         Bus-Informationen: scsi@0:0.0.0,1
                         Logischer Name: /dev/sda1
                         Logischer Name: /run/media/andreas/7076c844-9ce0-433f-b747-b08a98fe3161
                         Version: 1.0
                         Seriennummer: 7076c844-9ce0-433f-b747-b08a98fe3161
                         Größe: 29GiB
                         Fähigkeiten: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized
                         Konfiguration: created=2025-08-23 22:47:03 filesystem=ext4 lastmountpoint=/run/media/andreas/7076c844-9ce0-433f-b747-b08a98fe3161 modified=2026-09-13 23:35:03 mount.fstype=ext4 mount.options=rw,nosuid,nodev,relatime,errors=remount-ro mounted=2026-09-13 23:35:03 state=mounted
                    *-volume:1
                         Beschreibung: EXT4-Laufwerk
                         Hersteller: Linux
                         Physische ID: 2
                         Bus-Informationen: scsi@0:0.0.0,2
                         Logischer Name: /dev/sda2
                         Logischer Name: /run/media/andreas/7c09cdb9-b8ad-4331-86c6-02e6c9bd47eb
                         Version: 1.0
                         Seriennummer: 7c09cdb9-b8ad-4331-86c6-02e6c9bd47eb
                         Größe: 476GiB
                         Fähigkeiten: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized
                         Konfiguration: created=2025-08-23 22:47:06 filesystem=ext4 lastmountpoint=/run/media/andreas/7c09cdb9-b8ad-4331-86c6-02e6c9bd47eb modified=2026-09-13 23:30:37 mount.fstype=ext4 mount.options=rw,nosuid,nodev,relatime,errors=remount-ro mounted=2026-09-13 23:30:37 state=mounted
                    *-volume:2
                         Beschreibung: EXT4-Laufwerk
                         Hersteller: Linux
                         Physische ID: 3
                         Bus-Informationen: scsi@0:0.0.0,3
                         Logischer Name: /dev/sda3
                         Logischer Name: /run/media/andreas/6c709002-4626-476b-b931-5b17a438bc28
                         Version: 1.0
                         Seriennummer: 6c709002-4626-476b-b931-5b17a438bc28
                         Größe: 4150GiB
                         Fähigkeiten: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized
                         Konfiguration: created=2025-08-23 22:47:18 filesystem=ext4 lastmountpoint=/run/media/andreas/6c709002-4626-476b-b931-5b17a438bc28 modified=2026-09-13 23:30:44 mount.fstype=ext4 mount.options=rw,nosuid,nodev,relatime,errors=remount-ro mounted=2026-09-13 23:30:44 state=mounted
        *-generic:0
             Beschreibung: Signal processing controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #1
             Hersteller: Intel Corporation
             Physische ID: 16
             Bus-Informationen: pci@0000:00:16.0
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm bus_master cap_list
             Konfiguration: driver=intel-lpss latency=0
             Ressourcen: irq:27 memory:91422000-91422fff memory:91421000-91421fff
        *-generic:1
             Beschreibung: Signal processing controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #1
             Hersteller: Intel Corporation
             Physische ID: 18
             Bus-Informationen: pci@0000:00:18.0
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm bus_master cap_list
             Konfiguration: driver=intel-lpss latency=0
             Ressourcen: irq:4 memory:91420000-91420fff memory:9141f000-9141ffff
        *-generic:2
             Beschreibung: Signal processing controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #1
             Hersteller: Intel Corporation
             Physische ID: 19
             Bus-Informationen: pci@0000:00:19.0
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm bus_master cap_list
             Konfiguration: driver=intel-lpss latency=0
             Ressourcen: irq:35 memory:9141e000-9141efff memory:9141d000-9141dfff
        *-generic:3
             Beschreibung: Signal processing controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #2
             Hersteller: Intel Corporation
             Physische ID: 19.1
             Bus-Informationen: pci@0000:00:19.1
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm bus_master cap_list
             Konfiguration: driver=intel-lpss latency=0
             Ressourcen: irq:36 memory:9141c000-9141cfff memory:9141b000-9141bfff
        *-generic:4
             Beschreibung: Signal processing controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #3
             Hersteller: Intel Corporation
             Physische ID: 19.2
             Bus-Informationen: pci@0000:00:19.2
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm bus_master cap_list
             Konfiguration: driver=intel-lpss latency=0
             Ressourcen: irq:37 memory:9141a000-9141afff memory:91419000-91419fff
        *-serial:0
             Beschreibung: Serial bus controller
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series PWM Pin Controller
             Hersteller: Intel Corporation
             Physische ID: 1a
             Bus-Informationen: pci@0000:00:1a.0
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Fähigkeiten: pm bus_master cap_list
             Konfiguration: driver=pwm-lpss latency=0
             Ressourcen: irq:-2147483648 memory:91418000-91418fff memory:91417000-91417fff
        *-isa
             Beschreibung: ISA bridge
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series Low Pin Count Interface
             Hersteller: Intel Corporation
             Physische ID: 1f
             Bus-Informationen: pci@0000:00:1f.0
             Version: 0b
             Breite: 32 bits
             Takt: 33MHz
             Fähigkeiten: isa bus_master
             Konfiguration: driver=lpc_ich latency=0
             Ressourcen: irq:0
           *-pnp00:00
                Produkt: PnP device PNP0b00
                Physische ID: 0
                Fähigkeiten: pnp
                Konfiguration: driver=rtc_cmos
        *-serial:1
             Beschreibung: SMBus
             Produkt: Celeron N3350/Pentium N4200/Atom E3900 Series SMBus Controller
             Hersteller: Intel Corporation
             Physische ID: 1f.1
             Bus-Informationen: pci@0000:00:1f.1
             Version: 0b
             Breite: 64 bits
             Takt: 33MHz
             Konfiguration: driver=i801_smbus latency=0
             Ressourcen: irq:-2147483648 memory:91416000-914160ff ioport:f040(Größe=32)
  *-input:0
       Produkt: Power Button
       Physische ID: 1
       Logischer Name: input0
       Logischer Name: /dev/input/event0
       Fähigkeiten: platform
  *-input:1
       Produkt: Sleep Button
       Physische ID: 2
       Logischer Name: input1
       Logischer Name: /dev/input/event1
       Fähigkeiten: platform
  *-input:2
       Produkt: Power Button
       Physische ID: 3
       Logischer Name: input2
       Logischer Name: /dev/input/event2
       Fähigkeiten: platform
  *-input:3
       Produkt: AT Raw Set 2 keyboard
       Physische ID: 4
       Logischer Name: input3
       Logischer Name: /dev/input/event3
       Logischer Name: input3::capslock
       Logischer Name: input3::numlock
       Logischer Name: input3::scrolllock
       Fähigkeiten: i8042
  *-input:4
       Produkt: Video Bus
       Physische ID: 5
       Logischer Name: input8
       Logischer Name: /dev/input/event6
       Fähigkeiten: platform

Block-Geräte

Bevor wir uns anschauen, wie viel Platz auf unseren Speichern frei ist, müssen wir wissen, welche Speicher überhaupt im System verbaut sind. Linux nutzt dafür den Begriff Block-Geräte. Gemeint sind damit alle klassischen Medien, die Daten blockweise speichern.
Dazu gehören:

  • M.2 NVMe SSDs (oft benannt als nvme...)
  • Klassische SATA-Festplatten und SSDs (benannt als sda, sdb…)
  • Angesteckte USB-Sticks oder externe Laufwerke (sdX)
  • Virtuelle Speicher (die sogenannten loop-Geräte (loop0,…) , die Ubuntu gerne für Snap-Apps nutzt)

lsblk

Alle Block-Geräte auflisten

Der Befehl lsblk (List Block Devices) stellt deine Speicherlaufwerke visuell als Baumstruktur dar. Mit dem Parameter -a (All) werden ausnahmslos alle Geräte erfasst – inklusive der virtuellen RAM- und Loop-Geräte, die Ubuntu im Hintergrund für Snap-Applikationen reserviert.

andreas@NUC6CAYH:~$ lsblk -a
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
loop0    7:0    0     4K  1 loop /snap/bare/5
loop1    7:1    0    74M  1 loop /snap/core22/2437
loop2    7:2    0 179,3M  1 loop /snap/chromium/3520
loop3    7:3    0  47,9M  1 loop /snap/cups/1238
loop4    7:4    0  66,8M  1 loop /snap/core24/1643
loop5    7:5    0    20M  1 loop /snap/desktop-security-center/151
loop6    7:6    0 260,3M  1 loop /snap/firefox/8763
loop7    7:7    0 614,5M  1 loop /snap/gnome-46-2404/164
loop8    7:8    0  16,5M  1 loop /snap/firmware-updater/226
loop9    7:9    0  91,7M  1 loop /snap/gtk-common-themes/1535
loop10   7:10   0   1,5M  1 loop /snap/hwctl/123
loop11   7:11   0   402M  1 loop /snap/mesa-2404/1839
loop12   7:12   0  18,8M  1 loop /snap/prompting-client/222
loop13   7:13   0   828K  1 loop /snap/snapd-desktop-integration/391
loop14   7:14   0  11,8M  1 loop /snap/snap-store/1390
loop15   7:15   0 221,1M  1 loop /snap/thunderbird/1228
loop16   7:16   0  50,1M  1 loop /snap/snapd/27710
loop17   7:17   0  50,3M  1 loop /snap/snapd/27738
loop18   7:18   0 221,4M  1 loop /snap/thunderbird/1255
sda      8:0    0   4,5T  0 disk
├─sda1   8:1    0  29,8G  0 part /run/media/andreas/7076c844-9ce0-433f-b747-b08a98fe3161
├─sda2   8:2    0 476,8G  0 part /run/media/andreas/7c09cdb9-b8ad-4331-86c6-02e6c9bd47eb
└─sda3   8:3    0   4,1T  0 part /run/media/andreas/6c709002-4626-476b-b931-5b17a438bc28
sdb      8:16   0 232,9G  0 disk
├─sdb1   8:17   0 231,8G  0 part /
└─sdb2   8:18   0     1G  0 part /boot/efi

Alle Block-Geräte auflisten (Loop-Geräte ausgeblendet)

Das blendet das Major-Device 7 (siehe oben), also alle Loops, aus und zeigt nur die echten Festplatten an.

andreas@NUC6CAYH:~$ lsblk -e 7
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
sda      8:0    0   4,5T  0 disk
└─sda1   8:1    0   4,5T  0 part /var
                                 /opt
                                 /home
sdb      8:16   0 232,9G  0 disk
├─sdb1   8:17   0 231,8G  0 part /
└─sdb2   8:18   0     1G  0 part /boot/efi

Informationen zu Dateisystemen ausgeben

Durch das Flag -f (Filesystem) erweitert sich die Ausgabe um kritische Software-Infos: Du siehst sofort, mit welchem Dateisystem (z. B. ext4 oder vfat) eine Partition formatiert wurde, wie deren eindeutige UUID lautet und wo sie im System eingehängt (gemountet) ist.

andreas@NUC6CAYH:~$ lsblk -f
NAME   FSTYPE   FSVER LABEL UUID                                 FSAVAIL FSUSE% MOUNTPOINTS
loop0  squashfs 4.0                                                    0   100% /snap/gtk-common-themes/1535
loop1  squashfs 4.0                                                    0   100% /snap/firmware-updater/226
loop2  squashfs 4.0                                                    0   100% /snap/mesa-2404/1839
loop3  squashfs 4.0                                                    0   100% /snap/bare/5
loop4  squashfs 4.0                                                    0   100% /snap/prompting-client/222
loop5  squashfs 4.0                                                    0   100% /snap/firefox/8763
loop6  squashfs 4.0                                                    0   100% /snap/thunderbird/1228
loop7  squashfs 4.0                                                    0   100% /snap/core24/1643
loop8  squashfs 4.0                                                    0   100% /snap/gnome-46-2404/164
loop9  squashfs 4.0                                                    0   100% /snap/desktop-security-center/151
loop10 squashfs 4.0                                                    0   100% /snap/snapd-desktop-integration/391
loop11 squashfs 4.0                                                    0   100% /snap/snap-store/1390
loop12 squashfs 4.0                                                    0   100% /snap/snapd/27710
loop13 squashfs 4.0                                                    0   100% /snap/hwctl/123
sda
└─sda1 ext4     1.0         d84239ba-b4c8-4bd1-a2f7-af1a113cdef1    4,3T     0% /var
                                                                                /opt
                                                                                /home
sdb
├─sdb1 ext4     1.0         78462ca3-fb04-4a27-b341-46defd35e917    210G     2% /
└─sdb2 vfat     FAT32       88F7-849E                                 1G     1% /boot/efi

Informationen zur Blockgerätetopologie ausgeben

Mit dem Parameter -t (Topology) analysierst du die physikalische Struktur deiner Speicher. Hier liest du die Sektorengrößen (PHY-SEC / LOG-SEC) aus und siehst unter der Spalte ROTA, ob es sich um ein rotierendes Laufwerk (1 für HDD) oder einen Flash-Speicher (0 für SSD) handelt.

andreas@NUC6CAYH:~$ lsblk -t
NAME   ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED       RQ-SIZE   RA WSAME
loop0          0    512      0     512     512    1 none            128 2560    0B
loop1          0    512      0     512     512    1 none            128 2560    0B
loop2          0    512      0     512     512    1 none            128 2560    0B
loop3          0    512      0     512     512    1 none            128 2560    0B
loop4          0    512      0     512     512    1 none            128 2560    0B
loop5          0    512      0     512     512    1 none            128 2560    0B
loop6          0    512      0     512     512    1 none            128 2560    0B
loop7          0    512      0     512     512    1 none            128 2560    0B
loop8          0    512      0     512     512    1 none            128 2560    0B
loop9          0    512      0     512     512    1 none            128 2560    0B
loop10         0    512      0     512     512    1 none            128 2560    0B
loop11         0    512      0     512     512    1 none            128 2560    0B
loop12         0    512      0     512     512    1 none            128 2560    0B
loop13         0    512      0     512     512    1 none            128 2560    0B
sda            0   4096      0    4096     512    1 mq-deadline      60 1024    0B
└─sda1         0   4096      0    4096     512    1 mq-deadline      60 1024    0B
sdb            0    512      0     512     512    0 mq-deadline      64  128    0B
├─sdb1         0    512      0     512     512    0 mq-deadline      64  128    0B
└─sdb2         0    512      0     512     512    0 mq-deadline      64  128    0B

df

Festplattenbelegung anzeigen

Der Befehl df (Disk Free) prüft den Füllstand deiner Speicher. Der Parameter -h (human-readable) sorgt dafür, dass die Speicherwerte nicht in unlesbaren Blöcken, sondern in verständlichen Megabyte- (M) und Gigabyte-Angaben (G) ausgegeben werden.

andreas@NUC6CAYH:~$ df -h
Dateisystem    Größe Benutzt Verf. Verw% Eingehängt auf
tmpfs           3,0G    6,1M  3,0G    1% /run
/dev/sdb1       228G    5,6G  210G    3% /
tmpfs           7,5G     12K  7,5G    1% /dev/shm
efivarfs        128K     89K   35K   72% /sys/firmware/efi/efivars
none            1,0M       0  1,0M    0% /run/credentials/systemd-journald.service
none            1,0M       0  1,0M    0% /run/credentials/systemd-resolved.service
/dev/sdb2       1,1G    6,4M  1,1G    1% /boot/efi
/dev/sda1       4,6T    6,4G  4,3T    1% /home
tmpfs           7,5G    8,0K  7,5G    1% /tmp
tmpfs           1,5G     60K  1,5G    1% /run/user/60578
tmpfs           1,5G     52K  1,5G    1% /run/user/1000

Festplattenbelegung anzeigen (Alle Dateisysteme)

Wenn du dem Befehl ein -a (All) spendierst, zeigt dir Linux auch sämtliche Pseudo- und System-Dateisysteme an (wie /proc, /sys oder die vielen /dev/loop-Einträge), die im normalen Betrieb ausgeblendet werden.

andreas@NUC6CAYH:~$ df -ha
Dateisystem    Größe Benutzt Verf. Verw% Eingehängt auf
tmpfs           3,0G    6,1M  3,0G    1% /run
/dev/sdb1       228G    5,6G  210G    3% /
devtmpfs        7,5G       0  7,5G    0% /dev
tmpfs           7,5G     12K  7,5G    1% /dev/shm
devpts             0       0     0     - /dev/pts
sysfs              0       0     0     - /sys
securityfs         0       0     0     - /sys/kernel/security
cgroup2            0       0     0     - /sys/fs/cgroup
none               0       0     0     - /sys/fs/pstore
efivarfs        128K     89K   35K   72% /sys/firmware/efi/efivars
bpf                0       0     0     - /sys/fs/bpf
configfs           0       0     0     - /sys/kernel/config
proc               0       0     0     - /proc
systemd-1          -       -     -     - /proc/sys/fs/binfmt_misc
mqueue             0       0     0     - /dev/mqueue
debugfs            0       0     0     - /sys/kernel/debug
tracefs            0       0     0     - /sys/kernel/tracing
hugetlbfs          0       0     0     - /dev/hugepages
none            1,0M       0  1,0M    0% /run/credentials/systemd-journald.service
fusectl            0       0     0     - /sys/fs/fuse/connections
none            1,0M       0  1,0M    0% /run/credentials/systemd-resolved.service
/dev/sdb2       1,1G    6,4M  1,1G    1% /boot/efi
/dev/sda1       4,6T    6,4G  4,3T    1% /home
/dev/sda1       4,6T    6,4G  4,3T    1% /opt
/dev/sda1       4,6T    6,4G  4,3T    1% /var
tmpfs           7,5G    8,0K  7,5G    1% /tmp
/dev/loop3      128K    128K     0  100% /snap/bare/5
/dev/loop0       92M     92M     0  100% /snap/gtk-common-themes/1535
/dev/loop1       17M     17M     0  100% /snap/firmware-updater/226
/dev/loop2      402M    402M     0  100% /snap/mesa-2404/1839
/dev/loop4       19M     19M     0  100% /snap/prompting-client/222
/dev/loop6      222M    222M     0  100% /snap/thunderbird/1228
/dev/loop5      261M    261M     0  100% /snap/firefox/8763
/dev/loop9       20M     20M     0  100% /snap/desktop-security-center/151
/dev/loop10     896K    896K     0  100% /snap/snapd-desktop-integration/391
/dev/loop11      12M     12M     0  100% /snap/snap-store/1390
/dev/loop13     1,7M    1,7M     0  100% /snap/hwctl/123
/dev/loop7       67M     67M     0  100% /snap/core24/1643
/dev/loop8      615M    615M     0  100% /snap/gnome-46-2404/164
/dev/loop12      51M     51M     0  100% /snap/snapd/27710
binfmt_misc        0       0     0     - /proc/sys/fs/binfmt_misc
tmpfs           1,5G     60K  1,5G    1% /run/user/60578
portal             -       -     -     - /run/user/60578/doc
tmpfs           3,0G    6,1M  3,0G    1% /run/snapd/ns
nsfs               0       0     0     - /run/snapd/ns/snapd-desktop-integration.mnt
tmpfs           1,5G     52K  1,5G    1% /run/user/1000
portal             0       0     0     - /run/user/1000/doc
nsfs               0       0     0     - /run/snapd/ns/prompting-client.mnt
Festplattenbelegung anzeigen (Freie Indexknoten)

Zeigt nicht den Speicherplatz in Gigabyte, sondern die freien Inodes (Indexknoten) an. Unter Linux kann eine Festplatte nämlich rein rechnerisch „voll“ sein, wenn Millionen winziger Dateien alle Inodes verbraucht haben, obwohl noch massig Gigabytes frei wären.

andreas@NUC6CAYH:~$ df -hi
Dateisystem    Inodes IBenutzt IFrei IUse% Eingehängt auf
tmpfs            800K     1,4K  799K    1% /run
/dev/sdb1         15M     216K   15M    2% /
tmpfs            1,9M        4  1,9M    1% /dev/shm
efivarfs            0        0     0     - /sys/firmware/efi/efivars
none             1,0K        1  1023    1% /run/credentials/systemd-journald.service
none             1,0K        1  1023    1% /run/credentials/systemd-resolved.service
/dev/sdb2           0        0     0     - /boot/efi
/dev/sda1        146M      15K  146M    1% /home
tmpfs            1,0M       54  1,0M    1% /tmp
tmpfs            384K      111  384K    1% /run/user/60578
tmpfs            384K       83  384K    1% /run/user/1000

du

Festplattennutzung von Dateien anzeigen

Während df nur das Laufwerk als Ganzes prüft, durchleuchtet du (Disk Usage) die Verzeichnisse im Detail. Mit du -h spürst du Speicherfresser auf, da der Befehl die Ordnergrößen abwärts analysiert und dir genau zeigt, welches Verzeichnis wie viel Speicherplatz belegt.

andreas@NUC6CAYH:~$ du -h
4.0K    ./Bilder
4.0K    ./Vorlagen
4.0K    ./Musik
8.0K    ./.config/gtk-3.0
8.0K    ./.config/ibus/bus
12K     ./.config/ibus
16K     ./.config/ubuntu-insights
8.0K    ./.config/evolution/sources
12K     ./.config/evolution
12K     ./.config/dconf
8.0K    ./.config/pulse
4.0K    ./.config/nautilus
4.0K    ./.config/update-notifier
4.0K    ./.config/goa-1.0
4.0K    ./.config/gnome-initial-setup
100K    ./.config
4.0K    ./Videos
4.0K    ./.cache/glycin/usr/libexec/glycin-loaders/2+/glycin-svg/fontconfig
8.0K    ./.cache/glycin/usr/libexec/glycin-loaders/2+/glycin-svg
12K     ./.cache/glycin/usr/libexec/glycin-loaders/2+
16K     ./.cache/glycin/usr/libexec/glycin-loaders
20K     ./.cache/glycin/usr/libexec
24K     ./.cache/glycin/usr
28K     ./.cache/glycin
212K    ./.cache/ibus/bus
216K    ./.cache/ibus
4.0K    ./.cache/ubuntu-insights/linux/uploaded
8.0K    ./.cache/ubuntu-insights/linux/local
16K     ./.cache/ubuntu-insights/linux
4.0K    ./.cache/ubuntu-insights/ubuntu_desktop_provision/uploaded
8.0K    ./.cache/ubuntu-insights/ubuntu_desktop_provision/local
16K     ./.cache/ubuntu-insights/ubuntu_desktop_provision
36K     ./.cache/ubuntu-insights
612K    ./.cache/gtk-4.0/vulkan-pipeline-cache
616K    ./.cache/gtk-4.0
4.0K    ./.cache/evolution/memos/trash
8.0K    ./.cache/evolution/memos
4.0K    ./.cache/evolution/tasks/trash
8.0K    ./.cache/evolution/tasks
4.0K    ./.cache/evolution/mail/trash
8.0K    ./.cache/evolution/mail
4.0K    ./.cache/evolution/addressbook/trash
8.0K    ./.cache/evolution/addressbook
4.0K    ./.cache/evolution/sources/trash
8.0K    ./.cache/evolution/sources
4.0K    ./.cache/evolution/calendar/trash
8.0K    ./.cache/evolution/calendar
52K     ./.cache/evolution
1.4M    ./.cache/gstreamer-1.0
9.3M    ./.cache/tracker3/files
9.3M    ./.cache/tracker3
12K     ./.cache/mesa_shader_cache/02
12K     ./.cache/mesa_shader_cache/28
8.0K    ./.cache/mesa_shader_cache/1a
8.0K    ./.cache/mesa_shader_cache/5f
12K     ./.cache/mesa_shader_cache/c6
8.0K    ./.cache/mesa_shader_cache/0f
8.0K    ./.cache/mesa_shader_cache/1c
12K     ./.cache/mesa_shader_cache/c4
16K     ./.cache/mesa_shader_cache/1b
8.0K    ./.cache/mesa_shader_cache/df
12K     ./.cache/mesa_shader_cache/66
20K     ./.cache/mesa_shader_cache/e5
8.0K    ./.cache/mesa_shader_cache/b2
8.0K    ./.cache/mesa_shader_cache/17
12K     ./.cache/mesa_shader_cache/70
20K     ./.cache/mesa_shader_cache/8f
8.0K    ./.cache/mesa_shader_cache/9b
8.0K    ./.cache/mesa_shader_cache/a8
8.0K    ./.cache/mesa_shader_cache/f4
8.0K    ./.cache/mesa_shader_cache/6b
8.0K    ./.cache/mesa_shader_cache/a3
8.0K    ./.cache/mesa_shader_cache/be
8.0K    ./.cache/mesa_shader_cache/08
8.0K    ./.cache/mesa_shader_cache/42
12K     ./.cache/mesa_shader_cache/1d
8.0K    ./.cache/mesa_shader_cache/54
12K     ./.cache/mesa_shader_cache/34
24K     ./.cache/mesa_shader_cache/39
8.0K    ./.cache/mesa_shader_cache/68
8.0K    ./.cache/mesa_shader_cache/e1
8.0K    ./.cache/mesa_shader_cache/f7
8.0K    ./.cache/mesa_shader_cache/aa
12K     ./.cache/mesa_shader_cache/fe
8.0K    ./.cache/mesa_shader_cache/7c
8.0K    ./.cache/mesa_shader_cache/7b
8.0K    ./.cache/mesa_shader_cache/09
20K     ./.cache/mesa_shader_cache/6e
8.0K    ./.cache/mesa_shader_cache/71
8.0K    ./.cache/mesa_shader_cache/5b
8.0K    ./.cache/mesa_shader_cache/06
8.0K    ./.cache/mesa_shader_cache/b3
20K     ./.cache/mesa_shader_cache/84
8.0K    ./.cache/mesa_shader_cache/80
12K     ./.cache/mesa_shader_cache/a7
8.0K    ./.cache/mesa_shader_cache/ff
8.0K    ./.cache/mesa_shader_cache/5e
8.0K    ./.cache/mesa_shader_cache/8e
24K     ./.cache/mesa_shader_cache/22
8.0K    ./.cache/mesa_shader_cache/c9
8.0K    ./.cache/mesa_shader_cache/8b
8.0K    ./.cache/mesa_shader_cache/4d
8.0K    ./.cache/mesa_shader_cache/63
8.0K    ./.cache/mesa_shader_cache/83
8.0K    ./.cache/mesa_shader_cache/b0
12K     ./.cache/mesa_shader_cache/d4
12K     ./.cache/mesa_shader_cache/4a
8.0K    ./.cache/mesa_shader_cache/a9
8.0K    ./.cache/mesa_shader_cache/32
8.0K    ./.cache/mesa_shader_cache/e8
16K     ./.cache/mesa_shader_cache/11
12K     ./.cache/mesa_shader_cache/a2
8.0K    ./.cache/mesa_shader_cache/14
12K     ./.cache/mesa_shader_cache/27
20K     ./.cache/mesa_shader_cache/bd
8.0K    ./.cache/mesa_shader_cache/91
8.0K    ./.cache/mesa_shader_cache/e6
8.0K    ./.cache/mesa_shader_cache/d9
8.0K    ./.cache/mesa_shader_cache/1f
8.0K    ./.cache/mesa_shader_cache/fd
12K     ./.cache/mesa_shader_cache/0c
16K     ./.cache/mesa_shader_cache/76
8.0K    ./.cache/mesa_shader_cache/75
8.0K    ./.cache/mesa_shader_cache/ca
8.0K    ./.cache/mesa_shader_cache/ef
8.0K    ./.cache/mesa_shader_cache/d5
24K     ./.cache/mesa_shader_cache/c8
8.0K    ./.cache/mesa_shader_cache/48
8.0K    ./.cache/mesa_shader_cache/d8
8.0K    ./.cache/mesa_shader_cache/41
8.0K    ./.cache/mesa_shader_cache/72
8.0K    ./.cache/mesa_shader_cache/35
8.0K    ./.cache/mesa_shader_cache/98
8.0K    ./.cache/mesa_shader_cache/37
8.0K    ./.cache/mesa_shader_cache/92
8.0K    ./.cache/mesa_shader_cache/6f
8.0K    ./.cache/mesa_shader_cache/d3
12K     ./.cache/mesa_shader_cache/ea
8.0K    ./.cache/mesa_shader_cache/00
16K     ./.cache/mesa_shader_cache/6d
8.0K    ./.cache/mesa_shader_cache/2b
16K     ./.cache/mesa_shader_cache/78
8.0K    ./.cache/mesa_shader_cache/e3
8.0K    ./.cache/mesa_shader_cache/36
28K     ./.cache/mesa_shader_cache/94
8.0K    ./.cache/mesa_shader_cache/d2
3.0M    ./.cache/mesa_shader_cache
12K     ./.cache/update-manager-core
12K     ./.cache/ubuntu-pro
4.0K    ./.cache/ibus-table
15M     ./.cache
72K     ./snap/snapd-desktop-integration/common/.cache/immodules
44K     ./snap/snapd-desktop-integration/common/.cache/fontconfig
24K     ./snap/snapd-desktop-integration/common/.cache/gio-modules
152K    ./snap/snapd-desktop-integration/common/.cache
156K    ./snap/snapd-desktop-integration/common
4.0K    ./snap/snapd-desktop-integration/391/Templates
4.0K    ./snap/snapd-desktop-integration/391/Public
4.0K    ./snap/snapd-desktop-integration/391/.config/gtk-3.0
4.0K    ./snap/snapd-desktop-integration/391/.config/ibus
4.0K    ./snap/snapd-desktop-integration/391/.config/dconf
8.0K    ./snap/snapd-desktop-integration/391/.config/fontconfig
4.0K    ./snap/snapd-desktop-integration/391/.config/gtk-2.0
44K     ./snap/snapd-desktop-integration/391/.config
4.0K    ./snap/snapd-desktop-integration/391/Videos
4.0K    ./snap/snapd-desktop-integration/391/Desktop
4.0K    ./snap/snapd-desktop-integration/391/Pictures
4.0K    ./snap/snapd-desktop-integration/391/Documents
4.0K    ./snap/snapd-desktop-integration/391/Downloads
4.0K    ./snap/snapd-desktop-integration/391/.local/share/glib-2.0/schemas
8.0K    ./snap/snapd-desktop-integration/391/.local/share/glib-2.0
4.0K    ./snap/snapd-desktop-integration/391/.local/share/icons
16K     ./snap/snapd-desktop-integration/391/.local/share
20K     ./snap/snapd-desktop-integration/391/.local
4.0K    ./snap/snapd-desktop-integration/391/Music
104K    ./snap/snapd-desktop-integration/391
264K    ./snap/snapd-desktop-integration
72K     ./snap/prompting-client/common/.cache/immodules
24K     ./snap/prompting-client/common/.cache/gio-modules
104K    ./snap/prompting-client/common/.cache
108K    ./snap/prompting-client/common
4.0K    ./snap/prompting-client/222/Templates
4.0K    ./snap/prompting-client/222/Public
4.0K    ./snap/prompting-client/222/.config/gtk-3.0
4.0K    ./snap/prompting-client/222/.config/ibus
4.0K    ./snap/prompting-client/222/.config/dconf
8.0K    ./snap/prompting-client/222/.config/fontconfig
4.0K    ./snap/prompting-client/222/.config/gtk-2.0
44K     ./snap/prompting-client/222/.config
4.0K    ./snap/prompting-client/222/Videos
4.0K    ./snap/prompting-client/222/Desktop
4.0K    ./snap/prompting-client/222/Pictures
4.0K    ./snap/prompting-client/222/Documents
4.0K    ./snap/prompting-client/222/Downloads
4.0K    ./snap/prompting-client/222/.local/share/glib-2.0/schemas
8.0K    ./snap/prompting-client/222/.local/share/glib-2.0
4.0K    ./snap/prompting-client/222/.local/share/icons
16K     ./snap/prompting-client/222/.local/share
20K     ./snap/prompting-client/222/.local
4.0K    ./snap/prompting-client/222/Music
104K    ./snap/prompting-client/222
216K    ./snap/prompting-client
484K    ./snap
4.0K    ./Downloads
4.0K    ./Dokumente
4.0K    ./Öffentlich
4.0K    ./.ssh
8.0K    ./.local/share/icc
4.0K    ./.local/share/flatpak/db
8.0K    ./.local/share/flatpak
4.0K    ./.local/share/evolution/memos/trash
8.0K    ./.local/share/evolution/memos
4.0K    ./.local/share/evolution/tasks/trash
8.0K    ./.local/share/evolution/tasks/system
16K     ./.local/share/evolution/tasks
4.0K    ./.local/share/evolution/mail/trash
8.0K    ./.local/share/evolution/mail
4.0K    ./.local/share/evolution/addressbook/trash
4.0K    ./.local/share/evolution/addressbook/system/photos
100K    ./.local/share/evolution/addressbook/system
108K    ./.local/share/evolution/addressbook
4.0K    ./.local/share/evolution/calendar/trash
4.0K    ./.local/share/evolution/calendar/system
12K     ./.local/share/evolution/calendar
156K    ./.local/share/evolution
4.0K    ./.local/share/gnome-settings-daemon
76K     ./.local/share/gvfs-metadata
12K     ./.local/share/keyrings
4.0K    ./.local/share/applications
12K     ./.local/share/gnome-shell
4.0K    ./.local/share/sounds
4.0K    ./.local/share/containers/storage/overlay-containers
8.0K    ./.local/share/containers/storage
12K     ./.local/share/containers
8.0K    ./.local/share/user-session-migration
4.0K    ./.local/share/ibus-table
168K    ./.local/share/nautilus/tags
172K    ./.local/share/nautilus
4.0K    ./.local/share/org.gnome.Ptyxis/palettes
8.0K    ./.local/share/org.gnome.Ptyxis
492K    ./.local/share
8.0K    ./.local/state/wireplumber
12K     ./.local/state
508K    ./.local
4.0K    ./Schreibtisch
16M     .

PCI-Geräte

lspci

Anzeige über PCI-Busse im System und die daran angeschlossenen Geräte

Der Befehl lspci listet alle Hardware-Komponenten auf, die auf dem Mainboard über den PCI-Bus miteinander kommunizieren. Die Parameter-Verstärkung -vvv schaltet den maximalen Detailgrad (very verbose) frei. Der Kernel liefert dir hier tiefste Details über Grafikchips, SATA-Controller und Netzwerkkarten.

andreas@NUC6CAYH:~$ lspci -vvv
00:00.0 Host bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Host Bridge (rev 0b)
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        IOMMU group: 1

00:02.0 VGA compatible controller: Intel Corporation Apollo Lake GT1 [HD Graphics 500] (rev 0b) (prog-if 00 [VGA controller])
        DeviceName:  CPU
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 136
        IOMMU group: 0
        Region 0: Memory at 90000000 (64-bit, non-prefetchable) [size=16M]
        Region 2: Memory at 80000000 (64-bit, prefetchable) [size=256M]
        Region 4: I/O ports at f000 [size=64]
        Expansion ROM at 000c0000 [virtual] [disabled] [size=128K]
        Capabilities: <access denied>
        Kernel driver in use: i915
        Kernel modules: i915

00:0e.0 Audio device: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster (rev 0b) (prog-if 80 [HDA compatible with vendor specific extensions])
        Subsystem: Intel Corporation Device 2067
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 137
        IOMMU group: 2
        Region 0: Memory at 91410000 (64-bit, non-prefetchable) [size=16K]
        Region 4: Memory at 91000000 (64-bit, non-prefetchable) [size=1M]
        Capabilities: <access denied>
        Kernel driver in use: snd_hda_intel
        Kernel modules: snd_soc_avs, snd_sof_pci_intel_apl, snd_hda_intel

00:0f.0 Communication controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Trusted Execution Engine (rev 0b)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 133
        IOMMU group: 3
        Region 0: Memory at 91427000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: mei_me
        Kernel modules: mei_me

00:12.0 SATA controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SATA AHCI Controller (rev 0b) (prog-if 01 [AHCI 1.0])
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 131
        IOMMU group: 4
        Region 0: Memory at 91414000 (32-bit, non-prefetchable) [size=8K]
        Region 1: Memory at 91424000 (32-bit, non-prefetchable) [size=256]
        Region 2: I/O ports at f090 [size=8]
        Region 3: I/O ports at f080 [size=4]
        Region 4: I/O ports at f060 [size=32]
        Region 5: Memory at 91423000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: <access denied>
        Kernel driver in use: ahci
        Kernel modules: ahci

00:13.0 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #1 (rev fb) (prog-if 00 [Normal decode])
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 123
        IOMMU group: 5
        Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
        I/O behind bridge: f000-0fff [disabled] [16-bit]
        Memory behind bridge: 91300000-913fffff [size=1M] [32-bit]
        Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport
        Kernel modules: shpchp

00:13.1 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #2 (rev fb) (prog-if 00 [Normal decode])
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 124
        IOMMU group: 5
        Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
        I/O behind bridge: f000-0fff [disabled] [16-bit]
        Memory behind bridge: 91200000-912fffff [size=1M] [32-bit]
        Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport
        Kernel modules: shpchp

00:13.2 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #3 (rev fb) (prog-if 00 [Normal decode])
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin C routed to IRQ 125
        IOMMU group: 5
        Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
        I/O behind bridge: e000-efff [size=4K] [16-bit]
        Memory behind bridge: 91100000-911fffff [size=1M] [32-bit]
        Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled] [64-bit]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport
        Kernel modules: shpchp

00:15.0 USB controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series USB xHCI (rev 0b) (prog-if 30 [XHCI])
        Subsystem: Intel Corporation Device 2067
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 126
        IOMMU group: 6
        Region 0: Memory at 91400000 (64-bit, non-prefetchable) [size=64K]
        Capabilities: <access denied>
        Kernel driver in use: xhci_hcd
        Kernel modules: xhci_pci

00:16.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #1 (rev 0b)
        Subsystem: Intel Corporation Device 2067
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 27
        IOMMU group: 7
        Region 0: Memory at 91422000 (64-bit, non-prefetchable) [size=4K]
        Region 2: Memory at 91421000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss
        Kernel modules: intel_lpss_pci

00:18.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #1 (rev 0b)
        DeviceName:  TPM
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 4
        IOMMU group: 8
        Region 0: Memory at 91420000 (64-bit, non-prefetchable) [size=4K]
        Region 2: Memory at 9141f000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss
        Kernel modules: intel_lpss_pci

00:19.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #1 (rev 0b)
        DeviceName:  LAN_IC
        Subsystem: Intel Corporation Device 2067
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 35
        IOMMU group: 9
        Region 0: Memory at 9141e000 (64-bit, non-prefetchable) [size=4K]
        Region 2: Memory at 9141d000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss
        Kernel modules: intel_lpss_pci

00:19.1 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #2 (rev 0b)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin B routed to IRQ 36
        IOMMU group: 9
        Region 0: Memory at 9141c000 (64-bit, non-prefetchable) [size=4K]
        Region 2: Memory at 9141b000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss
        Kernel modules: intel_lpss_pci

00:19.2 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #3 (rev 0b)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin C routed to IRQ 37
        IOMMU group: 9
        Region 0: Memory at 9141a000 (64-bit, non-prefetchable) [size=4K]
        Region 2: Memory at 91419000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: intel-lpss
        Kernel modules: intel_lpss_pci

00:1a.0 Serial bus controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PWM Pin Controller (rev 0b)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ -2147483648
        IOMMU group: 10
        Region 0: Memory at 91418000 (64-bit, non-prefetchable) [size=4K]
        Region 2: Memory at 91417000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: pwm-lpss
        Kernel modules: pwm_lpss_pci

00:1f.0 ISA bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Low Pin Count Interface (rev 0b)
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        IOMMU group: 11
        Kernel driver in use: lpc_ich
        Kernel modules: lpc_ich

00:1f.1 SMBus: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SMBus Controller (rev 0b)
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin A routed to IRQ -2147483648
        IOMMU group: 11
        Region 0: Memory at 91416000 (64-bit, non-prefetchable) [size=256]
        Region 4: I/O ports at f040 [size=32]
        Kernel driver in use: i801_smbus
        Kernel modules: i2c_i801

01:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 132
        IOMMU group: 5
        Region 0: Memory at 91300000 (32-bit, non-prefetchable) [size=4K]
        Capabilities: <access denied>
        Kernel driver in use: rtsx_pci
        Kernel modules: rtsx_pci

02:00.0 Network controller: Intel Corporation Dual Band Wireless-AC 3168NGW [Stone Peak] (rev 10)
        Subsystem: Intel Corporation Device 2110
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 135
        IOMMU group: 5
        Region 0: Memory at 91200000 (64-bit, non-prefetchable) [size=8K]
        Capabilities: <access denied>
        Kernel driver in use: iwlwifi
        Kernel modules: iwlwifi

03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller (rev 15)
        Subsystem: Intel Corporation Device 2067
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 20
        IOMMU group: 5
        Region 0: I/O ports at e000 [size=256]
        Region 2: Memory at 91104000 (64-bit, non-prefetchable) [size=4K]
        Region 4: Memory at 91100000 (64-bit, non-prefetchable) [size=16K]
        Capabilities: <access denied>
        Kernel driver in use: r8169
        Kernel modules: r8169

USB-Geräte

lsusb

USB-Geräte auflisten

Ein schneller Aufruf von lsusb scannt alle USB-Busse deines PCs ab. Du siehst sofort jeden angesteckten USB-Stick, Tastaturen, Mäuse oder Bluetooth-Empfänger inklusive deren Hersteller-ID (Vendor ID).

andreas@NUC6CAYH:~$ lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
Bus 001 Device 004: ID 046d:c05a Logitech, Inc. M90/M100 Optical Mouse
Bus 001 Device 005: ID 8087:0aa7 Intel Corp. Wireless-AC 3168 Bluetooth
Bus 001 Device 006: ID 413c:2106 Dell Computer Corp. QuietKey Keyboard
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 002: ID 0bc2:203a Seagate RSS LLC Expansion SW

Ausführlichkeit der Liste erhöhen und anzeigen

Mit dem Parameter -v (Verbose) zwingst du das Terminal, die vollständigen USB-Geräte-Deskriptoren auszulesen. Hier werden technische Feinheiten wie die exakte USB-Spezifikation (z. B. USB 3.20) und die ausgehandelte Übertragungsgeschwindigkeit angezeigt.

andreas@NUC6CAYH:~$ lsusb -v

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Couldn't open device, some information will be missing
Negotiated speed: High Speed (480Mbps)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 [unknown]
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            7.00
  iManufacturer           3 Linux 7.0.0-31-generic xhci-hcd
  iProduct                2 xHCI Host Controller
  iSerial                 1 0000:00:15.0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0019
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 [unknown]
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
Couldn't open device, some information will be missing
Negotiated speed: High Speed (480Mbps)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 [unknown]
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x05e3 Genesys Logic, Inc.
  idProduct          0x0608 Hub
  bcdDevice           85.36
  iManufacturer           0
  iProduct                1 USB2.0 Hub
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0019
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 [unknown]
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0001  1x 1 bytes
        bInterval              12

Bus 001 Device 004: ID 046d:c05a Logitech, Inc. M90/M100 Optical Mouse
Couldn't open device, some information will be missing
Negotiated speed: Low Speed (1Mbps)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 [unknown]
  bDeviceSubClass         0 [unknown]
  bDeviceProtocol         0
  bMaxPacketSize0         8
  idVendor           0x046d Logitech, Inc.
  idProduct          0xc05a M90/M100 Optical Mouse
  bcdDevice           54.00
  iManufacturer           1 Logitech
  iProduct                2 USB Optical Mouse
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0022
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower               98mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      2 Mouse
      iInterface              0
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      67
          Report Descriptors:
            ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0006  1x 6 bytes
        bInterval              10

Bus 001 Device 005: ID 8087:0aa7 Intel Corp. Wireless-AC 3168 Bluetooth
Couldn't open device, some information will be missing
Negotiated speed: Full Speed (12Mbps)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass          224 Wireless
  bDeviceSubClass         1 Radio Frequency
  bDeviceProtocol         1 Bluetooth
  bMaxPacketSize0        64
  idVendor           0x8087 Intel Corp.
  idProduct          0x0aa7 Wireless-AC 3168 Bluetooth
  bcdDevice            0.01
  iManufacturer           0
  iProduct                0
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x00b1
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0000  1x 0 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0000  1x 0 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       1
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0009  1x 9 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0009  1x 9 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       2
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0011  1x 17 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0011  1x 17 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       3
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0019  1x 25 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0019  1x 25 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       4
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0021  1x 33 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0021  1x 33 bytes
        bInterval               1
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       5
      bNumEndpoints           2
      bInterfaceClass       224 Wireless
      bInterfaceSubClass      1 Radio Frequency
      bInterfaceProtocol      1 Bluetooth
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0031  1x 49 bytes
        bInterval               1
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            1
          Transfer Type            Isochronous
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0031  1x 49 bytes
        bInterval               1

Bus 001 Device 006: ID 413c:2106 Dell Computer Corp. QuietKey Keyboard
Couldn't open device, some information will be missing
Negotiated speed: Low Speed (1Mbps)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            0 [unknown]
  bDeviceSubClass         0 [unknown]
  bDeviceProtocol         0
  bMaxPacketSize0         8
  idVendor           0x413c Dell Computer Corp.
  idProduct          0x2106 QuietKey Keyboard
  bcdDevice            1.01
  iManufacturer           1 DELL
  iProduct                2 Dell QuietKey Keyboard
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0022
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      1 Keyboard
      iInterface              0
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.10
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      65
          Report Descriptors:
            ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval              10

Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Couldn't open device, some information will be missing
Negotiated speed: SuperSpeed (5Gbps)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 [unknown]
  bDeviceProtocol         3
  bMaxPacketSize0         9
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0003 3.0 root hub
  bcdDevice            7.00
  iManufacturer           3 Linux 7.0.0-31-generic xhci-hcd
  iProduct                2 xHCI Host Controller
  iSerial                 1 0000:00:15.0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x001f
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 [unknown]
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval              12
        bMaxBurst               0
        wBytesPerInterval       2

Bus 002 Device 002: ID 0bc2:203a Seagate RSS LLC Expansion SW
Couldn't open device, some information will be missing
Negotiated speed: SuperSpeed (5Gbps)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.20
  bDeviceClass            0 [unknown]
  bDeviceSubClass         0 [unknown]
  bDeviceProtocol         0
  bMaxPacketSize0         9
  idVendor           0x0bc2 Seagate RSS LLC
  idProduct          0x203a Expansion SW
  bcdDevice           19.01
  iManufacturer           1 Seagate
  iProduct                2 Expansion SW
  iSerial                 3 00000000NACD11Q2
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0079
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              896mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         8 Mass Storage
      bInterfaceSubClass      6 SCSI
      bInterfaceProtocol     80 Bulk-Only
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst              15
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst              15
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       1
      bNumEndpoints           4
      bInterfaceClass         8 Mass Storage
      bInterfaceSubClass      6 SCSI
      bInterfaceProtocol     98 USB Attached SCSI
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst               0
        Command pipe (0x01)
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst               0
        MaxStreams             32
        Status pipe (0x02)
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x83  EP 3 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst              15
        MaxStreams             32
        Data-in pipe (0x03)
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x04  EP 4 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0400  1x 1024 bytes
        bInterval               0
        bMaxBurst               7
        MaxStreams             32
        Data-out pipe (0x04)

Die Hierarchie der physischen USB-Geräte als Baumstruktur anzeigen

Der Parameter -t (Tree) ist ein absoluter Pflichtbefehl für die Fehlersuche. Er mappt deine USB-Anschlüsse als Baumstruktur und zeigt dir exakt, welcher Treiber (z. B. usbhid oder uas) auf welchem physischen Port aktiv ist und mit welcher Bandbreite (z. B. 5000M für USB 3.0) gearbeitet wird.

andreas@NUC6CAYH:~$ lsusb -t
/:  Bus 001.Port 001: Dev 001, Class=root_hub, Driver=xhci_hcd/8p, 480M
    |__ Port 003: Dev 002, If 0, Class=Hub, Driver=hub/4p, 480M
        |__ Port 003: Dev 004, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
        |__ Port 004: Dev 006, If 0, Class=Human Interface Device, Driver=usbhid, 1.5M
    |__ Port 008: Dev 005, If 0, Class=Wireless, Driver=btusb, 12M
    |__ Port 008: Dev 005, If 1, Class=Wireless, Driver=btusb, 12M
/:  Bus 002.Port 001: Dev 001, Class=root_hub, Driver=xhci_hcd/7p, 5000M
    |__ Port 004: Dev 002, If 0, Class=Mass Storage, Driver=uas, 5000M

Netzwerk

hostname

Den Hostnamen des Systems anzeigen oder festlegen

Der reine Befehl hostname gibt dir schlicht den Namen aus, den du deinem Computer bei der Betriebssysteminstallation gegeben hast.

andreas@NUC6CAYH:~$ hostname
NUC6CAYH

Alle IP-Adressen für den Host anzeigen

Der Parameter -I (Großbuchstabe i) ist der schnellste Weg, um die aktuelle IP-Adresse deines Rechners im lokalen Netzwerk (z. B. 192.168.178.46) abzufragen – ohne unübersichtlichen Protokoll-Ballast.

andreas@NUC6CAYH:~$ hostname -I
192.168.178.46

IP-Adressen für den Hostnamen anzeigen

Mit dem kleinen -i fragst du ab, welche IP-Adresse intern mit deinem Hostnamen verknüpft ist. Linux antwortet hier standardmäßig mit der lokalen Loopback-Adresse 127.0.1.1.


andreas@NUC6CAYH:~$ hostname -i
127.0.1.1

ip

Netzwerk-Schnittstellen, MAC-Adressen und Verbindungsstatus anzeigen

Der Befehl ip a (kurz für ip address) ist der moderne und offizielle Nachfolger des alten ifconfig. Er zeigt dir nicht nur deine lokale IP-Adresse im Netzwerk, sondern listet alle physischen und virtuellen Netzwerkkarten (wie dein Ethernet enp3s0 oder das WLAN wlp2s0) inklusive deren MAC-Adresse und dem aktuellen Verbindungsstatus (UP oder DOWN) auf.

andreas@NUC6CAYH:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute
       valid_lft forever preferred_lft forever
2: enp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 1c:69:7a:a0:ef:cc brd ff:ff:ff:ff:ff:ff
    altname enx1c697aa0efcc
    inet 192.168.178.46/24 brd 192.168.178.255 scope global dynamic noprefixroute enp3s0
       valid_lft 863528sec preferred_lft 863528sec
    inet6 fe80::1e69:7aff:fea0:efcc/64 scope link noprefixroute
       valid_lft forever preferred_lft forever
3: wlp2s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000
    link/ether 34:7d:f6:c1:54:4e brd ff:ff:ff:ff:ff:ff
    altname wlx347df6c1544e
Andreas Potthoff
Andreas Potthoff
Hi, ich bin Andreas. Entwickler, Autor, Redakteur und der Kopf hinter ElectroDrome.Net. Ich bin mit der Pionierzeit der 4- und 8-Bit-Mikrocomputer großgeworden – eine Faszination für Elektronik, Analog- und Digitaltechnik, die mich bis heute antreibt. Mein Feld ist bewusst breit aufgestellt: Es reicht von angewandter Schaltungstechnik und Systemarchitektur über Psychologie und kognitive Modelle bis hin zu den physikalischen Grundlagen unseres Universums, außergewöhnlichen Hypothesen, Raumfahrtgeschichten und Grenzwissenschaften. Hier teile ich erprobte Hardware-Designs, vertiefende Gedanken aus meinen Büchern und dokumentiere meine Projekte in Text, Bild und Video. Mein Ziel: Faszination stiften, komplexe Strukturen verständlich machen und Wissen als Open-Source-Praxis greifbar liefern.
5 1 Bewertung
Beitragsbewertung
guest
0 Kommentare
Älteste
Neueste Meistbewertet
spot_img

Related Stories