树莓派如何查看电源的电压 All In One
树莓派如何查看电源的电压 All In One
电源
欠压
解决方案1: 使用树莓派的官方电源
✅
解决方案2: 使用5V 输出可调节的电流大小的电源,用万用表
精确测量!
error ❌
欠压
bug
Low volatage warning
Please check your power supply
hwmon hu=wmon1: Undervolatge detected!
solution
# 电压太低,不能完全带动 CPU/GPU 会损坏 SD 卡 ⚠️
# 欠压检测 ✅
$ vcgencmd get_throttled
throttled=0x50000
https://www.raspberrypi.com/documentation/computers/os.html#get_throttled
https://www.raspberrypi.org/documentation/computers/os.html#vcgencmd
bash shell
alias
$ sudo vim .bashrc
$ cat .bashrc
# 🚀
alias vcmv='vcgencmd measure_volts'
alias vcmt='vcgencmd measure_temp'
alias vcarm='vcgencmd measure_clock arm'
# 绝对路径✅
alias vcgt='/home/pi/vcgt.sh'
# update ✅
# source ~/.bashrc
$ source ~/.bashrc
$ vcarm
frequency(48)=600000000
$ vcmv
volt=1.3125V
$ vcmt
temp=46.7'C
$ vcgt
✅ OK
cat ./vcgt.sh
#!/usr/bin/env bash
# coding: utf8
bug='throttled=0x50005'
state=$(vcgencmd get_throttled)
# echo $state
# 没有空格 bug ❌
# if [$state == $bug]
# 有空格 OK ✅
# if [ $state == $bug ]
# 有空格 OK ✅
if [ $state == 'throttled=0x50005' ]
then
echo "❌ Error"
else
echo "✅ OK"
fi
# WIFI=$(ifconfig | grep "192.168")
# echo $WIFI
demos
$ ssh pi@192.168.18.135
pi@192.168.18.135's password:
Linux rpi3b 5.15.84-v8+ #1613 SMP PREEMPT Thu Jan 5 12:03:08 GMT 2023 aarch64
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
You have no mail.
Last login: Sat Jun 3 13:36:51 2023
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.
每次登录自动执行脚本 ✅
auto send ip address to DingDing group notice!
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50005
# ✅ 0x50000
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50000
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50000
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50000
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50000
# ❌ =0x50005
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50005
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50005
pi@rpi3b:~ $ vcgencmd get_throttled
throttled=0x50005
pi@rpi3b:~ $ dmesg
pi@rpi3b:~ $ dmesg
$ dmesg
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 5.15.84-v8+ (dom@buildbot) (aarch64-linux-gnu-gcc-8 (Ubuntu/Linaro 8.4.0-3ubuntu1) 8.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #1613 SMP PREEMPT Thu Jan 5 12:03:08 GMT 2023
[ 0.000000] random: crng init done
[ 0.000000] Machine model: Raspberry Pi 3 Model B Rev 1.2
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: created CMA memory pool at 0x000000001ec00000, size 256 MiB
[ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000000000-0x0000000039bfffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000000000-0x0000000039bfffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000039bfffff]
[ 0.000000] On node 0, zone DMA: 25600 pages in unavailable ranges
[ 0.000000] percpu: Embedded 28 pages/cpu s77336 r8192 d29160 u114688
[ 0.000000] pcpu-alloc: s77336 r8192 d29160 u114688 alloc=28*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] CPU features: kernel page table isolation forced ON by KASLR
[ 0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[ 0.000000] CPU features: detected: ARM erratum 843419
[ 0.000000] CPU features: detected: ARM erratum 845719
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 232848
[ 0.000000] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_compat_alsa=0 snd_bcm2835.enable_hdmi=1 video=HDMI-A-1:1920x1080M@60D vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000 console=ttyS0,115200 console=tty1 root=PARTUUID=155308b8-02 rootfstype=ext4 fsck.repair=yes rootwait
[ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] Memory: 641012K/946176K available (11520K kernel code, 1956K rwdata, 4136K rodata, 3776K init, 975K bss, 43020K reserved, 262144K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] ftrace: allocating 38065 entries in 149 pages
[ 0.000000] ftrace: allocated 149 pages with 4 groups
[ 0.000000] trace event string verifier disabled
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Rude variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] Root IRQ handler: bcm2836_arm_irqchip_handle_irq
[ 0.000000] arch_timer: cp15 timer(s) running at 19.20MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[ 0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[ 0.000420] Console: colour dummy device 80x25
[ 0.001355] printk: console [tty1] enabled
[ 0.001443] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[ 0.001509] pid_max: default: 32768 minimum: 301
[ 0.001712] LSM: Security Framework initializing
[ 0.001991] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 0.002060] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[ 0.003924] cgroup: Disabling memory control group subsystem
[ 0.008231] rcu: Hierarchical SRCU implementation.
[ 0.009774] EFI services will not be available.
[ 0.010585] smp: Bringing up secondary CPUs ...
[ 0.012350] Detected VIPT I-cache on CPU1
[ 0.012457] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.014233] Detected VIPT I-cache on CPU2
[ 0.014302] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 0.016009] Detected VIPT I-cache on CPU3
[ 0.016070] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 0.016285] smp: Brought up 1 node, 4 CPUs
[ 0.016447] SMP: Total of 4 processors activated.
[ 0.016482] CPU features: detected: 32-bit EL0 Support
[ 0.016514] CPU features: detected: 32-bit EL1 Support
[ 0.016548] CPU features: detected: CRC32 instructions
[ 0.060169] CPU: All CPU(s) started at EL2
[ 0.060350] alternatives: patching kernel code
[ 0.062526] devtmpfs: initialized
[ 0.085946] Enabled cp15_barrier support
[ 0.086039] Enabled setend support
[ 0.086084] KASLR enabled
[ 0.086385] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.086459] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.099947] pinctrl core: initialized pinctrl subsystem
[ 0.101357] DMI not present or invalid.
[ 0.102376] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.113976] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[ 0.114538] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.116024] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.116230] audit: initializing netlink subsys (disabled)
[ 0.116726] audit: type=2000 audit(0.116:1): state=initialized audit_enabled=0 res=1
[ 0.117724] thermal_sys: Registered thermal governor 'step_wise'
[ 0.118074] cpuidle: using governor menu
[ 0.118644] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.118963] ASID allocator initialised with 32768 entries
[ 0.119239] Serial: AMBA PL011 UART driver
[ 0.133933] bcm2835-mbox 3f00b880.mailbox: mailbox enabled
[ 0.160941] raspberrypi-firmware soc:firmware: Attached to firmware from 2023-01-05T10:48:31, variant start
[ 0.164956] raspberrypi-firmware soc:firmware: Firmware hash is 8ba17717fbcedd4c3b6d4bce7e50c7af4155cba9
[ 0.227885] bcm2835-dma 3f007000.dma: DMA legacy API manager, dmachans=0x1
[ 0.233810] vgaarb: loaded
[ 0.234517] SCSI subsystem initialized
[ 0.234892] usbcore: registered new interface driver usbfs
[ 0.234999] usbcore: registered new interface driver hub
[ 0.235117] usbcore: registered new device driver usb
[ 0.235679] usb_phy_generic phy: supply vcc not found, using dummy regulator
[ 0.236022] usb_phy_generic phy: dummy supplies not allowed for exclusive requests
[ 0.236465] pps_core: LinuxPPS API ver. 1 registered
[ 0.236502] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.236570] PTP clock support registered
[ 0.239070] clocksource: Switched to clocksource arch_sys_counter
[ 0.379936] VFS: Disk quotas dquot_6.6.0
[ 0.380117] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.380428] FS-Cache: Loaded
[ 0.380800] CacheFiles: Loaded
[ 0.382393] simple-framebuffer 3e402000.framebuffer: framebuffer at 0x3e402000, 0x7f8000 bytes
[ 0.382450] simple-framebuffer 3e402000.framebuffer: format=a8r8g8b8, mode=1920x1080x32, linelength=7680
[ 0.418764] Console: switching to colour frame buffer device 240x67
[ 0.452294] simple-framebuffer 3e402000.framebuffer: fb0: simplefb registered!
[ 0.468244] NET: Registered PF_INET protocol family
[ 0.468737] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.471028] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[ 0.471386] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.471645] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.472006] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.472446] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.472949] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 0.473211] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[ 0.474496] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.476095] RPC: Registered named UNIX socket transport module.
[ 0.476297] RPC: Registered udp transport module.
[ 0.476455] RPC: Registered tcp transport module.
[ 0.476612] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.476826] PCI: CLS 0 bytes, default 64
[ 0.479534] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[ 0.480169] kvm [1]: IPA Size Limit: 40 bits
[ 0.482111] kvm [1]: Hyp mode initialized successfully
[ 1.754666] Initialise system trusted keyrings
[ 1.755450] workingset: timestamp_bits=46 max_order=18 bucket_order=0
[ 1.766735] zbud: loaded
[ 1.769743] FS-Cache: Netfs 'nfs' registered for caching
[ 1.770985] NFS: Registering the id_resolver key type
[ 1.771239] Key type id_resolver registered
[ 1.771386] Key type id_legacy registered
[ 1.771659] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 1.771876] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 1.773924] Key type asymmetric registered
[ 1.774078] Asymmetric key parser 'x509' registered
[ 1.774346] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 1.775001] io scheduler mq-deadline registered
[ 1.775209] io scheduler kyber registered
[ 1.793494] bcm2835-rng 3f104000.rng: hwrng registered
[ 1.794685] vc-mem: phys_addr:0x00000000 mem_base=0x3ec00000 mem_size:0x40000000(1024 MiB)
[ 1.797047] gpiomem-bcm2835 3f200000.gpiomem: Initialised: Registers at 0x3f200000
[ 1.817389] brd: module loaded
[ 1.841607] loop: module loaded
[ 1.851271] Loading iSCSI transport class v2.0-870.
[ 1.867010] usbcore: registered new interface driver r8152
[ 1.875514] usbcore: registered new interface driver lan78xx
[ 1.883819] usbcore: registered new interface driver smsc95xx
[ 1.892620] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
[ 2.629577] Core Release: 2.80a
[ 2.637851] Setting default values for core params
[ 2.646115] Finished setting default values for core params
[ 2.854865] Using Buffer DMA mode
[ 2.863017] Periodic Transfer Interrupt Enhancement - disabled
[ 2.871239] Multiprocessor Interrupt Enhancement - disabled
[ 2.879449] OTG VER PARAM: 0, OTG VER FLAG: 0
[ 2.887550] Dedicated Tx FIFOs mode
[ 2.900397] WARN::dwc_otg_hcd_init:1074: FIQ DMA bounce buffers: virt = ffffffc008471000 dma = 0x00000000df000000 len=9024
[ 2.916754] FIQ FSM acceleration enabled for :
Non-periodic Split Transactions
Periodic Split Transactions
High-Speed Isochronous Endpoints
Interrupt/Control Split Transaction hack enabled
[ 2.957470] dwc_otg: Microframe scheduler enabled
[ 2.957546] WARN::hcd_init_fiq:497: MPHI regs_base at ffffffc00806d000
[ 2.973620] dwc_otg 3f980000.usb: DWC OTG Controller
[ 2.981660] dwc_otg 3f980000.usb: new USB bus registered, assigned bus number 1
[ 2.989731] dwc_otg 3f980000.usb: irq 74, io mem 0x00000000
[ 2.997705] Init: Port Power? op_state=1
[ 3.005512] Init: Power Port (0)
[ 3.013736] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 3.021565] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.029384] usb usb1: Product: DWC OTG Controller
[ 3.037149] usb usb1: Manufacturer: Linux 5.15.84-v8+ dwc_otg_hcd
[ 3.044891] usb usb1: SerialNumber: 3f980000.usb
[ 3.053650] hub 1-0:1.0: USB hub found
[ 3.061335] hub 1-0:1.0: 1 port detected
[ 3.070145] dwc_otg: FIQ enabled
[ 3.070166] dwc_otg: NAK holdoff enabled
[ 3.070180] dwc_otg: FIQ split-transaction FSM enabled
[ 3.070204] Module dwc_common_port init
[ 3.071098] usbcore: registered new interface driver uas
[ 3.079032] usbcore: registered new interface driver usb-storage
[ 3.086918] mousedev: PS/2 mouse device common for all mice
[ 3.100567] sdhci: Secure Digital Host Controller Interface driver
[ 3.108281] sdhci: Copyright(c) Pierre Ossman
[ 3.116640] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.129165] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.137689] hid: raw HID events driver (C) Jiri Kosina
[ 3.145505] usbcore: registered new interface driver usbhid
[ 3.153024] usbhid: USB HID core driver
[ 3.160958] ashmem: initialized
[ 3.177312] NET: Registered PF_PACKET protocol family
[ 3.185149] Indeed it is in host mode hprt0 = 00021501
[ 3.195283] Key type dns_resolver registered
[ 3.215273] registered taskstats version 1
[ 3.222770] Loading compiled-in X.509 certificates
[ 3.247653] Key type .fscrypt registered
[ 3.255011] Key type fscrypt-provisioning registered
[ 3.282334] uart-pl011 3f201000.serial: cts_event_workaround enabled
[ 3.290075] 3f201000.serial: ttyAMA0 at MMIO 0x3f201000 (irq = 99, base_baud = 0) is a PL011 rev2
[ 3.304087] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer
[ 3.312472] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver
[ 3.323283] mmc-bcm2835 3f300000.mmcnr: mmc_debug:0 mmc_debug2:0
[ 3.330919] mmc-bcm2835 3f300000.mmcnr: DMA channel allocated
[ 3.365776] sdhost: log_buf @ 000000008f38ffe8 (c2ee9000)
[ 3.403123] usb 1-1: new high-speed USB device number 2 using dwc_otg
[ 3.410778] Indeed it is in host mode hprt0 = 00001101
[ 3.430994] mmc0: sdhost-bcm2835 loaded - DMA enabled (>1)
[ 3.463919] of_cfs_init
[ 3.471672] of_cfs_init: OK
[ 3.480967] Waiting for root device PARTUUID=155308b8-02...
[ 3.535912] mmc0: host does not support reading read-only switch, assuming write-enable
[ 3.550078] mmc0: new high speed SDHC card at address aaaa
[ 3.560007] mmcblk0: mmc0:aaaa SC32G 29.7 GiB
[ 3.577110] mmcblk0: p1 p2
[ 3.585959] mmcblk0: mmc0:aaaa SC32G 29.7 GiB (quirks 0x00004000)
[ 3.605903] mmc1: new high speed SDIO card at address 0001
[ 3.621258] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 3.629412] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
[ 3.639746] usb 1-1: New USB device found, idVendor=0424, idProduct=9514, bcdDevice= 2.00
[ 3.640607] devtmpfs: mounted
[ 3.647858] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.665560] hub 1-1:1.0: USB hub found
[ 3.667501] Freeing unused kernel memory: 3776K
[ 3.673772] hub 1-1:1.0: 5 ports detected
[ 3.681520] Run /sbin/init as init process
[ 3.697039] with arguments:
[ 3.697055] /sbin/init
[ 3.697070] with environment:
[ 3.697082] HOME=/
[ 3.697097] TERM=linux
[ 3.983188] usb 1-1.1: new high-speed USB device number 3 using dwc_otg
[ 4.091724] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00, bcdDevice= 2.00
[ 4.100016] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.111418] smsc95xx v2.0.0
[ 4.355278] systemd[1]: System time before build time, advancing clock.
[ 4.464313] SMSC LAN8700 usb-001:003:01: attached PHY driver (mii_bus:phy_addr=usb-001:003:01, irq=POLL)
[ 4.474250] smsc95xx 1-1.1:1.0 eth0: register 'smsc95xx' at usb-3f980000.usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:bf:9b:e6
[ 4.563171] usb 1-1.3: new full-speed USB device number 4 using dwc_otg
[ 4.603130] NET: Registered PF_INET6 protocol family
[ 4.614370] Segment Routing with IPv6
[ 4.622836] In-situ OAM (IOAM) with IPv6
[ 4.674717] usb 1-1.3: New USB device found, idVendor=24ae, idProduct=4016, bcdDevice= 1.11
[ 4.683578] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.692293] usb 1-1.3: Product: USB DEVICE
[ 4.701010] usb 1-1.3: Manufacturer: SONiX
[ 4.715990] input: SONiX USB DEVICE as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.0/0003:24AE:4016.0001/input/input0
[ 4.743528] systemd[1]: systemd 247.3-7+deb11u1 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[ 4.764436] systemd[1]: Detected architecture arm64.
[ 4.784628] hid-generic 0003:24AE:4016.0001: input,hidraw0: USB HID v1.11 Keyboard [SONiX USB DEVICE] on usb-3f980000.usb-1.3/input0
[ 4.805309] input: SONiX USB DEVICE Keyboard as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.1/0003:24AE:4016.0002/input/input1
[ 4.841697] systemd[1]: Set hostname to <rpi3b>.
[ 4.863936] input: SONiX USB DEVICE as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.1/0003:24AE:4016.0002/input/input2
[ 4.875726] hid-generic 0003:24AE:4016.0002: input,hiddev96,hidraw1: USB HID v1.11 Keyboard [SONiX USB DEVICE] on usb-3f980000.usb-1.3/input1
[ 4.971240] usb 1-1.5: new full-speed USB device number 5 using dwc_otg
[ 5.093558] usb 1-1.5: New USB device found, idVendor=046d, idProduct=c52f, bcdDevice=30.00
[ 5.105298] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5.119826] usb 1-1.5: Product: USB Receiver
[ 5.131529] usb 1-1.5: Manufacturer: Logitech
[ 5.154110] input: Logitech USB Receiver as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5:1.0/0003:046D:C52F.0003/input/input3
[ 5.167299] hid-generic 0003:046D:C52F.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-3f980000.usb-1.5/input0
[ 5.186819] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5:1.1/0003:046D:C52F.0004/input/input4
[ 5.256105] hid-generic 0003:046D:C52F.0004: input,hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-3f980000.usb-1.5/input1
[ 6.125947] systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
[ 6.564199] systemd[1]: Queued start job for default target Multi-User System.
[ 6.586463] systemd[1]: Created slice system-getty.slice.
[ 6.615264] systemd[1]: Created slice system-modprobe.slice.
[ 6.643411] systemd[1]: Created slice system-postfix.slice.
[ 6.671672] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ 6.699877] systemd[1]: Created slice User and Session Slice.
[ 6.727180] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 6.755825] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 6.783743] systemd[1]: Reached target Slices.
[ 6.810482] systemd[1]: Reached target Swap.
[ 6.838626] systemd[1]: Listening on Syslog Socket.
[ 6.866527] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 6.894040] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 6.923170] systemd[1]: Listening on Journal Audit Socket.
[ 6.951626] systemd[1]: Listening on Journal Socket (/dev/log).
[ 6.980374] systemd[1]: Listening on Journal Socket.
[ 7.017754] systemd[1]: Listening on udev Control Socket.
[ 7.045665] systemd[1]: Listening on udev Kernel Socket.
[ 7.073579] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[ 7.092842] systemd[1]: Mounting POSIX Message Queue File System...
[ 7.127618] systemd[1]: Mounting RPC Pipe File System...
[ 7.161823] systemd[1]: Mounting Kernel Debug File System...
[ 7.194885] systemd[1]: Mounting Kernel Trace File System...
[ 7.220754] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped.
[ 7.243272] systemd[1]: Starting Restore / save the current clock...
[ 7.276219] systemd[1]: Starting Set the console keyboard layout...
[ 7.310643] systemd[1]: Starting Create list of static device nodes for the current kernel...
[ 7.344480] systemd[1]: Starting Load Kernel Module configfs...
[ 7.380048] systemd[1]: Starting Load Kernel Module drm...
[ 7.419481] systemd[1]: Starting Load Kernel Module fuse...
[ 7.460333] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[ 7.480304] systemd[1]: Starting File System Check on Root Device...
[ 7.503464] fuse: init (API version 7.34)
[ 7.531399] systemd[1]: Starting Journal Service...
[ 7.588081] systemd[1]: Starting Load Kernel Modules...
[ 7.639869] systemd[1]: Starting Coldplug All udev Devices...
[ 7.700834] systemd[1]: Mounted POSIX Message Queue File System.
[ 7.724569] systemd[1]: Mounted RPC Pipe File System.
[ 7.747237] systemd[1]: Mounted Kernel Debug File System.
[ 7.769562] systemd[1]: Mounted Kernel Trace File System.
[ 7.780972] i2c_dev: i2c /dev entries driver
[ 7.806352] systemd[1]: Finished Restore / save the current clock.
[ 7.832596] systemd[1]: Finished Create list of static device nodes for the current kernel.
[ 7.857917] systemd[1]: modprobe@configfs.service: Succeeded.
[ 7.870531] systemd[1]: Finished Load Kernel Module configfs.
[ 7.896310] systemd[1]: modprobe@drm.service: Succeeded.
[ 7.909189] systemd[1]: Finished Load Kernel Module drm.
[ 7.934007] systemd[1]: modprobe@fuse.service: Succeeded.
[ 7.960782] systemd[1]: Finished Load Kernel Module fuse.
[ 7.986584] systemd[1]: Finished Load Kernel Modules.
[ 8.019888] systemd[1]: Finished File System Check on Root Device.
[ 8.042413] systemd[1]: Started Journal Service.
[ 8.407109] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null). Quota mode: none.
[ 8.505946] systemd-journald[149]: Received client request to flush runtime journal.
[ 8.525101] systemd-journald[149]: File /var/log/journal/8c3a6ca2b3734bd09010fb558b96f301/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ 10.650970] vc_sm_cma: module is from the staging directory, the quality is unknown, you have been warned.
[ 10.662538] bcm2835_vc_sm_cma_probe: Videocore shared memory driver
[ 10.662625] [vc_sm_connected_init]: start
[ 10.664930] mc: Linux media interface: v0.10
[ 10.671548] [vc_sm_connected_init]: installed successfully
[ 10.804323] videodev: Linux video capture interface: v2.00
[ 10.857729] snd_bcm2835: module is from the staging directory, the quality is unknown, you have been warned.
[ 10.876829] bcm2835_audio bcm2835_audio: card created with 8 channels
[ 10.929576] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned.
[ 11.000088] bcm2835_isp: module is from the staging directory, the quality is unknown, you have been warned.
[ 11.000853] bcm2835_v4l2: module is from the staging directory, the quality is unknown, you have been warned.
[ 11.038858] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video13
[ 11.041521] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video14
[ 11.044152] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video15
[ 11.051335] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video16
[ 11.051401] bcm2835-isp bcm2835-isp: Register output node 0 with media controller
[ 11.051439] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller
[ 11.051504] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller
[ 11.051534] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller
[ 11.074067] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video20
[ 11.075016] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video21
[ 11.077452] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video22
[ 11.078242] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video23
[ 11.078295] bcm2835-isp bcm2835-isp: Register output node 0 with media controller
[ 11.078332] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller
[ 11.078392] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller
[ 11.078420] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller
[ 11.088471] bcm2835-isp bcm2835-isp: Loaded V4L2 bcm2835-isp
[ 11.094678] bcm2835_codec: module is from the staging directory, the quality is unknown, you have been warned.
[ 11.125916] bcm2835-codec bcm2835-codec: Device registered as /dev/video10
[ 11.126010] bcm2835-codec bcm2835-codec: Loaded V4L2 decode
[ 11.136924] bcm2835-codec bcm2835-codec: Device registered as /dev/video11
[ 11.137027] bcm2835-codec bcm2835-codec: Loaded V4L2 encode
[ 11.143296] bcm2835-codec bcm2835-codec: Device registered as /dev/video12
[ 11.143387] bcm2835-codec bcm2835-codec: Loaded V4L2 isp
[ 11.147472] bcm2835-codec bcm2835-codec: Device registered as /dev/video18
[ 11.147578] bcm2835-codec bcm2835-codec: Loaded V4L2 image_fx
[ 11.152629] bcm2835-codec bcm2835-codec: Device registered as /dev/video31
[ 11.152763] bcm2835-codec bcm2835-codec: Loaded V4L2 encode_image
[ 11.477664] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 11.545488] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 11.567903] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[ 12.033961] brcmfmac: F1 signature read @0x18000000=0x1541a9a6
[ 12.058835] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43430-sdio for chip BCM43430/1
[ 12.060353] usbcore: registered new interface driver brcmfmac
[ 12.231914] logitech-djreceiver 0003:046D:C52F.0003: hidraw2: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-3f980000.usb-1.5/input0
[ 12.386988] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43430-sdio for chip BCM43430/1
[ 12.401047] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM43430/1 wl0: Jul 19 2021 03:24:18 version 7.45.98 (TOB) (56df937 CY) FWID 01-8e14b897
[ 12.528567] logitech-djreceiver 0003:046D:C52F.0004: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-3f980000.usb-1.5/input1
[ 12.590969] logitech-djreceiver 0003:046D:C52F.0004: device of type eQUAD step 4 DJ (0x04) connected on slot 1
[ 12.658527] input: Logitech Wireless Mouse PID:4057 Mouse as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5:1.1/0003:046D:C52F.0004/0003:046D:4057.0005/input/input7
[ 12.706938] input: Logitech Wireless Mouse PID:4057 Consumer Control as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5:1.1/0003:046D:C52F.0004/0003:046D:4057.0005/input/input8
[ 12.721362] hid-generic 0003:046D:4057.0005: input,hidraw4: USB HID v1.11 Mouse [Logitech Wireless Mouse PID:4057] on usb-3f980000.usb-1.5/input1:1
[ 12.884674] checking generic (3e402000 7f8000) vs hw (0 ffffffffffffffff)
[ 12.884717] fb0: switching to vc4 from simple
[ 12.927664] Console: switching to colour dummy device 80x25
[ 12.938002] vc4-drm soc:gpu: bound 3f400000.hvs (ops vc4_hvs_ops [vc4])
[ 12.941056] [drm] forcing HDMI-A-1 connector on
[ 12.942260] Registered IR keymap rc-cec
[ 12.942637] rc rc0: vc4 as /devices/platform/soc/3f902000.hdmi/rc/rc0
[ 12.943010] input: vc4 as /devices/platform/soc/3f902000.hdmi/rc/rc0/input12
[ 13.122009] vc4-drm soc:gpu: bound 3f902000.hdmi (ops vc4_hdmi_ops [vc4])
[ 13.122655] vc4-drm soc:gpu: bound 3f004000.txp (ops vc4_txp_ops [vc4])
[ 13.123279] vc4-drm soc:gpu: bound 3f206000.pixelvalve (ops vc4_crtc_ops [vc4])
[ 13.123820] vc4-drm soc:gpu: bound 3f207000.pixelvalve (ops vc4_crtc_ops [vc4])
[ 13.124299] vc4-drm soc:gpu: bound 3f807000.pixelvalve (ops vc4_crtc_ops [vc4])
[ 13.124712] vc4-drm soc:gpu: bound 3fc00000.v3d (ops vc4_v3d_ops [vc4])
[ 13.131622] [drm] Initialized vc4 0.0.0 20140616 for soc:gpu on minor 0
[ 13.204399] vc4-drm soc:gpu: [drm] The core clock cannot reach frequencies high enough to support 4k @ 60Hz.
[ 13.204442] vc4-drm soc:gpu: [drm] Please change your config.txt file to add hdmi_enable_4kp60.
[ 13.256901] Console: switching to colour frame buffer device 240x67
[ 13.279359] hwmon hwmon1: Undervoltage detected!
[ 13.320450] vc4-drm soc:gpu: [drm] fb0: vc4drmfb frame buffer device
[ 14.624929] uart-pl011 3f201000.serial: no DMA platform data
[ 14.789447] 8021q: 802.1Q VLAN Support v1.8
[ 15.020764] Adding 102396k swap on /var/swap. Priority:-2 extents:1 across:102396k SSFS
[ 15.686866] brcmfmac: brcmf_cfg80211_set_power_mgmt: power save enabled
[ 15.694753] brcmfmac: brcmf_cfg80211_set_power_mgmt: power save disabled
[ 15.859316] input: Logitech M280/320/275 as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.5/1-1.5:1.1/0003:046D:C52F.0004/0003:046D:4057.0005/input/input13
[ 15.861216] logitech-hidpp-device 0003:046D:4057.0005: input,hidraw4: USB HID v1.11 Mouse [Logitech M280/320/275] on usb-3f980000.usb-1.5/input1:1
[ 16.317522] smsc95xx 1-1.1:1.0 eth0: hardware isn't capable of remote wakeup
[ 16.481718] smsc95xx 1-1.1:1.0 eth0: Link is Down
[ 17.429071] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 18.851529] ICMPv6: process `dhcpcd' is using deprecated sysctl (syscall) net.ipv6.neigh.wlan0.retrans_time - use net.ipv6.neigh.wlan0.retrans_time_ms instead
[ 19.954603] Bluetooth: Core ver 2.22
[ 19.954862] NET: Registered PF_BLUETOOTH protocol family
[ 19.954882] Bluetooth: HCI device and connection manager initialized
[ 19.954929] Bluetooth: HCI socket layer initialized
[ 19.954959] Bluetooth: L2CAP socket layer initialized
[ 19.955026] Bluetooth: SCO socket layer initialized
[ 20.007523] Bluetooth: HCI UART driver ver 2.3
[ 20.007573] Bluetooth: HCI UART protocol H4 registered
[ 20.007767] Bluetooth: HCI UART protocol Three-wire (H5) registered
[ 20.009846] Bluetooth: HCI UART protocol Broadcom registered
[ 20.761068] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 20.761117] Bluetooth: BNEP filters: protocol multicast
[ 20.761162] Bluetooth: BNEP socket layer initialized
[ 20.827558] NET: Registered PF_ALG protocol family
[ 21.565573] Bluetooth: RFCOMM TTY layer initialized
[ 21.565658] Bluetooth: RFCOMM socket layer initialized
[ 21.565726] Bluetooth: RFCOMM ver 1.11
[ 33.759147] cam-dummy-reg: disabling
[ 39.487306] hwmon hwmon1: Voltage normalised
[ 43.519250] hwmon hwmon1: Undervoltage detected!
[ 47.551194] hwmon hwmon1: Voltage normalised
[ 55.615203] hwmon hwmon1: Undervoltage detected!
[ 59.647213] hwmon hwmon1: Voltage normalised
[ 118.356984] logitech-hidpp-device 0003:046D:4057.0005: HID++ 4.5 device connected.
[ 948.705280] hwmon hwmon1: Undervoltage detected!
[ 952.737278] hwmon hwmon1: Voltage normalised
[ 1966.789231] hwmon hwmon1: Undervoltage detected!
[ 1972.837212] hwmon hwmon1: Voltage normalised
[ 2785.288349] hwmon hwmon1: Undervoltage detected!
[ 2791.336433] hwmon hwmon1: Voltage normalised
[ 2795.368448] hwmon hwmon1: Undervoltage detected!
[ 2799.400405] hwmon hwmon1: Voltage normalised
[ 3605.802948] hwmon hwmon1: Undervoltage detected!
[ 3611.851029] hwmon hwmon1: Voltage normalised
[ 3613.867022] hwmon hwmon1: Undervoltage detected!
[ 3627.979216] hwmon hwmon1: Voltage normalised
[ 4488.813570] hwmon hwmon1: Undervoltage detected!
[ 4494.861649] hwmon hwmon1: Voltage normalised
[ 4496.877603] hwmon hwmon1: Undervoltage detected!
[ 4504.941700] hwmon hwmon1: Voltage normalised
[ 5398.032515] hwmon hwmon1: Undervoltage detected!
[ 5402.068241] hwmon hwmon1: Voltage normalised
[ 5408.112266] hwmon hwmon1: Undervoltage detected!
[ 5412.144269] hwmon hwmon1: Voltage normalised
[ 5710.513213] hwmon hwmon1: Undervoltage detected!
[ 5722.609307] hwmon hwmon1: Voltage normalised
[ 5775.025423] hwmon hwmon1: Undervoltage detected!
[ 5779.057433] hwmon hwmon1: Voltage normalised
[ 6061.298190] hwmon hwmon1: Undervoltage detected!
[ 6067.346197] hwmon hwmon1: Voltage normalised
[ 6113.714343] hwmon hwmon1: Undervoltage detected!
[ 6123.794394] hwmon hwmon1: Voltage normalised
[ 6131.858409] hwmon hwmon1: Undervoltage detected!
[ 6135.890409] hwmon hwmon1: Voltage normalised
[ 6204.435052] hwmon hwmon1: Undervoltage detected!
[ 6210.483275] hwmon hwmon1: Voltage normalised
[ 6238.708661] hwmon hwmon1: Undervoltage detected!
[ 6242.739699] hwmon hwmon1: Voltage normalised
[ 6246.771713] hwmon hwmon1: Undervoltage detected!
[ 6256.851829] hwmon hwmon1: Voltage normalised
[ 6270.964021] hwmon hwmon1: Undervoltage detected!
[ 6274.996155] hwmon hwmon1: Voltage normalised
[ 6281.044171] hwmon hwmon1: Undervoltage detected!
[ 6289.108316] hwmon hwmon1: Voltage normalised
[ 6297.172420] hwmon hwmon1: Undervoltage detected!
[ 6311.284571] hwmon hwmon1: Voltage normalised
[ 6317.332746] hwmon hwmon1: Undervoltage detected!
[ 6321.364739] hwmon hwmon1: Voltage normalised
[ 6333.460894] hwmon hwmon1: Undervoltage detected!
[ 6339.509073] hwmon hwmon1: Voltage normalised
[ 6353.621209] hwmon hwmon1: Undervoltage detected!
[ 6363.701247] hwmon hwmon1: Voltage normalised
[ 6367.733306] hwmon hwmon1: Undervoltage detected!
[ 6373.781383] hwmon hwmon1: Voltage normalised
[ 6375.797468] hwmon hwmon1: Undervoltage detected!
[ 6379.829444] hwmon hwmon1: Voltage normalised
[ 6381.845492] hwmon hwmon1: Undervoltage detected!
[ 6385.877523] hwmon hwmon1: Voltage normalised
[ 6395.957654] hwmon hwmon1: Undervoltage detected!
[ 6399.989679] hwmon hwmon1: Voltage normalised
[ 6418.133990] hwmon hwmon1: Undervoltage detected!
[ 6422.165980] hwmon hwmon1: Voltage normalised
[ 6428.214091] hwmon hwmon1: Undervoltage detected!
[ 6432.246128] hwmon hwmon1: Voltage normalised
[ 6440.310237] hwmon hwmon1: Undervoltage detected!
[ 6446.358238] hwmon hwmon1: Voltage normalised
[ 6460.470388] hwmon hwmon1: Undervoltage detected!
[ 6464.502429] hwmon hwmon1: Voltage normalised
[ 6472.566548] hwmon hwmon1: Undervoltage detected!
[ 6478.614599] hwmon hwmon1: Voltage normalised
[ 6480.630629] hwmon hwmon1: Undervoltage detected!
[ 6484.662657] hwmon hwmon1: Voltage normalised
[ 6486.678691] hwmon hwmon1: Undervoltage detected!
[ 6492.726738] hwmon hwmon1: Voltage normalised
[ 6539.095235] hwmon hwmon1: Undervoltage detected!
[ 6543.127272] hwmon hwmon1: Voltage normalised
[ 6547.159321] hwmon hwmon1: Undervoltage detected!
[ 6553.207368] hwmon hwmon1: Voltage normalised
[ 6571.351555] hwmon hwmon1: Undervoltage detected!
[ 6575.383584] hwmon hwmon1: Voltage normalised
[ 6581.431669] hwmon hwmon1: Undervoltage detected!
[ 6585.463681] hwmon hwmon1: Voltage normalised
[ 6597.559828] hwmon hwmon1: Undervoltage detected!
[ 6603.607910] hwmon hwmon1: Voltage normalised
[ 6611.672070] hwmon hwmon1: Undervoltage detected!
[ 6617.720030] hwmon hwmon1: Voltage normalised
[ 6625.784086] hwmon hwmon1: Undervoltage detected!
[ 6631.832135] hwmon hwmon1: Voltage normalised
[ 6639.896209] hwmon hwmon1: Undervoltage detected!
[ 6649.976296] hwmon hwmon1: Voltage normalised
[ 6680.216563] hwmon hwmon1: Undervoltage detected!
[ 6690.296675] hwmon hwmon1: Voltage normalised
[ 6700.376866] hwmon hwmon1: Undervoltage detected!
[ 6704.408802] hwmon hwmon1: Voltage normalised
[ 6718.520934] hwmon hwmon1: Undervoltage detected!
[ 6732.633073] hwmon hwmon1: Voltage normalised
[ 6736.665075] hwmon hwmon1: Undervoltage detected!
[ 6762.873293] hwmon hwmon1: Voltage normalised
[ 6924.154534] hwmon hwmon1: Undervoltage detected!
[ 6930.202581] hwmon hwmon1: Voltage normalised
[ 6958.426818] hwmon hwmon1: Undervoltage detected!
[ 6962.458852] hwmon hwmon1: Voltage normalised
[ 6980.602950] hwmon hwmon1: Undervoltage detected!
[ 6986.651026] hwmon hwmon1: Voltage normalised
[ 6988.667050] hwmon hwmon1: Undervoltage detected!
[ 6992.699033] hwmon hwmon1: Voltage normalised
[ 7002.779091] hwmon hwmon1: Undervoltage detected!
[ 7008.827118] hwmon hwmon1: Voltage normalised
[ 7010.843163] hwmon hwmon1: Undervoltage detected!
[ 7014.875173] hwmon hwmon1: Voltage normalised
[ 7035.035322] hwmon hwmon1: Undervoltage detected!
[ 7055.195486] hwmon hwmon1: Voltage normalised
[ 7077.371603] hwmon hwmon1: Undervoltage detected!
[ 7087.451711] hwmon hwmon1: Voltage normalised
[ 7089.467694] hwmon hwmon1: Undervoltage detected!
[ 7093.499696] hwmon hwmon1: Voltage normalised
[ 7101.563768] hwmon hwmon1: Undervoltage detected!
[ 7105.595783] hwmon hwmon1: Voltage normalised
[ 7113.659841] hwmon hwmon1: Undervoltage detected!
[ 7119.707884] hwmon hwmon1: Voltage normalised
[ 7153.980093] hwmon hwmon1: Undervoltage detected!
[ 7160.028111] hwmon hwmon1: Voltage normalised
[ 7178.172257] hwmon hwmon1: Undervoltage detected!
[ 7198.332441] hwmon hwmon1: Voltage normalised
[ 7202.364457] hwmon hwmon1: Undervoltage detected!
[ 7206.396419] hwmon hwmon1: Voltage normalised
[ 7216.476542] hwmon hwmon1: Undervoltage detected!
[ 7224.540536] hwmon hwmon1: Voltage normalised
[ 7226.556713] hwmon hwmon1: Undervoltage detected!
[ 7230.588571] hwmon hwmon1: Voltage normalised
[ 7232.604726] hwmon hwmon1: Undervoltage detected!
[ 7236.636604] hwmon hwmon1: Voltage normalised
[ 7246.716677] hwmon hwmon1: Undervoltage detected!
[ 7252.764701] hwmon hwmon1: Voltage normalised
[ 7258.812843] hwmon hwmon1: Undervoltage detected!
[ 7270.908838] hwmon hwmon1: Voltage normalised
[ 7278.972857] hwmon hwmon1: Undervoltage detected!
[ 7285.020909] hwmon hwmon1: Voltage normalised
[ 7299.133036] hwmon hwmon1: Undervoltage detected!
[ 7303.976932] usb 1-1.3: reset full-speed USB device number 4 using dwc_otg
[ 7304.661870] usb 1-1.3: USB disconnect, device number 4
[ 7305.974102] usb 1-1.5: USB disconnect, device number 5
[ 7309.212964] hwmon hwmon1: Voltage normalised
[ 7311.229051] hwmon hwmon1: Undervoltage detected!
[ 7315.261072] hwmon hwmon1: Voltage normalised
[ 8075.297143] hwmon hwmon1: Undervoltage detected!
[ 8091.425231] hwmon hwmon1: Voltage normalised
[ 9516.745497] hwmon hwmon1: Undervoltage detected!
[ 9522.793530] hwmon hwmon1: Voltage normalised
[10278.797442] hwmon hwmon1: Undervoltage detected!
[10288.877412] hwmon hwmon1: Voltage normalised
[10381.613836] hwmon hwmon1: Undervoltage detected!
[10385.645835] hwmon hwmon1: Voltage normalised
pi@rpi3b:~ $
(🐞 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原创文章!
DVFS
DVFS 的讨论
仅适用
于Raspberry Pi 4 B
型、Raspberry Pi 400 和计算模块 4。
Raspberry Pi 4 devices implement Dynamic Voltage and Frequency Scaling
(DVFS).
This technique allows Raspberry Pi 4 devices to run at lower temperatures whilst still providing the same performance.
Raspberry Pi 4 设备实现动态电压和频率缩放
(DVFS)。
该技术允许 Raspberry Pi 4 设备在较低温度
下运行,同时仍提供相同的性能
。
dvfs=1
=> allow undervoltage / 允许欠压
dvfs=2
=> fixed
voltage for default operating frequencies
dvfs=3
=> scale voltage up on demand for over clocking (default
). If over_voltage is specified in config.txt
then dynamic voltage scaling is disabled causing the system to revert to dvfs=2
.
https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#using-dvfs
$ vcgencmd get_config int
$ vcgencmd get_config int | grep dvfs
dvfs=3
vcgencmd
$ vcgencmd version
Jan 5 2023 10:48:31
Copyright (c) 2012 Broadcom
version 8ba17717fbcedd4c3b6d4bce7e50c7af4155cba9 (clean) (release) (start)
pi@rpi3b:~/Desktop $
$ vcgencmd commands
commands="commands, set_logging, bootloader_config, bootloader_version, cache_flush, codec_enabled, get_mem, get_rsts, measure_clock, measure_temp, measure_volts, get_hvs_asserts, get_config, get_throttled, pmicrd, pmicwr, read_ring_osc, version, otp_dump, set_vll_dir, set_backlight, get_lcd_info, arbiter, test_result, get_camera, enable_clock, scaling_kernel, scaling_sharpness, hdmi_ntsc_freqs, hdmi_adjust_clock, hdmi_status_show, hvs_update_fields, pwm_speedup, force_audio, hdmi_stream_channels, hdmi_channel_map, display_power, memtest, dispmanx_list, schmoo, render_bar, disk_notify, inuse_notify, sus_suspend, sus_status, sus_is_enabled, sus_stop_test_thread, egl_platform_switch, mem_validate, mem_oom, mem_reloc_stats, hdmi_cvt, hdmi_timings, readmr, file, vcos, ap_output_control, ap_output_post_processing, vchi_test_init, vchi_test_exit, pm_set_policy, pm_get_status, pm_show_stats, pm_start_logging, pm_stop_logging, vctest_memmap, vctest_start, vctest_stop, vctest_set, vctest_get"
pi@raspberrypi:~ $
SSH
SSH 无法连接 ❌
$ ssh pi@192.168.18.135
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ED25519 key sent by the remote host is
SHA256:RDtJTesQX/nQU+4pRcsqtQFV5kXbdM05U5gppFpG2dU.
Please contact your system administrator.
Add correct host key in /Users/xgqfrms-mbp/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /Users/xgqfrms-mbp/.ssh/known_hosts:14
Host key for 192.168.18.135 has changed and you have requested strict checking.
Host key verification failed.
# 删除旧的 SSH 连接记录即可 ✅
$ sudo vim /Users/xgqfrms-mbp/.ssh/known_hosts
$ sudo code /Users/xgqfrms-mbp/.ssh/known_hosts
refs
©xgqfrms 2012-2021
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/17453969.html
未经授权禁止转载,违者必究!