WIFI als metered Verbindung konfigurieren

  • Hi zusammen,

    ich habe einen Raspberry 4 mit Raspbian an einem WiFi Hotspot mit limitierten Datenvolumen verbunden und möchte eigentlich nicht viele Daten übertragen. Habe aber jetzt das Problem, dass zu viele Daten vermutlich im Hintergrund übertragen werden und würde das gerne so gut wie möglich einschränken. So ähnlich wie am Smartphone, wo man ein Netzwerk z.B. als "gebührenpflichtig" einstellen kann (Android).

    Die WiFi Verbindung/Credentials habe ich über wpa_supplicant eingerichtet.

    Hat hier jemand Erfahrung und kann mir weiterhelfen?

    Danke!

    :danke_ATDE:

  • Habe aber jetzt das Problem, dass zu viele Daten vermutlich im Hintergrund übertragen werden und würde das gerne so gut wie möglich einschränken.

    Was sind das für Dienste, die diese Daten übertragen?

    The most popular websites without IPv6 in Germany.  IPv6-Ausreden

    Meine PIs

    PI4B/8GB (border device) OpenBSD 7.4 (64bit): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server

    PI3B+ FreeBSD 14.0-R-p6 (arm64): SSH-Serv., WireGuard-Serv., ircd-hybrid-Serv., stunnel-Proxy, Mumble-Serv., ddclient

    PI4B/4GB Bullseye-lite (64bit; modifiziert): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server, botamusique, ample

  • Konnte aber bisher noch keinen geeigneten Weg finden. Weißt du da was?

    Siehe die Ausgabe von:

    Code
    sudo netstat -tulpena

    The most popular websites without IPv6 in Germany.  IPv6-Ausreden

    Meine PIs

    PI4B/8GB (border device) OpenBSD 7.4 (64bit): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server

    PI3B+ FreeBSD 14.0-R-p6 (arm64): SSH-Serv., WireGuard-Serv., ircd-hybrid-Serv., stunnel-Proxy, Mumble-Serv., ddclient

    PI4B/4GB Bullseye-lite (64bit; modifiziert): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server, botamusique, ample

  • Siehe die Ausgabe von:

    Code
    sudo netstat -tulpena

    Zunächst danke dir!

    Netstat -tulpena hatte ich schon mal benutzt. Das gibt aber ja nur eine Momentaufnahme. Nach dieser muss ich sagen, ist eigentlich bis auf die SSH Verbindung kein Traffic zu sehen.

    Komischerweise hatte mein Mobile Hotspot letztens aber über Nacht ca. 50MB Traffic und es war aber nur dieser Raspi per WiFi verbunden sonst nichts.

    Gibt es eine Möglichkeit, dass Netstat einen aufsummierten Netzwerk-Traffc über mehrere Stunden ausgibt?

  • Komischerweise hatte mein Mobile Hotspot letztens aber über Nacht ca. 50MB Traffic

    Vielleicht hilft der betreffende Eintrag in der /var/log/authlog* um ggf. herauszufinden wer den Traffic verursacht hat und dann der in der /var/log/syslog* was da abgelaufen ist.

  • Gibt es eine Möglichkeit, dass Netstat einen aufsummierten Netzwerk-Traffc über mehrere Stunden ausgibt?

    Ja, iptables Regeln ohne target an 1. Stelle in der INPUT und OUTPUT chain und morgen früh, die Zähler dieser Regeln auslesen.

    Code
    sudo iptables -I INPUT 1 -i wlan0
    sudo iptables -I OUTPUT 1 -o wlan0

    EDIT:

    BTW: Den Traffic (Receive und Transmit) für das wlan0-Interface kannst Du auch mit z. B.:

    Code
    cat /proc/net/dev
    cat /proc/net/dev | grep -i wlan0

    anschauen.

    Rekeyings (sind abhängig vom Wlan-Router/Hotspot) und evtl. 4-way-handshakes kannst Du mit:

    Code
    sudo tcpdump -vvveni wlan0 ether proto 0x888e

    anzeigen lassen.

    The most popular websites without IPv6 in Germany.  IPv6-Ausreden

    Meine PIs

    PI4B/8GB (border device) OpenBSD 7.4 (64bit): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server

    PI3B+ FreeBSD 14.0-R-p6 (arm64): SSH-Serv., WireGuard-Serv., ircd-hybrid-Serv., stunnel-Proxy, Mumble-Serv., ddclient

    PI4B/4GB Bullseye-lite (64bit; modifiziert): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server, botamusique, ample

    5 Mal editiert, zuletzt von rpi444 (15. Oktober 2022 um 09:52)

  • Servus!

    Ich vermute mit iptables -L -v kann ich den Traffic auslesen?

    Seit gestern abend zeigt mir dieser Befehl an:

    D.h. nach meinem Verständnis hatte mein System seit gestern Abend 33MB (Download) + 5,8MB (Upload) Traffic.

    Pass irgendwie nicht mit der Ausgabe aus netstat -tulpena zusammen, wo ja bis auf die SSH Verbindung alles 0bytes war.

    rpi444 : Ich werde es heute nicht mehr schaffen, aber werde die nächsten Tage mal noch deine anderen Tipps ausprobieren, die du zuletzt gepostet hast. Danke Dir!!!!

  • Ich vermute mit iptables -L -v kann ich den Traffic auslesen?

    D.h. nach meinem Verständnis hatte mein System seit gestern Abend 33MB (Download) + 5,8MB (Upload) Traffic.

    ja. Wie sind ist die Ausgabe von:

    Code
    sudo netstat -tulpena
    ps aux

    ? Der input-/download-Traffic wird m. E. zum grössten Teil, ein related-/established-Traffic (d. h. von deinem PI aus, veranlasst) sein. Du kannst im "Ruhezustand" mit tcpdump und dem geeigneten Filter, die lauschenden TCP-Ports auf deinem PI, bzgl. new-Traffic (d. h. eingehender Traffic mit dem syn-Flag gesetzt bei TCP, der nicht durch deinen PI veranlasst ist) überwachen.

    The most popular websites without IPv6 in Germany.  IPv6-Ausreden

    Meine PIs

    PI4B/8GB (border device) OpenBSD 7.4 (64bit): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server

    PI3B+ FreeBSD 14.0-R-p6 (arm64): SSH-Serv., WireGuard-Serv., ircd-hybrid-Serv., stunnel-Proxy, Mumble-Serv., ddclient

    PI4B/4GB Bullseye-lite (64bit; modifiziert): SSH-Server, WireGuard-Server, ircd-hybrid-Server, stunnel-Proxy, Mumble-Server, botamusique, ample

  • sudo netstat -tulpena gibt folgendes aus:

    Spoiler anzeigen

    Active Internet connections (servers and established)

    Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name

    tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 0 10212 681/sshd: /usr/sbin

    tcp 0 0 0.0.0.0:139 0.0.0.0:* LISTEN 0 11135 731/smbd

    tcp 0 0 0.0.0.0:1883 0.0.0.0:* LISTEN 111 14070 1069/mosquitto

    tcp 0 0 0.0.0.0:9001 0.0.0.0:* LISTEN 1001 1742586 10747/node

    tcp 0 0 0.0.0.0:445 0.0.0.0:* LISTEN 0 11134 731/smbd

    tcp 0 0 127.0.0.1:1883 127.0.0.1:33382 ESTABLISHED 111 1746315 1069/mosquitto

    tcp 0 0 192.168.2.133:445 192.168.2.139:53035 ESTABLISHED 0 1743128 10536/smbd

    tcp 0 240 192.168.2.133:22 192.168.2.139:52878 ESTABLISHED 0 1220128 7499/sshd: openhabi

    tcp6 0 0 :::22 :::* LISTEN 0 10214 681/sshd: /usr/sbin

    tcp6 0 0 :::8443 :::* LISTEN 110 1746057 10746/java

    tcp6 0 0 :::139 :::* LISTEN 0 11133 731/smbd

    tcp6 0 0 :::1883 :::* LISTEN 111 14071 1069/mosquitto

    tcp6 0 0 127.0.0.1:45169 :::* LISTEN 110 1745322 10746/java

    tcp6 0 0 :::8080 :::* LISTEN 110 1746060 10746/java

    tcp6 0 0 :::5007 :::* LISTEN 110 1745349 10746/java

    tcp6 0 0 :::445 :::* LISTEN 0 11132 731/smbd

    tcp6 0 0 :::8101 :::* LISTEN 110 1744585 10746/java

    tcp6 0 0 127.0.0.1:33382 127.0.0.1:1883 ESTABLISHED 110 1746310 10746/java

    udp 0 0 0.0.0.0:42916 0.0.0.0:* 108 13609 286/avahi-daemon: r

    udp 0 0 0.0.0.0:68 0.0.0.0:* 0 11195 999/dhclient

    udp 0 0 192.168.2.255:137 0.0.0.0:* 0 14757 607/nmbd

    udp 0 0 192.168.2.133:137 0.0.0.0:* 0 14756 607/nmbd

    udp 0 0 169.254.255.255:137 0.0.0.0:* 0 14364 607/nmbd

    udp 0 0 169.254.236.82:137 0.0.0.0:* 0 14363 607/nmbd

    udp 0 0 0.0.0.0:137 0.0.0.0:* 0 14350 607/nmbd

    udp 0 0 192.168.2.255:138 0.0.0.0:* 0 14759 607/nmbd

    udp 0 0 192.168.2.133:138 0.0.0.0:* 0 14758 607/nmbd

    udp 0 0 169.254.255.255:138 0.0.0.0:* 0 14366 607/nmbd

    udp 0 0 169.254.236.82:138 0.0.0.0:* 0 14365 607/nmbd

    udp 0 0 0.0.0.0:138 0.0.0.0:* 0 14351 607/nmbd

    udp 0 0 0.0.0.0:5353 0.0.0.0:* 108 13607 286/avahi-daemon: r

    udp6 0 0 :::60546 :::* 108 13610 286/avahi-daemon: r

    udp6 0 0 :::5353 :::* 110 1744611 10746/java

    udp6 0 0 :::5353 :::* 110 1744607 10746/java

    udp6 0 0 :::5353 :::* 108 13608 286/avahi-daemon: r

    Rot markiert sind die bytes durch die SSH-Sitzung. Der Rest ist immer 0.

    ps aux gibt aus:

    Spoiler anzeigen

    USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND

    root 1 0.2 0.2 32776 8980 ? Ss 20:19 0:13 /sbin/init

    root 2 0.0 0.0 0 0 ? S 20:19 0:00 [kthreadd]

    root 3 0.0 0.0 0 0 ? I< 20:19 0:00 [rcu_gp]

    root 4 0.0 0.0 0 0 ? I< 20:19 0:00 [rcu_par_gp]

    root 5 0.0 0.0 0 0 ? I< 20:19 0:00 [netns]

    root 9 0.0 0.0 0 0 ? I< 20:19 0:00 [mm_percpu_wq]

    root 10 0.0 0.0 0 0 ? S 20:19 0:00 [rcu_tasks_rude_]

    root 11 0.0 0.0 0 0 ? S 20:19 0:00 [rcu_tasks_trace]

    root 12 0.0 0.0 0 0 ? S 20:19 0:03 [ksoftirqd/0]

    root 13 0.0 0.0 0 0 ? I 20:19 0:04 [rcu_sched]

    root 14 0.0 0.0 0 0 ? S 20:19 0:00 [migration/0]

    root 15 0.0 0.0 0 0 ? S 20:19 0:00 [cpuhp/0]

    root 16 0.0 0.0 0 0 ? S 20:19 0:00 [cpuhp/1]

    root 17 0.0 0.0 0 0 ? S 20:19 0:00 [migration/1]

    root 18 0.0 0.0 0 0 ? S 20:19 0:03 [ksoftirqd/1]

    root 21 0.0 0.0 0 0 ? S 20:19 0:00 [cpuhp/2]

    root 22 0.0 0.0 0 0 ? S 20:19 0:00 [migration/2]

    root 23 0.0 0.0 0 0 ? S 20:19 0:03 [ksoftirqd/2]

    root 26 0.0 0.0 0 0 ? S 20:19 0:00 [cpuhp/3]

    root 27 0.0 0.0 0 0 ? S 20:19 0:00 [migration/3]

    root 28 0.0 0.0 0 0 ? S 20:19 0:03 [ksoftirqd/3]

    root 31 0.0 0.0 0 0 ? S 20:19 0:00 [kdevtmpfs]

    root 32 0.0 0.0 0 0 ? I< 20:19 0:00 [inet_frag_wq]

    root 37 0.0 0.0 0 0 ? S 20:19 0:00 [kauditd]

    root 38 0.0 0.0 0 0 ? S 20:19 0:00 [khungtaskd]

    root 39 0.0 0.0 0 0 ? S 20:19 0:00 [oom_reaper]

    root 40 0.0 0.0 0 0 ? I< 20:19 0:00 [writeback]

    root 41 0.0 0.0 0 0 ? S 20:19 0:00 [kcompactd0]

    root 64 0.0 0.0 0 0 ? I< 20:19 0:00 [kblockd]

    root 65 0.0 0.0 0 0 ? I< 20:19 0:00 [blkcg_punt_bio]

    root 66 0.0 0.0 0 0 ? S 20:19 0:00 [watchdogd]

    root 69 0.0 0.0 0 0 ? I< 20:19 0:00 [rpciod]

    root 71 0.0 0.0 0 0 ? I< 20:19 0:00 [xprtiod]

    root 73 0.0 0.0 0 0 ? S 20:19 0:00 [kswapd0]

    root 74 0.0 0.0 0 0 ? I< 20:19 0:00 [nfsiod]

    root 75 0.0 0.0 0 0 ? I< 20:19 0:00 [kthrotld]

    root 77 0.0 0.0 0 0 ? I< 20:19 0:00 [iscsi_eh]

    root 78 0.0 0.0 0 0 ? I< 20:19 0:00 [iscsi_conn_clea]

    root 79 0.0 0.0 0 0 ? I< 20:19 0:00 [nvme-wq]

    root 80 0.0 0.0 0 0 ? I< 20:19 0:00 [nvme-reset-wq]

    root 81 0.0 0.0 0 0 ? I< 20:19 0:00 [nvme-delete-wq]

    root 83 0.0 0.0 0 0 ? S 20:19 0:00 [ptp0]

    root 84 0.0 0.0 0 0 ? I< 20:19 0:00 [DWC Notificatio]

    root 85 0.0 0.0 0 0 ? I< 20:19 0:00 [uas]

    root 86 0.0 0.0 0 0 ? S< 20:19 0:00 [vchiq-slot/0]

    root 87 0.0 0.0 0 0 ? S< 20:19 0:00 [vchiq-recy/0]

    root 88 0.0 0.0 0 0 ? S< 20:19 0:00 [vchiq-sync/0]

    root 89 0.0 0.0 0 0 ? I< 20:19 0:00 [zswap-shrink]

    root 91 0.0 0.0 0 0 ? I< 20:19 0:00 [sdhci]

    root 92 0.0 0.0 0 0 ? S 20:19 0:00 [irq/43-mmc0]

    root 94 0.0 0.0 0 0 ? I< 20:19 0:00 [mmc_complete]

    root 95 0.0 0.0 0 0 ? I< 20:19 0:00 [kworker/3:1H-kblockd]

    root 96 0.0 0.0 0 0 ? I< 20:19 0:02 [kworker/0:1H-events_highpri]

    root 98 0.0 0.0 0 0 ? S 20:19 0:00 [jbd2/mmcblk0p2-]

    root 99 0.0 0.0 0 0 ? I< 20:19 0:00 [ext4-rsv-conver]

    root 101 0.0 0.0 0 0 ? I< 20:19 0:00 [kworker/2:1H-kblockd]

    root 102 0.0 0.0 0 0 ? S 20:19 0:00 [scsi_eh_0]

    root 103 0.0 0.0 0 0 ? I< 20:19 0:00 [scsi_tmf_0]

    root 104 0.0 0.0 0 0 ? S 20:19 0:00 [usb-storage]

    root 105 0.0 0.0 0 0 ? I< 20:19 0:00 [mld]

    root 106 0.0 0.0 0 0 ? I< 20:19 0:00 [ipv6_addrconf]

    root 126 0.0 0.0 0 0 ? I< 20:19 0:00 [kworker/1:2H-kblockd]

    root 174 0.0 0.1 19960 4876 ? Ss 20:19 0:00 /lib/systemd/systemd-udevd

    root 204 0.0 0.0 0 0 ? S 20:19 0:00 [vchiq-keep/0]

    root 208 0.0 0.0 0 0 ? S 20:19 0:00 [irq/56-feb10000]

    root 280 0.0 0.0 0 0 ? I< 20:19 0:00 [cfg80211]

    avahi 286 0.0 0.0 6912 2748 ? Ss 20:19 0:05 avahi-daemon: running [debian.local]

    root 287 0.0 0.0 8548 2504 ? Ss 20:19 0:00 /usr/sbin/cron -f

    message+ 288 0.0 0.0 7852 3612 ? Ss 20:19 0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only

    root 289 0.0 0.3 60388 13692 ? Ssl 20:19 0:00 /usr/sbin/NetworkManager --no-daemon

    avahi 291 0.0 0.0 6756 260 ? S 20:19 0:00 avahi-daemon: chroot helper

    root 298 0.0 0.1 39552 5868 ? Ssl 20:19 0:00 /usr/libexec/polkitd --no-debug

    root 307 0.0 0.0 0 0 ? I< 20:19 0:00 [brcmf_wq/mmc1:0]

    root 316 0.0 0.1 12940 5968 ? Ss 20:19 0:00 /lib/systemd/systemd-logind

    root 317 0.0 0.1 11788 4112 ? Ss 20:19 0:00 /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant

    root 328 0.0 0.0 0 0 ? S 20:19 0:01 [brcmf_wdog/mmc1]

    root 395 0.0 0.0 0 0 ? I< 20:19 0:01 [kworker/u9:1-brcmf_wq/mmc1:0001:1]

    root 396 0.0 0.0 27696 80 ? SLsl 20:19 0:00 /usr/sbin/rngd -r /dev/hwrng

    root 403 0.0 0.2 57796 8684 ? Ssl 20:19 0:00 /usr/sbin/ModemManager

    root 533 0.0 0.0 12056 3480 ? Ss 20:19 0:00 /sbin/wpa_supplicant -s -B -P /run/wpa_supplicant.wlan0.pid -i wlan0 -W -D nl80211,wext -c /etc/wpa_supplicant/wpa_supplicant.conf

    root 602 0.0 0.0 2516 100 ? Ss 20:19 0:00 /sbin/wpa_cli -B -P /run/wpa_action.wlan0.pid -i wlan0 -p /var/run/wpa_supplicant -a /sbin/wpa_action

    root 607 0.0 0.3 70944 12704 ? Ss 20:19 0:03 /usr/sbin/nmbd --foreground --no-process-group

    root 681 0.0 0.1 12408 5656 ? Ss 20:19 0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups

    root 702 0.0 0.0 0 0 ? S 20:19 0:00 [jbd2/zram1-8]

    root 703 0.0 0.0 0 0 ? I< 20:19 0:00 [ext4-rsv-conver]

    root 731 0.0 0.4 84664 19416 ? Ss 20:19 0:00 /usr/sbin/smbd --foreground --no-process-group

    root 813 0.0 0.0 0 0 ? S 20:19 0:00 [jbd2/zram2-8]

    root 815 0.0 0.0 0 0 ? I< 20:19 0:00 [ext4-rsv-conver]

    root 848 0.0 0.2 82984 10940 ? S 20:19 0:00 /usr/sbin/smbd --foreground --no-process-group

    root 849 0.0 0.1 82988 6040 ? S 20:19 0:00 /usr/sbin/smbd --foreground --no-process-group

    root 861 0.0 0.2 84652 11512 ? S 20:19 0:00 /usr/sbin/smbd --foreground --no-process-group

    root 972 0.1 0.0 0 0 ? I< 20:20 0:08 [kworker/u9:2-brcmf_wq/mmc1:0001:1]

    root 973 0.0 0.0 2052 108 ? S 20:20 0:00 /usr/bin/hciattach /dev/serial1 bcm43xx 3000000 flow -

    root 999 0.0 0.1 33700 4968 ? Ssl 20:20 0:00 /sbin/dhclient -4 -v -i -pf /run/dhclient.wlan0.pid -lf /var/lib/dhcp/dhclient.wlan0.leases -I -df /var/lib/dhcp/dhclient6.wlan0.leases wlan0

    root 1033 0.0 0.2 61996 8120 ? Ss 20:20 0:03 /lib/systemd/systemd-journald

    root 1057 0.0 0.1 21452 7708 ? Ss 20:20 0:00 /usr/libexec/bluetooth/bluetoothd

    mosquit+ 1069 0.0 0.1 12232 5212 ? Ss 20:20 0:04 /usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf

    root 1160 0.0 0.0 0 0 ? I< 20:20 0:00 [cryptd]

    root 1162 0.0 0.0 26544 2944 ? Ssl 20:20 0:00 /usr/sbin/rsyslogd -n -iNONE

    systemd+ 1212 0.0 0.0 21844 2348 ? Ssl 20:20 0:00 /lib/systemd/systemd-timesyncd

    root 2578 0.0 0.0 0 0 ? I 20:24 0:00 [kworker/3:0-mm_percpu_wq]

    root 7499 0.0 0.1 14616 7060 ? Ss 20:47 0:01 sshd: openhabian [priv]

    openhab+ 7549 0.0 0.1 14420 7648 ? Ss 20:48 0:00 /lib/systemd/systemd --user

    openhab+ 7550 0.0 0.0 36332 3640 ? S 20:48 0:00 (sd-pam)

    openhab+ 7573 0.0 0.1 14616 4444 ? R 20:48 0:00 sshd: openhabian@pts/0

    openhab+ 7574 0.0 0.1 9380 4428 pts/0 Ss 20:48 0:00 -bash

    root 10536 0.0 0.4 93696 16980 ? S 21:04 0:00 /usr/sbin/smbd --foreground --no-process-group

    root 10659 0.0 0.0 0 0 ? I< 21:16 0:00 [kworker/0:2H]

    root 10710 0.0 0.0 0 0 ? I 21:19 0:00 [kworker/u8:0-events_unbound]

    openhab 10746 25.8 7.8 1332288 314144 ? Ssl 21:21 9:26 /usr/bin/java -XX:-UsePerfData -Dopenhab.home=/usr/share/openhab -Dopenhab.conf=/etc/openhab -Dopenhab.runtime=/usr/share/openhab/runtime -Dopenhab.userdata=/var/lib/openha

    frontail 10747 0.1 1.1 128260 45016 ? Ssl 21:21 0:02 node /usr/lib/node_modules/frontail/bin/frontail --disable-usage-stats --ui-highlight --ui-highlight-preset /usr/lib/node_modules/frontail/preset/openhab_AEM.json --theme o

    frontail 10884 0.0 0.0 6868 360 ? S 21:21 0:00 tail -n 200 -F /var/log/openhab/openhab.log /var/log/openhab/events.log

    root 12438 0.0 0.0 0 0 ? I 21:27 0:00 [kworker/2:2-mm_percpu_wq]

    root 13052 0.0 0.0 0 0 ? I< 21:30 0:00 [kworker/2:2H]

    root 13104 0.0 0.0 0 0 ? I< 21:30 0:00 [kworker/1:0H]

    root 13757 0.0 0.0 0 0 ? I< 21:33 0:00 [kworker/3:2H]

    root 15896 0.0 0.0 0 0 ? I 21:43 0:00 [kworker/0:1-events]

    root 16043 0.0 0.0 0 0 ? I 21:44 0:00 [kworker/1:0-mm_percpu_wq]

    root 16605 0.0 0.0 0 0 ? I 21:47 0:00 [kworker/u8:2-events_unbound]

    root 16922 0.0 0.0 0 0 ? I 21:48 0:00 [kworker/2:0-mm_percpu_wq]

    root 17166 0.0 0.0 0 0 ? I 21:49 0:00 [kworker/1:2-mm_percpu_wq]

    root 17305 0.0 0.0 0 0 ? I 21:50 0:00 [kworker/0:2-mm_percpu_wq]

    root 17379 0.0 0.0 0 0 ? I 21:50 0:00 [kworker/3:2-mm_percpu_wq]

    root 18047 0.0 0.0 0 0 ? I 21:53 0:00 [kworker/2:1-events_power_efficient]

    root 18095 0.0 0.0 0 0 ? I 21:54 0:00 [kworker/u8:1]

    root 18277 0.0 0.0 0 0 ? I 21:54 0:00 [kworker/1:1-mm_percpu_wq]

    root 18498 0.0 0.0 0 0 ? I 21:55 0:00 [kworker/3:1-events_freezable]

    openhab+ 18920 0.0 0.0 11208 2648 pts/0 R+ 21:57 0:00 ps aux

Jetzt mitmachen!

Du hast noch kein Benutzerkonto auf unserer Seite? Registriere dich kostenlos und nimm an unserer Community teil!