Raspberry Pi Docker Server instance hanging

Operating system

Linux

Joplin version

2.14.20

Sync target

Joplin Server

What issue do you have?

I've stood up a server instance per Guide for Joplin-Server on Raspberry Pi

There were some issues with mounted drives, so I've fallen back to local storage.

What I'm getting now are indiscriminate hangs.

The server will work for a bit, and then just stop responding.

This has happened when syncing from Linux and Windows clients.

Typically I have to power the RPi down and restart.

Any thoughts about possible culprits?

That's not much information to work with.

If the "hang" requires the Pi to be rebooted i.e. the actual computer has crashed, not just the container or docker (which then works after a reboot), what about:

  • Failing MicroSD card?
  • Insufficient power to the RasPi?
  • Worn / damaged / cheap USB power cable?
  • Failing / dirty power supply?
  • RasPi overheating?

What have you tried / eliminated so far?

Well,

It's a true RPi power supply. The SD card is a g4gb Sandisk Ultra that I used to use in a camera. It tests just fine.

Everything is good until I start Joplin. The Windows client is the worst.

The sync will start, and then stall at which point the Pi is hung.

This is a screen grab from the Windows client:

error

The Linux client gets a lot farther in the process, but it stalls as well, but doesn't give an error.

Thanks

Well this is definitely Joplin server hanging the pi.

I've played with sync-ing on Linux, which seems to be better behaved than the Windows client.

With Joplin running and syncing, the Pi goes non-responsive.

As soon as I kill Joplin, the Pi comes back to life.

I've got Joplin set to only use 1 stream, but this really doesn't seem to make a difference.

Is there a way to set up a running log on a SSH connection to the Pi and what what's going on?

Oh well. In playing, I've managed to completely hang the pi....

Time to power off.

cheers

I can help you out on this. Can you run and post:

sudo docker container ps
sudo docker image ls
free -mt
uname -a
dmesg -T

What did you find out from the actual error message?

Do the postgres container logs give any indication as to why it is rolling back to a savepoint?

This doc gives an idea of what a ROLLBACK TO SAVEPOINT is and says,

Description
Roll back all commands that were executed after the savepoint was established and then start a new subtransaction at the same transaction level...

I know next to nothing about postgres so this is all new to me, but if it means that your postgres db is for some reason suddenly "jumping back in time" it may explain why the Joplin Server is freaking out...

EDIT:

  1. SSH into the Raspi

  2. Run docker container ls

  3. Get the 12-character CONTAINER ID of the postgres container (first column), then

  4. Run docker logs CONTAINER ID -f where CONTAINER ID is the 12-character CONTAINER ID you got at step 3.

The -f means that the log will be followed and entries will continue to be shown if it is updated.

CTRL+C gets you back to a prompt.

You could also try the same with the CONTAINER ID for the Joplin Server container.

Sorry guys,

Didn't see your message.

I reconfigured the pi to operate from a USB drive I had instead of the sd card, and started the operation from scratch.

Other than having 4 devices with completely different data sets confusing the tar out of the server, it all seems to be working well at present.

Sigh,

Spoke too soon, SSDD.

Everything went well for a bit. I started importing some jex folders, and it all went sideways.

I've got it configured to write to a mounted drive (my Synology NAS).

Answer to your requests:

pi@joplin:~ $ sudo docker container ps
CONTAINER ID   IMAGE                             COMMAND                  CREATED         STATUS         PORTS                                           NAMES
2b01e4cfb518   etechonomy/joplin-server:latest   "tini -- yarn start-…"   8 minutes ago   Up 4 minutes   0.0.0.0:22300->22300/tcp, :::22300->22300/tcp   pi-app-1
efb021a527e4   postgres:latest                   "docker-entrypoint.s…"   8 minutes ago   Up 4 minutes   0.0.0.0:5432->5432/tcp, :::5432->5432/tcp       pi-db-1
pi@joplin:~ $ sudo docker image ls
REPOSITORY                 TAG       IMAGE ID       CREATED        SIZE
postgres                   latest    f701604050b1   12 days ago    453MB
etechonomy/joplin-server   latest    561ff9b8469a   4 months ago   1.58GB


pi@joplin:~ $ free -mt
               total        used        free      shared  buff/cache   available
Mem:             906         533         139         122         408         372
Swap:             99           4          95
Total:          1006         537         235


pi@joplin:~ $ uname -a
Linux joplin 6.6.20+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.6.20-1+rpt1 (2024-03-07) aarch64 GNU/Linux


pi@joplin:~ $ dmesg -T
[Wed May 22 10:16:40 2024] Booting Linux on physical CPU 0x0000000000 [0x410fd083]
[Wed May 22 10:16:40 2024] Linux version 6.6.20+rpt-rpi-v8 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT Debian 1:6.6.20-1+rpt1 (2024-03-07)
[Wed May 22 10:16:40 2024] KASLR enabled
[Wed May 22 10:16:40 2024] random: crng init done
[Wed May 22 10:16:40 2024] Machine model: Raspberry Pi 4 Model B Rev 1.1
[Wed May 22 10:16:40 2024] efi: UEFI not found.
[Wed May 22 10:16:40 2024] Reserved memory: created CMA memory pool at 0x000000000e400000, size 512 MiB
[Wed May 22 10:16:40 2024] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[Wed May 22 10:16:40 2024] OF: reserved mem: 0x000000000e400000..0x000000002e3fffff (524288 KiB) map reusable linux,cma
[Wed May 22 10:16:40 2024] OF: reserved mem: 0x000000003ee64520..0x000000003ee6491f (1 KiB) nomap non-reusable nvram@1
[Wed May 22 10:16:40 2024] OF: reserved mem: 0x000000003ee64960..0x000000003ee649a7 (0 KiB) nomap non-reusable nvram@0
[Wed May 22 10:16:40 2024] Zone ranges:
[Wed May 22 10:16:40 2024]   DMA      [mem 0x0000000000000000-0x000000003b2fffff]
[Wed May 22 10:16:40 2024]   DMA32    empty
[Wed May 22 10:16:40 2024]   Normal   empty
[Wed May 22 10:16:40 2024] Movable zone start for each node
[Wed May 22 10:16:40 2024] Early memory node ranges
[Wed May 22 10:16:40 2024]   node   0: [mem 0x0000000000000000-0x000000003b2fffff]
[Wed May 22 10:16:40 2024] Initmem setup node 0 [mem 0x0000000000000000-0x000000003b2fffff]
[Wed May 22 10:16:40 2024] On node 0, zone DMA: 19712 pages in unavailable ranges
[Wed May 22 10:16:40 2024] percpu: Embedded 30 pages/cpu s85672 r8192 d29016 u122880
[Wed May 22 10:16:40 2024] pcpu-alloc: s85672 r8192 d29016 u122880 alloc=30*4096
[Wed May 22 10:16:40 2024] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[Wed May 22 10:16:40 2024] Detected PIPT I-cache on CPU0
[Wed May 22 10:16:40 2024] CPU features: detected: Spectre-v2
[Wed May 22 10:16:40 2024] CPU features: detected: Spectre-v3a
[Wed May 22 10:16:40 2024] CPU features: detected: Spectre-v4
[Wed May 22 10:16:40 2024] CPU features: detected: Spectre-BHB
[Wed May 22 10:16:40 2024] CPU features: kernel page table isolation forced ON by KASLR
[Wed May 22 10:16:40 2024] CPU features: detected: Kernel page table isolation (KPTI)
[Wed May 22 10:16:40 2024] CPU features: detected: ARM erratum 1742098
[Wed May 22 10:16:40 2024] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[Wed May 22 10:16:40 2024] alternatives: applying boot alternatives
[Wed May 22 10:16:40 2024] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_headphones=0 snd_bcm2835.enable_headphones=1 snd_bcm2835.enable_hdmi=1 snd_bcm2835.enable_hdmi=0  smsc95xx.macaddr=DC:A6:32:4C:12:6E vc_mem.mem_base=0x3eb00000 vc_mem.mem_size=0x3ff00000  console=ttyS0,115200 console=tty1 root=PARTUUID=05f18a39-02 rootfstype=ext4 fsck.repair=yes rootwait
[Wed May 22 10:16:40 2024] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[Wed May 22 10:16:40 2024] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[Wed May 22 10:16:40 2024] Built 1 zonelists, mobility grouping on.  Total pages: 238644
[Wed May 22 10:16:40 2024] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[Wed May 22 10:16:40 2024] Memory: 387960K/969728K available (13376K kernel code, 2210K rwdata, 4260K rodata, 4864K init, 1083K bss, 57480K reserved, 524288K cma-reserved)
[Wed May 22 10:16:40 2024] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[Wed May 22 10:16:40 2024] ftrace: allocating 43116 entries in 169 pages
[Wed May 22 10:16:40 2024] ftrace: allocated 169 pages with 4 groups
[Wed May 22 10:16:40 2024] trace event string verifier disabled
[Wed May 22 10:16:40 2024] rcu: Preemptible hierarchical RCU implementation.
[Wed May 22 10:16:40 2024] rcu:         RCU event tracing is enabled.
[Wed May 22 10:16:40 2024] rcu:         RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[Wed May 22 10:16:40 2024]      Trampoline variant of Tasks RCU enabled.
[Wed May 22 10:16:40 2024]      Rude variant of Tasks RCU enabled.
[Wed May 22 10:16:40 2024]      Tracing variant of Tasks RCU enabled.
[Wed May 22 10:16:40 2024] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[Wed May 22 10:16:40 2024] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[Wed May 22 10:16:40 2024] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[Wed May 22 10:16:40 2024] Root IRQ handler: gic_handle_irq
[Wed May 22 10:16:40 2024] GIC: Using split EOI/Deactivate mode
[Wed May 22 10:16:40 2024] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[Wed May 22 10:16:40 2024] arch_timer: cp15 timer(s) running at 54.00MHz (phys).
[Wed May 22 10:16:40 2024] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xc743ce346, max_idle_ns: 440795203123 ns
[Wed May 22 10:16:40 2024] sched_clock: 56 bits at 54MHz, resolution 18ns, wraps every 4398046511102ns
[Wed May 22 10:16:40 2024] Console: colour dummy device 80x25
[Wed May 22 10:16:40 2024] printk: console [tty1] enabled
[Wed May 22 10:16:40 2024] Calibrating delay loop (skipped), value calculated using timer frequency.. 108.00 BogoMIPS (lpj=216000)
[Wed May 22 10:16:40 2024] pid_max: default: 32768 minimum: 301
[Wed May 22 10:16:40 2024] LSM: initializing lsm=capability,integrity
[Wed May 22 10:16:40 2024] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[Wed May 22 10:16:40 2024] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[Wed May 22 10:16:40 2024] cgroup: Disabling memory control group subsystem
[Wed May 22 10:16:40 2024] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[Wed May 22 10:16:40 2024] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[Wed May 22 10:16:40 2024] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[Wed May 22 10:16:40 2024] rcu: Hierarchical SRCU implementation.
[Wed May 22 10:16:40 2024] rcu:         Max phase no-delay instances is 1000.
[Wed May 22 10:16:40 2024] EFI services will not be available.
[Wed May 22 10:16:40 2024] smp: Bringing up secondary CPUs ...
[Wed May 22 10:16:40 2024] Detected PIPT I-cache on CPU1
[Wed May 22 10:16:40 2024] CPU1: Booted secondary processor 0x0000000001 [0x410fd083]
[Wed May 22 10:16:40 2024] Detected PIPT I-cache on CPU2
[Wed May 22 10:16:40 2024] CPU2: Booted secondary processor 0x0000000002 [0x410fd083]
[Wed May 22 10:16:40 2024] Detected PIPT I-cache on CPU3
[Wed May 22 10:16:40 2024] CPU3: Booted secondary processor 0x0000000003 [0x410fd083]
[Wed May 22 10:16:40 2024] smp: Brought up 1 node, 4 CPUs
[Wed May 22 10:16:40 2024] SMP: Total of 4 processors activated.
[Wed May 22 10:16:40 2024] CPU features: detected: 32-bit EL0 Support
[Wed May 22 10:16:40 2024] CPU features: detected: 32-bit EL1 Support
[Wed May 22 10:16:40 2024] CPU features: detected: CRC32 instructions
[Wed May 22 10:16:40 2024] CPU: All CPU(s) started at EL2
[Wed May 22 10:16:40 2024] alternatives: applying system-wide alternatives
[Wed May 22 10:16:40 2024] devtmpfs: initialized
[Wed May 22 10:16:40 2024] Enabled cp15_barrier support
[Wed May 22 10:16:40 2024] Enabled setend support
[Wed May 22 10:16:40 2024] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[Wed May 22 10:16:40 2024] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[Wed May 22 10:16:40 2024] pinctrl core: initialized pinctrl subsystem
[Wed May 22 10:16:40 2024] DMI not present or invalid.
[Wed May 22 10:16:40 2024] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[Wed May 22 10:16:40 2024] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[Wed May 22 10:16:40 2024] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[Wed May 22 10:16:40 2024] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[Wed May 22 10:16:40 2024] audit: initializing netlink subsys (disabled)
[Wed May 22 10:16:40 2024] audit: type=2000 audit(0.036:1): state=initialized audit_enabled=0 res=1
[Wed May 22 10:16:40 2024] thermal_sys: Registered thermal governor 'step_wise'
[Wed May 22 10:16:40 2024] cpuidle: using governor menu
[Wed May 22 10:16:40 2024] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[Wed May 22 10:16:40 2024] ASID allocator initialised with 32768 entries
[Wed May 22 10:16:40 2024] Serial: AMBA PL011 UART driver
[Wed May 22 10:16:40 2024] bcm2835-mbox fe00b880.mailbox: mailbox enabled
[Wed May 22 10:16:40 2024] raspberrypi-firmware soc:firmware: Attached to firmware from 2024-04-17T17:27:09, variant start
[Wed May 22 10:16:40 2024] raspberrypi-firmware soc:firmware: Firmware hash is 86ccc427f35fdc604edc511881cdf579df945fb4
[Wed May 22 10:16:40 2024] Modules: 2G module region forced by RANDOMIZE_MODULE_REGION_FULL
[Wed May 22 10:16:40 2024] Modules: 0 pages in range for non-PLT usage
[Wed May 22 10:16:40 2024] Modules: 517792 pages in range for PLT usage
[Wed May 22 10:16:40 2024] bcm2835-dma fe007000.dma-controller: DMA legacy API manager, dmachans=0x1
[Wed May 22 10:16:40 2024] iommu: Default domain type: Translated
[Wed May 22 10:16:40 2024] iommu: DMA domain TLB invalidation policy: strict mode
[Wed May 22 10:16:40 2024] SCSI subsystem initialized
[Wed May 22 10:16:40 2024] usbcore: registered new interface driver usbfs
[Wed May 22 10:16:40 2024] usbcore: registered new interface driver hub
[Wed May 22 10:16:40 2024] usbcore: registered new device driver usb
[Wed May 22 10:16:40 2024] pps_core: LinuxPPS API ver. 1 registered
[Wed May 22 10:16:40 2024] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[Wed May 22 10:16:40 2024] PTP clock support registered
[Wed May 22 10:16:40 2024] vgaarb: loaded
[Wed May 22 10:16:40 2024] clocksource: Switched to clocksource arch_sys_counter
[Wed May 22 10:16:41 2024] VFS: Disk quotas dquot_6.6.0
[Wed May 22 10:16:41 2024] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[Wed May 22 10:16:41 2024] FS-Cache: Loaded
[Wed May 22 10:16:41 2024] CacheFiles: Loaded
[Wed May 22 10:16:41 2024] NET: Registered PF_INET protocol family
[Wed May 22 10:16:41 2024] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[Wed May 22 10:16:41 2024] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[Wed May 22 10:16:41 2024] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[Wed May 22 10:16:41 2024] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[Wed May 22 10:16:41 2024] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
[Wed May 22 10:16:41 2024] TCP: Hash tables configured (established 8192 bind 8192)
[Wed May 22 10:16:41 2024] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear)
[Wed May 22 10:16:41 2024] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[Wed May 22 10:16:41 2024] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[Wed May 22 10:16:41 2024] NET: Registered PF_UNIX/PF_LOCAL protocol family
[Wed May 22 10:16:41 2024] RPC: Registered named UNIX socket transport module.
[Wed May 22 10:16:41 2024] RPC: Registered udp transport module.
[Wed May 22 10:16:41 2024] RPC: Registered tcp transport module.
[Wed May 22 10:16:41 2024] RPC: Registered tcp-with-tls transport module.
[Wed May 22 10:16:41 2024] RPC: Registered tcp NFSv4.1 backchannel transport module.
[Wed May 22 10:16:41 2024] PCI: CLS 0 bytes, default 64
[Wed May 22 10:16:41 2024] Trying to unpack rootfs image as initramfs...
[Wed May 22 10:16:41 2024] kvm [1]: IPA Size Limit: 44 bits
[Wed May 22 10:16:41 2024] kvm [1]: vgic interrupt IRQ9
[Wed May 22 10:16:41 2024] kvm [1]: Hyp mode initialized successfully
[Wed May 22 10:16:41 2024] Initialise system trusted keyrings
[Wed May 22 10:16:41 2024] workingset: timestamp_bits=46 max_order=18 bucket_order=0
[Wed May 22 10:16:41 2024] zbud: loaded
[Wed May 22 10:16:41 2024] NFS: Registering the id_resolver key type
[Wed May 22 10:16:41 2024] Key type id_resolver registered
[Wed May 22 10:16:41 2024] Key type id_legacy registered
[Wed May 22 10:16:41 2024] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[Wed May 22 10:16:41 2024] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[Wed May 22 10:16:41 2024] Key type asymmetric registered
[Wed May 22 10:16:41 2024] Asymmetric key parser 'x509' registered
[Wed May 22 10:16:41 2024] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[Wed May 22 10:16:41 2024] io scheduler mq-deadline registered
[Wed May 22 10:16:41 2024] io scheduler kyber registered
[Wed May 22 10:16:41 2024] io scheduler bfq registered
[Wed May 22 10:16:41 2024] irq_brcmstb_l2: registered L2 intc (/soc/interrupt-controller@7ef00100, parent irq: 23)
[Wed May 22 10:16:41 2024] brcm-pcie fd500000.pcie: host bridge /scb/pcie@7d500000 ranges:
[Wed May 22 10:16:41 2024] brcm-pcie fd500000.pcie:   No bus range found for /scb/pcie@7d500000, using [bus 00-ff]
[Wed May 22 10:16:41 2024] brcm-pcie fd500000.pcie:      MEM 0x0600000000..0x063fffffff -> 0x00c0000000
[Wed May 22 10:16:41 2024] brcm-pcie fd500000.pcie:   IB MEM 0x0000000000..0x003fffffff -> 0x0400000000
[Wed May 22 10:16:41 2024] brcm-pcie fd500000.pcie: PCI host bridge to bus 0000:00
[Wed May 22 10:16:41 2024] pci_bus 0000:00: root bus resource [bus 00-ff]
[Wed May 22 10:16:41 2024] pci_bus 0000:00: root bus resource [mem 0x600000000-0x63fffffff] (bus address [0xc0000000-0xffffffff])
[Wed May 22 10:16:41 2024] pci 0000:00:00.0: [14e4:2711] type 01 class 0x060400
[Wed May 22 10:16:41 2024] pci 0000:00:00.0: PME# supported from D0 D3hot
[Wed May 22 10:16:41 2024] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[Wed May 22 10:16:41 2024] pci_bus 0000:01: supply vpcie3v3 not found, using dummy regulator
[Wed May 22 10:16:41 2024] pci_bus 0000:01: supply vpcie3v3aux not found, using dummy regulator
[Wed May 22 10:16:41 2024] pci_bus 0000:01: supply vpcie12v not found, using dummy regulator
[Wed May 22 10:16:41 2024] brcm-pcie fd500000.pcie: link up, 5.0 GT/s PCIe x1 (SSC)
[Wed May 22 10:16:41 2024] pci 0000:01:00.0: [1106:3483] type 00 class 0x0c0330
[Wed May 22 10:16:41 2024] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[Wed May 22 10:16:41 2024] pci 0000:01:00.0: PME# supported from D0 D3cold
[Wed May 22 10:16:41 2024] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[Wed May 22 10:16:41 2024] pci 0000:00:00.0: BAR 8: assigned [mem 0x600000000-0x6000fffff]
[Wed May 22 10:16:41 2024] pci 0000:01:00.0: BAR 0: assigned [mem 0x600000000-0x600000fff 64bit]
[Wed May 22 10:16:41 2024] pci 0000:00:00.0: PCI bridge to [bus 01]
[Wed May 22 10:16:41 2024] pci 0000:00:00.0:   bridge window [mem 0x600000000-0x6000fffff]
[Wed May 22 10:16:41 2024] pcieport 0000:00:00.0: enabling device (0000 -> 0002)
[Wed May 22 10:16:41 2024] pcieport 0000:00:00.0: PME: Signaling with IRQ 27
[Wed May 22 10:16:41 2024] pcieport 0000:00:00.0: AER: enabled with IRQ 27
[Wed May 22 10:16:41 2024] iproc-rng200 fe104000.rng: hwrng registered
[Wed May 22 10:16:41 2024] vc-mem: phys_addr:0x00000000 mem_base=0x3eb00000 mem_size:0x3ff00000(1023 MiB)
[Wed May 22 10:16:41 2024] brd: module loaded
[Wed May 22 10:16:41 2024] loop: module loaded
[Wed May 22 10:16:41 2024] Loading iSCSI transport class v2.0-870.
[Wed May 22 10:16:41 2024] bcmgenet fd580000.ethernet: GENET 5.0 EPHY: 0x0000
[Wed May 22 10:16:41 2024] Freeing initrd memory: 10832K
[Wed May 22 10:16:41 2024] unimac-mdio unimac-mdio.-19: Broadcom UniMAC MDIO bus
[Wed May 22 10:16:41 2024] usbcore: registered new device driver r8152-cfgselector
[Wed May 22 10:16:41 2024] usbcore: registered new interface driver r8152
[Wed May 22 10:16:41 2024] usbcore: registered new interface driver lan78xx
[Wed May 22 10:16:41 2024] usbcore: registered new interface driver smsc95xx
[Wed May 22 10:16:41 2024] xhci_hcd 0000:01:00.0: enabling device (0000 -> 0002)
[Wed May 22 10:16:41 2024] xhci_hcd 0000:01:00.0: xHCI Host Controller
[Wed May 22 10:16:41 2024] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[Wed May 22 10:16:41 2024] xhci_hcd 0000:01:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0300240000000890
[Wed May 22 10:16:41 2024] xhci_hcd 0000:01:00.0: xHCI Host Controller
[Wed May 22 10:16:41 2024] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[Wed May 22 10:16:41 2024] xhci_hcd 0000:01:00.0: Host supports USB 3.0 SuperSpeed
[Wed May 22 10:16:41 2024] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[Wed May 22 10:16:41 2024] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Wed May 22 10:16:41 2024] usb usb1: Product: xHCI Host Controller
[Wed May 22 10:16:41 2024] usb usb1: Manufacturer: Linux 6.6.20+rpt-rpi-v8 xhci-hcd
[Wed May 22 10:16:41 2024] usb usb1: SerialNumber: 0000:01:00.0
[Wed May 22 10:16:41 2024] hub 1-0:1.0: USB hub found
[Wed May 22 10:16:41 2024] hub 1-0:1.0: 1 port detected
[Wed May 22 10:16:41 2024] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[Wed May 22 10:16:41 2024] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Wed May 22 10:16:41 2024] usb usb2: Product: xHCI Host Controller
[Wed May 22 10:16:41 2024] usb usb2: Manufacturer: Linux 6.6.20+rpt-rpi-v8 xhci-hcd
[Wed May 22 10:16:41 2024] usb usb2: SerialNumber: 0000:01:00.0
[Wed May 22 10:16:41 2024] hub 2-0:1.0: USB hub found
[Wed May 22 10:16:41 2024] hub 2-0:1.0: 4 ports detected
[Wed May 22 10:16:41 2024] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
[Wed May 22 10:16:41 2024] dwc_otg: FIQ enabled
[Wed May 22 10:16:41 2024] dwc_otg: NAK holdoff enabled
[Wed May 22 10:16:41 2024] dwc_otg: FIQ split-transaction FSM enabled
[Wed May 22 10:16:41 2024] Module dwc_common_port init
[Wed May 22 10:16:41 2024] usbcore: registered new interface driver uas
[Wed May 22 10:16:41 2024] usbcore: registered new interface driver usb-storage
[Wed May 22 10:16:41 2024] mousedev: PS/2 mouse device common for all mice
[Wed May 22 10:16:41 2024] sdhci: Secure Digital Host Controller Interface driver
[Wed May 22 10:16:41 2024] sdhci: Copyright(c) Pierre Ossman
[Wed May 22 10:16:41 2024] sdhci-pltfm: SDHCI platform and OF driver helper
[Wed May 22 10:16:41 2024] ledtrig-cpu: registered to indicate activity on CPUs
[Wed May 22 10:16:41 2024] hid: raw HID events driver (C) Jiri Kosina
[Wed May 22 10:16:41 2024] usbcore: registered new interface driver usbhid
[Wed May 22 10:16:41 2024] usbhid: USB HID core driver
[Wed May 22 10:16:41 2024] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[Wed May 22 10:16:41 2024] NET: Registered PF_PACKET protocol family
[Wed May 22 10:16:41 2024] Key type dns_resolver registered
[Wed May 22 10:16:41 2024] registered taskstats version 1
[Wed May 22 10:16:41 2024] Loading compiled-in X.509 certificates
[Wed May 22 10:16:41 2024] Key type .fscrypt registered
[Wed May 22 10:16:41 2024] Key type fscrypt-provisioning registered
[Wed May 22 10:16:41 2024] uart-pl011 fe201000.serial: there is not valid maps for state default
[Wed May 22 10:16:41 2024] uart-pl011 fe201000.serial: cts_event_workaround enabled
[Wed May 22 10:16:41 2024] fe201000.serial: ttyAMA1 at MMIO 0xfe201000 (irq = 36, base_baud = 0) is a PL011 rev2
[Wed May 22 10:16:41 2024] serial serial0: tty port ttyAMA1 registered
[Wed May 22 10:16:41 2024] bcm2835-wdt bcm2835-wdt: Broadcom BCM2835 watchdog timer
[Wed May 22 10:16:41 2024] bcm2835-power bcm2835-power: Broadcom BCM2835 power domains driver
[Wed May 22 10:16:41 2024] mmc-bcm2835 fe300000.mmcnr: mmc_debug:0 mmc_debug2:0
[Wed May 22 10:16:41 2024] mmc-bcm2835 fe300000.mmcnr: DMA channel allocated
[Wed May 22 10:16:41 2024] mmc1: Controller never released inhibit bit(s).
[Wed May 22 10:16:41 2024] of_cfs_init
[Wed May 22 10:16:41 2024] of_cfs_init: OK
[Wed May 22 10:16:41 2024] clk: Disabling unused clocks
[Wed May 22 10:16:42 2024] mmc0: SDHCI controller on fe340000.mmc [fe340000.mmc] using ADMA
[Wed May 22 10:16:42 2024] Freeing unused kernel memory: 4864K
[Wed May 22 10:16:42 2024] Run /init as init process
[Wed May 22 10:16:42 2024]   with arguments:
[Wed May 22 10:16:42 2024]     /init
[Wed May 22 10:16:42 2024]   with environment:
[Wed May 22 10:16:42 2024]     HOME=/
[Wed May 22 10:16:42 2024]     TERM=linux
[Wed May 22 10:16:42 2024] mmc1: new high speed SDIO card at address 0001
[Wed May 22 10:16:42 2024] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[Wed May 22 10:16:42 2024] usb 1-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.21
[Wed May 22 10:16:42 2024] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[Wed May 22 10:16:42 2024] usb 1-1: Product: USB2.0 Hub
[Wed May 22 10:16:42 2024] hub 1-1:1.0: USB hub found
[Wed May 22 10:16:42 2024] hub 1-1:1.0: 4 ports detected
[Wed May 22 10:16:42 2024] brcmstb-i2c fef04500.i2c:  @97500hz registered in polling mode
[Wed May 22 10:16:42 2024] brcmstb-i2c fef09500.i2c:  @97500hz registered in polling mode
[Wed May 22 10:16:42 2024] usb 1-1.2: new high-speed USB device number 3 using xhci_hcd
[Wed May 22 10:16:42 2024] usb 1-1.2: New USB device found, idVendor=2109, idProduct=0715, bcdDevice=e0.00
[Wed May 22 10:16:42 2024] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[Wed May 22 10:16:42 2024] usb 1-1.2: Product: VLI Product String
[Wed May 22 10:16:42 2024] usb 1-1.2: Manufacturer: VLI Manufacture String
[Wed May 22 10:16:42 2024] usb 1-1.2: SerialNumber: 000000123C2C
[Wed May 22 10:16:42 2024] scsi host0: uas
[Wed May 22 10:16:42 2024] scsi 0:0:0:0: Direct-Access     TS32GMSA 370              P122 PQ: 0 ANSI: 6
[Wed May 22 10:16:42 2024] sd 0:0:0:0: [sda] 62533292 512-byte logical blocks: (32.0 GB/29.8 GiB)
[Wed May 22 10:16:42 2024] sd 0:0:0:0: [sda] Write Protect is off
[Wed May 22 10:16:42 2024] sd 0:0:0:0: [sda] Mode Sense: 2f 00 00 00
[Wed May 22 10:16:42 2024] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[Wed May 22 10:16:42 2024] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[Wed May 22 10:16:42 2024] sd 0:0:0:0: [sda] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
[Wed May 22 10:16:42 2024]  sda: sda1 sda2
[Wed May 22 10:16:42 2024] sd 0:0:0:0: [sda] Attached SCSI disk
[Wed May 22 10:16:44 2024] EXT4-fs (sda2): mounted filesystem 93c89e92-8f2e-4522-ad32-68faed883d2f ro with ordered data mode. Quota mode: none.
[Wed May 22 10:16:44 2024] systemd[1]: System time before build time, advancing clock.
[Wed May 22 10:16:44 2024] NET: Registered PF_INET6 protocol family
[Wed May 22 10:16:44 2024] Segment Routing with IPv6
[Wed May 22 10:16:44 2024] In-situ OAM (IOAM) with IPv6
[Wed May 22 10:16:44 2024] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[Wed May 22 10:16:44 2024] systemd[1]: Detected architecture arm64.
[Wed May 22 10:16:44 2024] systemd[1]: Hostname set to <joplin>.
[Wed May 22 10:16:45 2024] systemd[1]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
[Wed May 22 10:16:45 2024] systemd[1]: Queued start job for default target multi-user.target.
[Wed May 22 10:16:45 2024] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[Wed May 22 10:16:45 2024] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[Wed May 22 10:16:45 2024] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[Wed May 22 10:16:45 2024] systemd[1]: Created slice user.slice - User and Session Slice.
[Wed May 22 10:16:45 2024] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[Wed May 22 10:16:45 2024] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[Wed May 22 10:16:45 2024] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[Wed May 22 10:16:45 2024] systemd[1]: Expecting device dev-disk-by\x2dpartuuid-05f18a39\x2d01.device - /dev/disk/by-partuuid/05f18a39-01...
[Wed May 22 10:16:45 2024] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[Wed May 22 10:16:45 2024] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[Wed May 22 10:16:45 2024] systemd[1]: Reached target paths.target - Path Units.
[Wed May 22 10:16:45 2024] systemd[1]: Reached target slices.target - Slice Units.
[Wed May 22 10:16:45 2024] systemd[1]: Reached target swap.target - Swaps.
[Wed May 22 10:16:45 2024] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[Wed May 22 10:16:45 2024] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[Wed May 22 10:16:45 2024] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[Wed May 22 10:16:45 2024] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[Wed May 22 10:16:45 2024] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[Wed May 22 10:16:45 2024] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[Wed May 22 10:16:45 2024] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[Wed May 22 10:16:45 2024] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[Wed May 22 10:16:45 2024] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
[Wed May 22 10:16:45 2024] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[Wed May 22 10:16:45 2024] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[Wed May 22 10:16:45 2024] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[Wed May 22 10:16:45 2024] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[Wed May 22 10:16:45 2024] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
[Wed May 22 10:16:45 2024] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[Wed May 22 10:16:45 2024] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[Wed May 22 10:16:45 2024] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[Wed May 22 10:16:45 2024] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[Wed May 22 10:16:45 2024] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[Wed May 22 10:16:45 2024] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[Wed May 22 10:16:45 2024] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[Wed May 22 10:16:45 2024] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[Wed May 22 10:16:45 2024] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[Wed May 22 10:16:45 2024] systemd[1]: Starting systemd-journald.service - Journal Service...
[Wed May 22 10:16:45 2024] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[Wed May 22 10:16:45 2024] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[Wed May 22 10:16:45 2024] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[Wed May 22 10:16:45 2024] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[Wed May 22 10:16:45 2024] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[Wed May 22 10:16:45 2024] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[Wed May 22 10:16:45 2024] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
[Wed May 22 10:16:45 2024] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[Wed May 22 10:16:45 2024] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[Wed May 22 10:16:45 2024] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[Wed May 22 10:16:45 2024] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[Wed May 22 10:16:45 2024] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[Wed May 22 10:16:45 2024] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[Wed May 22 10:16:45 2024] systemd[1]: modprobe@loop.service: Deactivated successfully.
[Wed May 22 10:16:45 2024] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[Wed May 22 10:16:45 2024] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[Wed May 22 10:16:45 2024] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[Wed May 22 10:16:45 2024] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[Wed May 22 10:16:45 2024] fuse: init (API version 7.39)
[Wed May 22 10:16:45 2024] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[Wed May 22 10:16:45 2024] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[Wed May 22 10:16:45 2024] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[Wed May 22 10:16:45 2024] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[Wed May 22 10:16:45 2024] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[Wed May 22 10:16:45 2024] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[Wed May 22 10:16:45 2024] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[Wed May 22 10:16:45 2024] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[Wed May 22 10:16:45 2024] EXT4-fs (sda2): re-mounted 93c89e92-8f2e-4522-ad32-68faed883d2f r/w. Quota mode: none.
[Wed May 22 10:16:45 2024] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[Wed May 22 10:16:45 2024] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[Wed May 22 10:16:45 2024] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[Wed May 22 10:16:46 2024] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[Wed May 22 10:16:46 2024] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[Wed May 22 10:16:46 2024] systemd[1]: modprobe@drm.service: Deactivated successfully.
[Wed May 22 10:16:46 2024] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[Wed May 22 10:16:46 2024] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[Wed May 22 10:16:46 2024] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[Wed May 22 10:16:46 2024] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[Wed May 22 10:16:46 2024] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[Wed May 22 10:16:46 2024] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[Wed May 22 10:16:46 2024] systemd[1]: Started systemd-journald.service - Journal Service.
[Wed May 22 10:16:46 2024] systemd-journald[234]: Received client request to flush runtime journal.
[Wed May 22 10:16:46 2024] systemd-journald[234]: File /var/log/journal/601cd493012f4d42a1b35324bc3c346f/system.journal corrupted or uncleanly shut down, renaming and replacing.
[Wed May 22 10:16:46 2024] loop0: detected capacity change from 0 to 88912
[Wed May 22 10:16:46 2024] loop1: detected capacity change from 0 to 188080
[Wed May 22 10:16:46 2024] loop2: detected capacity change from 0 to 122368
[Wed May 22 10:16:46 2024] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[Wed May 22 10:16:47 2024] mc: Linux media interface: v0.10
[Wed May 22 10:16:47 2024] vc_sm_cma: module is from the staging directory, the quality is unknown, you have been warned.
[Wed May 22 10:16:47 2024] snd_bcm2835: module is from the staging directory, the quality is unknown, you have been warned.
[Wed May 22 10:16:47 2024] bcm2835_vc_sm_cma_probe: Videocore shared memory driver
[Wed May 22 10:16:47 2024] [vc_sm_connected_init]: start
[Wed May 22 10:16:47 2024] [vc_sm_connected_init]: installed successfully
[Wed May 22 10:16:47 2024] bcm2835_audio bcm2835_audio: card created with 8 channels
[Wed May 22 10:16:47 2024] sd 0:0:0:0: Attached scsi generic sg0 type 0
[Wed May 22 10:16:47 2024] rpi-gpiomem fe200000.gpiomem: window base 0xfe200000 size 0x00001000
[Wed May 22 10:16:47 2024] rpi-gpiomem fe200000.gpiomem: initialised 1 regions as /dev/gpiomem
[Wed May 22 10:16:47 2024] videodev: Linux video capture interface: v2.00
[Wed May 22 10:16:47 2024] bcm2835_mmal_vchiq: module is from the staging directory, the quality is unknown, you have been warned.
[Wed May 22 10:16:47 2024] bcm2835_v4l2: module is from the staging directory, the quality is unknown, you have been warned.
[Wed May 22 10:16:47 2024] bcm2835_codec: module is from the staging directory, the quality is unknown, you have been warned.
[Wed May 22 10:16:47 2024] bcm2835_isp: module is from the staging directory, the quality is unknown, you have been warned.
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video13
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video14
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video15
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video16
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register output node 0 with media controller
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Device registered as /dev/video10
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Loaded V4L2 decode
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node output[0] registered as /dev/video20
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Device registered as /dev/video11
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Loaded V4L2 encode
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node capture[0] registered as /dev/video21
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node capture[1] registered as /dev/video22
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Device node stats[2] registered as /dev/video23
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register output node 0 with media controller
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register capture node 1 with media controller
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register capture node 2 with media controller
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Register capture node 3 with media controller
[Wed May 22 10:16:47 2024] bcm2835-isp bcm2835-isp: Loaded V4L2 bcm2835-isp
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Device registered as /dev/video12
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Loaded V4L2 isp
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Device registered as /dev/video18
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Loaded V4L2 image_fx
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Device registered as /dev/video31
[Wed May 22 10:16:47 2024] bcm2835-codec bcm2835-codec: Loaded V4L2 encode_image
[Wed May 22 10:16:47 2024] rpivid_hevc: module is from the staging directory, the quality is unknown, you have been warned.
[Wed May 22 10:16:47 2024] Bluetooth: Core ver 2.22
[Wed May 22 10:16:47 2024] NET: Registered PF_BLUETOOTH protocol family
[Wed May 22 10:16:47 2024] Bluetooth: HCI device and connection manager initialized
[Wed May 22 10:16:47 2024] Bluetooth: HCI socket layer initialized
[Wed May 22 10:16:47 2024] Bluetooth: L2CAP socket layer initialized
[Wed May 22 10:16:47 2024] Bluetooth: SCO socket layer initialized
[Wed May 22 10:16:47 2024] rpivid feb10000.codec: Device registered as /dev/video19
[Wed May 22 10:16:47 2024] Bluetooth: HCI UART driver ver 2.3
[Wed May 22 10:16:47 2024] Bluetooth: HCI UART protocol H4 registered
[Wed May 22 10:16:47 2024] Bluetooth: HCI UART protocol Three-wire (H5) registered
[Wed May 22 10:16:47 2024] Bluetooth: HCI UART protocol Broadcom registered
[Wed May 22 10:16:47 2024] hci_uart_bcm serial0-0: supply vbat not found, using dummy regulator
[Wed May 22 10:16:47 2024] hci_uart_bcm serial0-0: supply vddio not found, using dummy regulator
[Wed May 22 10:16:47 2024] uart-pl011 fe201000.serial: no DMA platform data
[Wed May 22 10:16:47 2024] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fe400000.hvs (ops vc4_hvs_ops [vc4])
[Wed May 22 10:16:47 2024] Registered IR keymap rc-cec
[Wed May 22 10:16:47 2024] rc rc0: vc4-hdmi-0 as /devices/platform/soc/fef00700.hdmi/rc/rc0
[Wed May 22 10:16:47 2024] input: vc4-hdmi-0 as /devices/platform/soc/fef00700.hdmi/rc/rc0/input0
[Wed May 22 10:16:47 2024] Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[Wed May 22 10:16:47 2024] Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[Wed May 22 10:16:47 2024] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[Wed May 22 10:16:47 2024] input: vc4-hdmi-0 HDMI Jack as /devices/platform/soc/fef00700.hdmi/sound/card1/input1
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fef00700.hdmi (ops vc4_hdmi_ops [vc4])
[Wed May 22 10:16:47 2024] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[Wed May 22 10:16:47 2024] Registered IR keymap rc-cec
[Wed May 22 10:16:47 2024] rc rc1: vc4-hdmi-1 as /devices/platform/soc/fef05700.hdmi/rc/rc1
[Wed May 22 10:16:47 2024] input: vc4-hdmi-1 as /devices/platform/soc/fef05700.hdmi/rc/rc1/input2
[Wed May 22 10:16:47 2024] input: vc4-hdmi-1 HDMI Jack as /devices/platform/soc/fef05700.hdmi/sound/card2/input3
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fef05700.hdmi (ops vc4_hdmi_ops [vc4])
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fe004000.txp (ops vc4_txp_ops [vc4])
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fe206000.pixelvalve (ops vc4_crtc_ops [vc4])
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fe207000.pixelvalve (ops vc4_crtc_ops [vc4])
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fe20a000.pixelvalve (ops vc4_crtc_ops [vc4])
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fe216000.pixelvalve (ops vc4_crtc_ops [vc4])
[Wed May 22 10:16:47 2024] vc4-drm gpu: bound fec12000.pixelvalve (ops vc4_crtc_ops [vc4])
[Wed May 22 10:16:47 2024] [drm] Initialized vc4 0.0.0 20140616 for gpu on minor 0
[Wed May 22 10:16:47 2024] vc4-drm gpu: [drm] Cannot find any crtc or sizes
[Wed May 22 10:16:47 2024] vc4-drm gpu: [drm] Cannot find any crtc or sizes
[Wed May 22 10:16:47 2024] vc4-drm gpu: [drm] Cannot find any crtc or sizes
[Wed May 22 10:16:47 2024] Bluetooth: hci0: BCM: chip id 107
[Wed May 22 10:16:47 2024] Bluetooth: hci0: BCM: features 0x2f
[Wed May 22 10:16:47 2024] Bluetooth: hci0: BCM4345C0
[Wed May 22 10:16:47 2024] Bluetooth: hci0: BCM4345C0 (003.001.025) build 0000
[Wed May 22 10:16:47 2024] Bluetooth: hci0: BCM4345C0 'brcm/BCM4345C0.raspberrypi,4-model-b.hcd' Patch
[Wed May 22 10:16:47 2024] brcmfmac: F1 signature read @0x18000000=0x15264345
[Wed May 22 10:16:47 2024] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[Wed May 22 10:16:47 2024] usbcore: registered new interface driver brcmfmac
[Wed May 22 10:16:47 2024] [drm] Initialized v3d 1.0.0 20180419 for fec00000.v3d on minor 1
[Wed May 22 10:16:48 2024] brcmfmac_wcc: brcmf_wcc_attach: executing
[Wed May 22 10:16:48 2024] brcmfmac: brcmf_c_process_txcap_blob: no txcap_blob available (err=-2)
[Wed May 22 10:16:48 2024] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/6 wl0: Apr 15 2021 03:03:20 version 7.45.234 (4ca95bb CY) FWID 01-996384e2
[Wed May 22 10:16:48 2024] Bluetooth: hci0: BCM: features 0x2f
[Wed May 22 10:16:48 2024] Bluetooth: hci0: BCM43455 37.4MHz Raspberry Pi 3+-0190
[Wed May 22 10:16:48 2024] Bluetooth: hci0: BCM4345C0 (003.001.025) build 0382
[Wed May 22 10:16:49 2024] Adding 102396k swap on /var/swap.  Priority:-2 extents:1 across:102396k
[Wed May 22 10:16:49 2024] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[Wed May 22 10:16:49 2024] Bluetooth: BNEP filters: protocol multicast
[Wed May 22 10:16:49 2024] Bluetooth: BNEP socket layer initialized
[Wed May 22 10:16:49 2024] Bluetooth: MGMT ver 1.22
[Wed May 22 10:16:49 2024] NET: Registered PF_ALG protocol family
[Wed May 22 10:16:51 2024] bcmgenet fd580000.ethernet: configuring instance for external RGMII (RX delay)
[Wed May 22 10:16:51 2024] bcmgenet fd580000.ethernet eth0: Link is Down
[Wed May 22 10:16:51 2024] brcmfmac: brcmf_cfg80211_set_power_mgmt: power save enabled
[Wed May 22 10:16:53 2024] loop3: detected capacity change from 0 to 8
[Wed May 22 10:16:55 2024] bcmgenet fd580000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[Wed May 22 10:17:01 2024] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[Wed May 22 10:17:01 2024] Bridge firewalling registered
[Wed May 22 10:17:02 2024] Initializing XFRM netlink socket
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 1(veth5a63a0c) entered blocking state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 1(veth5a63a0c) entered disabled state
[Wed May 22 10:17:04 2024] veth5a63a0c: entered allmulticast mode
[Wed May 22 10:17:04 2024] veth5a63a0c: entered promiscuous mode
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 1(veth5a63a0c) entered blocking state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 1(veth5a63a0c) entered forwarding state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 1(veth5a63a0c) entered disabled state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 2(vethf36cd86) entered blocking state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 2(vethf36cd86) entered disabled state
[Wed May 22 10:17:04 2024] vethf36cd86: entered allmulticast mode
[Wed May 22 10:17:04 2024] vethf36cd86: entered promiscuous mode
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 2(vethf36cd86) entered blocking state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 2(vethf36cd86) entered forwarding state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 2(vethf36cd86) entered disabled state
[Wed May 22 10:17:04 2024] eth0: renamed from vetha1a1ce6
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 2(vethf36cd86) entered blocking state
[Wed May 22 10:17:04 2024] br-23dc25293ec1: port 2(vethf36cd86) entered forwarding state
[Wed May 22 10:17:05 2024] eth0: renamed from veth5fd29a2
[Wed May 22 10:17:05 2024] br-23dc25293ec1: port 1(veth5a63a0c) entered blocking state
[Wed May 22 10:17:05 2024] br-23dc25293ec1: port 1(veth5a63a0c) entered forwarding state
[Wed May 22 10:17:20 2024] systemd-journald[234]: File /var/log/journal/601cd493012f4d42a1b35324bc3c346f/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
pi@joplin:~ $

Is there a minimum memory requirement for the pi?

Thanks for any help

More:

pi@joplin:~ $ sudo docker logs efb021a527e4 -f

PostgreSQL Database directory appears to contain a database; Skipping initialization

2024-05-22 14:11:26.476 UTC [1] LOG:  starting PostgreSQL 16.3 (Debian 16.3-1.pgdg120+1) on aarch64-unknown-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit
2024-05-22 14:11:26.477 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2024-05-22 14:11:26.477 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2024-05-22 14:11:26.484 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2024-05-22 14:11:26.496 UTC [29] LOG:  database system was shut down at 2024-05-22 14:11:17 UTC
2024-05-22 14:11:26.514 UTC [1] LOG:  database system is ready to accept connections
2024-05-22 14:11:53.149 UTC [1] LOG:  received fast shutdown request
2024-05-22 14:11:53.150 UTC [1] LOG:  aborting any active transactions
2024-05-22 14:11:53.156 UTC [1] LOG:  background worker "logical replication launcher" (PID 32) exited with exit code 1
2024-05-22 14:11:53.162 UTC [27] LOG:  shutting down
2024-05-22 14:11:53.163 UTC [27] LOG:  checkpoint starting: shutdown immediate
2024-05-22 14:11:53.182 UTC [27] LOG:  checkpoint complete: wrote 6 buffers (0.0%); 0 WAL file(s) added, 0 removed, 0 recycled; write=0.010 s, sync=0.002 s, total=0.020 s; sync files=5, longest=0.001 s, average=0.001 s; distance=8 kB, estimate=8 kB; lsn=0/12A76B08, redo lsn=0/12A76B08
2024-05-22 14:11:53.194 UTC [1] LOG:  database system is shut down

PostgreSQL Database directory appears to contain a database; Skipping initialization

2024-05-22 14:11:58.338 UTC [1] LOG:  starting PostgreSQL 16.3 (Debian 16.3-1.pgdg120+1) on aarch64-unknown-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit
2024-05-22 14:11:58.339 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2024-05-22 14:11:58.339 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2024-05-22 14:11:58.348 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2024-05-22 14:11:58.358 UTC [29] LOG:  database system was shut down at 2024-05-22 14:11:53 UTC
2024-05-22 14:11:58.376 UTC [1] LOG:  database system is ready to accept connections

PostgreSQL Database directory appears to contain a database; Skipping initialization

2024-05-22 14:14:55.972 UTC [1] LOG:  starting PostgreSQL 16.3 (Debian 16.3-1.pgdg120+1) on aarch64-unknown-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit
2024-05-22 14:14:55.974 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2024-05-22 14:14:55.974 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2024-05-22 14:14:55.984 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2024-05-22 14:14:55.996 UTC [29] LOG:  database system was interrupted; last known up at 2024-05-22 14:11:58 UTC
2024-05-22 14:14:56.749 UTC [29] LOG:  database system was not properly shut down; automatic recovery in progress
2024-05-22 14:14:56.761 UTC [29] LOG:  redo starts at 0/12A76B80
2024-05-22 14:15:00.140 UTC [29] LOG:  invalid record length at 0/19881220: expected at least 24, got 0
2024-05-22 14:15:00.140 UTC [29] LOG:  redo done at 0/198811E8 system usage: CPU: user: 0.65 s, system: 0.64 s, elapsed: 3.38 s
2024-05-22 14:15:00.150 UTC [27] LOG:  checkpoint starting: end-of-recovery immediate wait
2024-05-22 14:15:01.235 UTC [27] LOG:  checkpoint complete: wrote 13874 buffers (84.7%); 0 WAL file(s) added, 0 removed, 7 recycled; write=0.684 s, sync=0.384 s, total=1.087 s; sync files=49, longest=0.383 s, average=0.008 s; distance=112681 kB, estimate=112681 kB; lsn=0/19881220, redo lsn=0/19881220
2024-05-22 14:15:01.308 UTC [1] LOG:  database system is ready to accept connections
2024-05-22 14:22:12.807 UTC [27] LOG:  checkpoint starting: time
2024-05-22 14:22:23.256 UTC [27] LOG:  checkpoint complete: wrote 106 buffers (0.6%); 0 WAL file(s) added, 0 removed, 0 recycled; write=10.440 s, sync=0.003 s, total=10.449 s; sync files=32, longest=0.002 s, average=0.001 s; distance=356 kB, estimate=101449 kB; lsn=0/198EFC48, redo lsn=0/198DA2E0

PostgreSQL Database directory appears to contain a database; Skipping initialization

2024-05-22 14:23:40.342 UTC [1] LOG:  starting PostgreSQL 16.3 (Debian 16.3-1.pgdg120+1) on aarch64-unknown-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit
2024-05-22 14:23:40.343 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2024-05-22 14:23:40.343 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2024-05-22 14:23:40.354 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2024-05-22 14:23:40.367 UTC [29] LOG:  database system was interrupted; last known up at 2024-05-22 14:22:23 UTC
2024-05-22 14:23:41.069 UTC [29] LOG:  database system was not properly shut down; automatic recovery in progress
2024-05-22 14:23:41.081 UTC [29] LOG:  redo starts at 0/198DA2E0
2024-05-22 14:23:47.192 UTC [29] LOG:  invalid record length at 0/204A5FC8: expected at least 24, got 0
2024-05-22 14:23:47.192 UTC [29] LOG:  redo done at 0/204A5F90 system usage: CPU: user: 1.03 s, system: 1.40 s, elapsed: 6.11 s
2024-05-22 14:23:47.209 UTC [27] LOG:  checkpoint starting: end-of-recovery immediate wait
2024-05-22 14:23:48.820 UTC [27] LOG:  checkpoint complete: wrote 15969 buffers (97.5%); 0 WAL file(s) added, 0 removed, 7 recycled; write=1.248 s, sync=0.347 s, total=1.613 s; sync files=45, longest=0.339 s, average=0.008 s; distance=110383 kB, estimate=110383 kB; lsn=0/204A5FC8, redo lsn=0/204A5FC8
2024-05-22 14:23:49.106 UTC [1] LOG:  database system is ready to accept connections

PostgreSQL Database directory appears to contain a database; Skipping initialization

2024-05-22 14:25:52.490 UTC [1] LOG:  starting PostgreSQL 16.3 (Debian 16.3-1.pgdg120+1) on aarch64-unknown-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit
2024-05-22 14:25:52.491 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2024-05-22 14:25:52.491 UTC [1] LOG:  listening on IPv6 address "::", port 5432
2024-05-22 14:25:52.501 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
2024-05-22 14:25:52.514 UTC [30] LOG:  database system was interrupted; last known up at 2024-05-22 14:23:48 UTC
2024-05-22 14:25:53.220 UTC [30] LOG:  database system was not properly shut down; automatic recovery in progress
2024-05-22 14:25:53.233 UTC [30] LOG:  redo starts at 0/204A6058
2024-05-22 14:25:53.243 UTC [30] LOG:  invalid record length at 0/204A7FF8: expected at least 24, got 0
2024-05-22 14:25:53.243 UTC [30] LOG:  redo done at 0/204A7FD0 system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.01 s
2024-05-22 14:25:53.251 UTC [28] LOG:  checkpoint starting: end-of-recovery immediate wait
2024-05-22 14:25:53.266 UTC [28] LOG:  checkpoint complete: wrote 6 buffers (0.0%); 0 WAL file(s) added, 0 removed, 0 recycled; write=0.007 s, sync=0.002 s, total=0.019 s; sync files=5, longest=0.001 s, average=0.001 s; distance=8 kB, estimate=8 kB; lsn=0/204A7FF8, redo lsn=0/204A7FF8
2024-05-22 14:25:53.335 UTC [1] LOG:  database system is ready to accept connections

Ok,

Hardly functional at all now. Obviously something got stored that has seriously screwed things up. Is it possible to purge the database and start anew without redoing the entire system installation?

thanks

Well,

I closed down the docker container. Deleted everything in the storage folder, did a re-pull of the yml file, and then brought up the docker container.

Everything was fine, but there was a whole lotta schmutz hidden in the Window's app data. I wound up having to do this process again, removing Joplin from the Window's machine and then scrubbing everything Joplin related from the local hard drive.

The Linux app's are significantly better behaved.

Then I started everything up again, and all is good.

Obviously something I stored from an import from OneNote seriously screwed the pooch.

Dunno what it is, and not interested in looking.

Somebody does need to have a look at the Windows app.

Once it stalled, even when I closed out Joplin, there were 6-7 instances still running in Task Manager.

That's just bad behavoir.

I also figured out, that the problem I had with CIFS mounts, was there was already a file in the mounted folder, and the docker daemon gagged on that. It did the same thing on a NFS mount.

We're gettin' smarter (and older...)

I think we can close this.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.