해피 투게더

omv5 에서 pihole 설치 그리고 kernel 5.8.5 본문

장난감

omv5 에서 pihole 설치 그리고 kernel 5.8.5

보아요 2020. 9. 3. 19:07

omv5 에서 chrony 에러 Fatal error : Failed to load seccomp rules

nano /etc/default/chrony

 

DAEMON_OPTS="-F -0"

 

으로 수정후 systemctl start chrony.service

 

 

omv5 에서 네트워크 설정이 systemd 로 바뀌어서 /etc/network/interfaces 가 설치중에 삭제되어 설정이 필요함

 

nano /etc/systemd/network/hm.netdev

 

# hm.netdev
[NetDev]
Name=br0
Kind=bridge

MACAddress=xx:xx:xx:xx:xx:xx # 해당 맥어드레스를 적어주자.

 

# hm-bridge.network
[Match]
Name=eth0
[Network]
Bridge=br0

 

# hm-bridge-dhcp.network
[Match]
Name=br0
[Network]
DHCP=ipv4

 

pihole macvlan 설치

 

portainer stack 에 넣고 deploy

 

네트웍에서 parent 부분은 ifconfig 로 이름을 확인해서 수정. omv5 에서 보이는 eth0을 넣으면 안됨. 이것때문에 삽질.

version: "2"
networks:
  macvlan_NET:
    driver: macvlan
    driver_opts:
      parent: br0                        # <- Update to match your NIC see your OMV WebGUI
    ipam:
      config:
        - subnet: 192.168.2.0/24            # <-- Update
          gateway: 192.168.2.1              # <-- Update
#          ip_range: 192.168.1.2/28          # <-- Update

services:
  pihole:
    container_name: pihole          # We name our container here
    image: pihole/pihole:latest     # Version 4.1 works with the required cap_add section
    hostname: pihole
#    cap_add:
#      - NET_ADMIN                   # This is required for version 4.1 onwards
    networks:
      macvlan_NET:
        ipv4_address: 192.168.2.100 # Same name of network defined above
    ports:
      - "53:53/tcp"
      - "53:53/udp"
      - "67:67/udp"
      - "80:80/tcp"
      - "443:443/tcp"
    # Volumes store your data between container upgrades
    volumes:
       - /srv/dev-disk-by-id-ata-WDC_WD20EFRX-68EUZN0_WD-WCC4M5NLPC0L-part2/hd1/docker/Pihole:/etc/pihole
       - /srv/dev-disk-by-id-ata-WDC_WD20EFRX-68EUZN0_WD-WCC4M5NLPC0L-part2/hd1/docker/Pihole/DNSmasq:/etc/dnsmasq.d
    environment:                    # Optional environment configuration
      ServerIP: 192.168.2.100         # IP of pihole
      WEBPASSWORD: "admin"            # password to enter the admin page; can be changed later
      DNS1: 127.0.0.1
      DNS2: 1.1.1.1      
    restart: unless-stopped         # Set container to always restart unless stopped
 

 

 

uImage
5.17MB

 

uInitrd
9.46MB

 

부팅이 빨라졌다

root@mario:~# dmesg
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 5.8.5-mvebu-tld-1 (root@tldDebianVM) (arm-linux-gnueabihf-gcc (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0, GNU ld (GNU Binutils for Ubuntu) 2.30) #1.0 SMP PREEMPT Thu Aug 27 20:05:13 PDT 2020
[    0.000000] CPU: ARMv7 Processor [414fc091] revision 1 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] OF: fdt: Machine model: WD MyCloud Ex2 Ultra
[    0.000000] printk: bootconsole [earlycon0] enabled
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x000000001fffffff]
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000001fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000001fffffff]
[    0.000000] On node 0 totalpages: 131072
[    0.000000]   Normal zone: 1024 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 131072 pages, LIFO batch:31
[    0.000000] percpu: Embedded 20 pages/cpu s53068 r8192 d20660 u81920
[    0.000000] pcpu-alloc: s53068 r8192 d20660 u81920 alloc=20*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 130048
[    0.000000] Kernel command line: console=ttyS0,115200 root=LABEL=rootfs rootdelay=10 earlyprintk=serial mtdparts=armada-nand:5m@0(u-boot),5m@5m(kernel),5m@10m(uRamdisk),185m@15m(image.cfs),15m@200m(rescue_fw),20m@215m(config),10m@235m(reserve1),10m@245m(reserve2)
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] Memory: 493120K/524288K available (10240K kernel code, 1012K rwdata, 3072K rodata, 1024K init, 342K bss, 31168K reserved, 0K cma-reserved, 0K highmem)
[    0.000000] random: get_random_u32 called from ____cache_alloc+0x338/0x794 with crng_init=0
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
[    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 10 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] L2C-310 enabling early BRESP for Cortex-A9
[    0.000000] L2C-310 full line of zeros enabled for Cortex-A9
[    0.000000] L2C-310 D prefetch enabled, offset 1 lines
[    0.000000] L2C-310 dynamic clock gating enabled, standby mode enabled
[    0.000000] L2C-310 Coherent cache controller enabled, 16 ways, 1024 kB
[    0.000000] L2C-310 Coherent: CACHE_ID 0x410054c9, AUX_CTRL 0x56070001
[    0.000007] sched_clock: 64 bits at 666MHz, resolution 1ns, wraps every 4398046511103ns
[    0.008679] clocksource: arm_global_timer: mask: 0xffffffffffffffff max_cycles: 0x999999d70a, max_idle_ns: 440795225152 ns
[    0.020380] Switching to timer-based delay loop, resolution 1ns
[    0.027192] Ignoring duplicate/late registration of read_current_timer delay
[    0.034908] clocksource: armada_370_xp_clocksource: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 76450417870 ns
[    0.047002] Console: colour dummy device 80x30
[    0.052142] Calibrating delay loop (skipped), value calculated using timer frequency.. 1332.00 BogoMIPS (lpj=6660000)
[    0.063410] pid_max: default: 32768 minimum: 301
[    0.068856] LSM: Security Framework initializing
[    0.074196] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.082177] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
[    0.091189] CPU: Testing write buffer coherency: ok
[    0.096752] CPU0: Spectre v2: using BPIALL workaround
[    0.102620] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.109317] Setting up static identity map for 0x100000 - 0x100060
[    0.116260] mvebu-soc-id: MVEBU SoC ID=0x6820, Rev=0x4
[    0.122202] mvebu-pmsu: Initializing Power Management Service Unit
[    0.129152] rcu: Hierarchical SRCU implementation.
[    0.136691] smp: Bringing up secondary CPUs ...
[    0.142317] Booting CPU 1
[    0.145805] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.145810] CPU1: Spectre v2: using BPIALL workaround
[    0.157955] smp: Brought up 1 node, 2 CPUs
[    0.162728] SMP: Total of 2 processors activated (2664.00 BogoMIPS).
[    0.169771] CPU: All CPU(s) started in SVC mode.
[    0.175416] devtmpfs: initialized
[    0.182198] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
[    0.191040] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.201550] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.209149] xor: measuring software checksum speed
[    0.307024]    arm4regs  :  2096.800 MB/sec
[    0.407022]    8regs     :  1584.400 MB/sec
[    0.507022]    32regs    :  1676.400 MB/sec
[    0.511879] xor: using function: arm4regs (2096.800 MB/sec)
[    0.518130] prandom: seed boundary self test passed
[    0.525240] prandom: 100 self tests passed
[    0.530017] pinctrl core: initialized pinctrl subsystem
[    0.536657] thermal_sys: Registered thermal governor 'step_wise'
[    0.537116] NET: Registered protocol family 16
[    0.549640] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.557703] audit: initializing netlink subsys (disabled)
[    0.564609] audit: type=2000 audit(0.530:1): state=initialized audit_enabled=0 res=1
[    0.573072] cpuidle: using governor ladder
[    0.577889] cpuidle: using governor menu
[    0.582662] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
[    0.591355] hw-breakpoint: maximum watchpoint size is 4 bytes.
[    0.598009] mvebu-pmsu: CPU hotplug support is currently broken on Armada 38x: disabling
[    0.606763] mvebu-pmsu: CPU idle is currently broken on Armada 38x: disabling
[    0.817068] raid6: int32x8  gen()   244 MB/s
[    0.987052] raid6: int32x8  xor()   167 MB/s
[    1.157086] raid6: int32x4  gen()   280 MB/s
[    1.327080] raid6: int32x4  xor()   180 MB/s
[    1.497058] raid6: int32x2  gen()   449 MB/s
[    1.667059] raid6: int32x2  xor()   258 MB/s
[    1.837027] raid6: int32x1  gen()   512 MB/s
[    2.007033] raid6: int32x1  xor()   217 MB/s
[    2.011977] raid6: using algorithm int32x1 gen() 512 MB/s
[    2.018052] raid6: .... xor() 217 MB/s, rmw enabled
[    2.023600] raid6: using intx1 recovery algorithm
[    2.029774] vgaarb: loaded
[    2.033674] SCSI subsystem initialized
[    2.038358] libata version 3.00 loaded.
[    2.038771] usbcore: registered new interface driver usbfs
[    2.045001] usbcore: registered new interface driver hub
[    2.051104] usbcore: registered new device driver usb
[    2.057526] mc: Linux media interface: v0.10
[    2.062534] videodev: Linux video capture interface: v2.00
[    2.068964] pps_core: LinuxPPS API ver. 1 registered
[    2.074602] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.084472] PTP clock support registered
[    2.090448] clocksource: Switched to clocksource arm_global_timer
[    2.886488] VFS: Disk quotas dquot_6.6.0
[    2.891175] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.908290] NET: Registered protocol family 2
[    2.913804] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)
[    2.922858] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear)
[    2.931308] TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    2.939142] TCP: Hash tables configured (established 4096 bind 4096)
[    2.946430] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    2.953675] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    2.961438] NET: Registered protocol family 1
[    2.966826] RPC: Registered named UNIX socket transport module.
[    2.973451] RPC: Registered udp transport module.
[    2.978828] RPC: Registered tcp transport module.
[    2.984228] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    2.991360] PCI: CLS 0 bytes, default 64
[    2.996102] Trying to unpack rootfs image as initramfs...
[    3.399129] Freeing initrd memory: 9692K
[    3.404126] NetWinder Floating Point Emulator V0.97 (double precision)
[    3.411633] hw perfevents: enabled with armv7_cortex_a9 PMU driver, 7 counters available
[    3.422341] Initialise system trusted keyrings
[    3.427483] Key type blacklist registered
[    3.432297] workingset: timestamp_bits=30 max_order=17 bucket_order=0
[    3.439497] zbud: loaded
[    3.443603] NFS: Registering the id_resolver key type
[    3.449338] Key type id_resolver registered
[    3.454226] Key type id_legacy registered
[    3.458919] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    3.466303] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    3.473511] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    3.481766] orangefs_debugfs_init: called with debug mask: :none: :0:
[    3.488983] orangefs_init: module version upstream loaded
[    3.555194] async_tx: api initialized (async)
[    3.560231] Key type asymmetric registered
[    3.565034] Asymmetric key parser 'x509' registered
[    3.570676] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    3.578803] io scheduler bfq registered
[    3.585332] armada-38x-pinctrl f1018000.pinctrl: registered pinctrl driver
[    3.595906] mv_xor f1060800.xor: Marvell shared XOR driver
[    3.661042] mv_xor f1060800.xor: Marvell XOR (Descriptor Mode): ( xor cpy intr )
[    3.670734] mv_xor f1060900.xor: Marvell shared XOR driver
[    3.731009] mv_xor f1060900.xor: Marvell XOR (Descriptor Mode): ( xor cpy intr )
[    3.798352] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    3.807100] printk: console [ttyS0] disabled
[    3.832246] f1012000.serial: ttyS0 at MMIO 0xf1012000 (irq = 23, base_baud = 12500000) is a 16550A
[    3.842125] printk: console [ttyS0] enabled
[    3.851981] printk: bootconsole [earlycon0] disabled
[    3.884316] f1012100.serial: ttyS1 at MMIO 0xf1012100 (irq = 24, base_baud = 12500000) is a 16550A
[    3.895356] ahci-mvebu f10a8000.sata: supply ahci not found, using dummy regulator
[    3.903746] ahci-mvebu f10a8000.sata: supply phy not found, using dummy regulator
[    3.912099] ahci-mvebu f10a8000.sata: supply target not found, using dummy regulator
[    3.920695] ahci-mvebu f10a8000.sata: AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl platform mode
[    3.930503] ahci-mvebu f10a8000.sata: flags: 64bit ncq sntf led only pmp fbs pio slum part sxs
[    3.940962] scsi host0: ahci-mvebu
[    3.945473] scsi host1: ahci-mvebu
[    3.949855] ata1: SATA max UDMA/133 mmio [mem 0xf10a8000-0xf10a9fff] port 0x100 irq 44
[    3.958532] ata2: SATA max UDMA/133 mmio [mem 0xf10a8000-0xf10a9fff] port 0x180 irq 44
[    3.968257] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xda
[    3.975382] nand: Hynix H27U2G8F2CTR-BC
[    3.979940] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    3.988679] Bad block table found at page 131008, version 0x01
[    3.995904] Bad block table found at page 130944, version 0x01
[    4.002895] 8 fixed-partitions partitions found on MTD device pxa3xx_nand-0
[    4.010605] Creating 8 MTD partitions on "pxa3xx_nand-0":
[    4.016732] 0x000000000000-0x000000500000 : "U-Boot"
[    4.023361] 0x000000500000-0x000000a00000 : "uImage"
[    4.029848] 0x000000a00000-0x000000f00000 : "uRamdisk"
[    4.036549] 0x000000f00000-0x00000c800000 : "image.cfs"
[    4.043675] 0x00000c800000-0x00000d700000 : "rescue fw"
[    4.050424] 0x00000d700000-0x00000eb00000 : "config"
[    4.056992] 0x00000eb00000-0x00000f500000 : "reserve1"
[    4.063763] 0x00000f500000-0x00000ff00000 : "reserve2"
[    4.070968] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[    4.079542] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[    4.090797] libphy: Fixed MDIO Bus: probed
[    4.096333] libphy: orion_mdio_bus: probed
[    4.105349] mvneta_bm f10c8000.bm: Buffer Manager for network controller enabled
[    4.117115] mvneta f1034000.ethernet eth0: Using random mac address ca:53:7a:b7:5c:65
[    4.126034] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.133359] ehci-pci: EHCI PCI platform driver
[    4.138579] ehci-orion: EHCI orion driver
[    4.143490] orion-ehci f1058000.usb: EHCI Host Controller
[    4.149632] orion-ehci f1058000.usb: new USB bus registered, assigned bus number 1
[    4.158050] orion-ehci f1058000.usb: irq 40, io mem 0xf1058000
[    4.190459] orion-ehci f1058000.usb: USB 2.0 started, EHCI 1.00
[    4.197263] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
[    4.206300] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.214271] usb usb1: Product: EHCI Host Controller
[    4.219874] usb usb1: Manufacturer: Linux 5.8.5-mvebu-tld-1 ehci_hcd
[    4.226968] usb usb1: SerialNumber: f1058000.usb
[    4.232700] hub 1-0:1.0: USB hub found
[    4.237192] hub 1-0:1.0: 1 port detected
[    4.242799] usbcore: registered new interface driver usblp
[    4.249063] usbcore: registered new interface driver usb-storage
[    4.256050] mousedev: PS/2 mouse device common for all mice
[    4.263316] armada38x-rtc f10a3800.rtc: registered as rtc0
[    4.269627] armada38x-rtc f10a3800.rtc: setting system clock to 2020-09-08T00:06:22 UTC (1599523582)
[    4.279757] i2c /dev entries driver
[    4.286927] orion_wdt: Initial timeout 171 sec
[    4.292470] device-mapper: uevent: version 1.0.3
[    4.297969] device-mapper: ioctl: 4.42.0-ioctl (2020-02-27) initialised: dm-devel@redhat.com
[    4.307369] device-mapper: multipath round-robin: version 1.2.0 loaded
[    4.314662] device-mapper: multipath queue-length: version 0.2.0 loaded
[    4.322021] device-mapper: multipath service-time: version 0.3.0 loaded
[    4.329398] device-mapper: dm-log-userspace: version 1.3.0 loaded
[    4.336255] device-mapper: raid: Loading target version 1.15.1
[    4.344782] marvell-cesa f1090000.crypto: CESA device successfully registered
[    4.353281] hid: raw HID events driver (C) Jiri Kosina
[    4.359375] usbcore: registered new interface driver usbhid
[    4.365709] usbhid: USB HID core driver
[    4.370529] drop_monitor: Initializing network drop monitor service
[    4.377853] NET: Registered protocol family 10
[    4.383741] Segment Routing with IPv6
[    4.388125] RPL Segment Routing with IPv6
[    4.392919] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    4.400397] NET: Registered protocol family 17
[    4.405713] 8021q: 802.1Q VLAN Support v1.8
[    4.410683] Key type dns_resolver registered
[    4.415819] ThumbEE CPU extension supported.
[    4.420827] Registering SWP/SWPB emulation handler
[    4.426498] registered taskstats version 1
[    4.431352] Loading compiled-in X.509 certificates
[    4.436932] zswap: loaded using pool lzo/zbud
[    4.442210] Key type ._fscrypt registered
[    4.446942] Key type .fscrypt registered
[    4.451614] Key type fscrypt-provisioning registered
[    4.458073] Key type big_key registered
[    4.460516] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    4.470164] ata2.00: ATA-9: WDC WD20EFRX-68EUZN0, 82.00A82, max UDMA/133
[    4.477689] ata2.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 32)
[    4.485074] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    4.492551] ata1.00: ATA-9: WDC WD20EFRX-68EUZN0, 82.00A82, max UDMA/133
[    4.500104] ata1.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 32)
[    4.507477] ata2.00: configured for UDMA/133
[    4.507540] Key type encrypted registered
[    4.512972] ata1.00: configured for UDMA/133
[    4.519817] xhci-hcd f10f0000.usb3: xHCI Host Controller
[    4.528328] xhci-hcd f10f0000.usb3: new USB bus registered, assigned bus number 2
[    4.532586] scsi 0:0:0:0: Direct-Access     ATA      WDC WD20EFRX-68E 0A82 PQ: 0 ANSI: 5
[    4.536661] xhci-hcd f10f0000.usb3: hcc params 0x0a000990 hci version 0x100 quirks 0x0000000000010010
[    4.555670] xhci-hcd f10f0000.usb3: irq 46, io mem 0xf10f0000
[    4.555763] sd 0:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[    4.562471] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
[    4.570915] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    4.579928] scsi 1:0:0:0: Direct-Access     ATA      WDC WD20EFRX-68E 0A82 PQ: 0 ANSI: 5
[    4.585716] sd 0:0:0:0: [sda] Write Protect is off
[    4.594546] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.600029] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.608045] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.608649] sd 1:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[    4.626542] usb usb2: Product: xHCI Host Controller
[    4.632167] usb usb2: Manufacturer: Linux 5.8.5-mvebu-tld-1 xhci-hcd
[    4.632191] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    4.639256] usb usb2: SerialNumber: f10f0000.usb3
[    4.645381] sd 1:0:0:0: [sdb] Write Protect is off
[    4.651010] hub 2-0:1.0: USB hub found
[    4.656366] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    4.660753] hub 2-0:1.0: 1 port detected
[    4.660852] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.665735] xhci-hcd f10f0000.usb3: xHCI Host Controller
[    4.681379] xhci-hcd f10f0000.usb3: new USB bus registered, assigned bus number 3
[    4.689625] xhci-hcd f10f0000.usb3: Host supports USB 3.0 SuperSpeed
[    4.696785] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
[    4.705721] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
[    4.714746] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.717365]  sda: sda1 sda2 sda3 sda4
[    4.722726] usb usb3: Product: xHCI Host Controller
[    4.722731] usb usb3: Manufacturer: Linux 5.8.5-mvebu-tld-1 xhci-hcd
[    4.722734] usb usb3: SerialNumber: f10f0000.usb3
[    4.723194] hub 3-0:1.0: USB hub found
[    4.727675]  sdb: sdb1 sdb2 sdb3 sdb4
[    4.732794] hub 3-0:1.0: 1 port detected
[    4.751459] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    4.754927] xhci-hcd f10f8000.usb3: xHCI Host Controller
[    4.759989] sd 1:0:0:0: [sdb] Attached SCSI removable disk
[    4.765250] xhci-hcd f10f8000.usb3: new USB bus registered, assigned bus number 4
[    4.785578] xhci-hcd f10f8000.usb3: hcc params 0x0a000990 hci version 0x100 quirks 0x0000000000010010
[    4.795603] xhci-hcd f10f8000.usb3: irq 47, io mem 0xf10f8000
[    4.802322] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
[    4.811349] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.819310] usb usb4: Product: xHCI Host Controller
[    4.824946] usb usb4: Manufacturer: Linux 5.8.5-mvebu-tld-1 xhci-hcd
[    4.832043] usb usb4: SerialNumber: f10f8000.usb3
[    4.837975] hub 4-0:1.0: USB hub found
[    4.842492] hub 4-0:1.0: 1 port detected
[    4.847355] xhci-hcd f10f8000.usb3: xHCI Host Controller
[    4.853419] xhci-hcd f10f8000.usb3: new USB bus registered, assigned bus number 5
[    4.861669] xhci-hcd f10f8000.usb3: Host supports USB 3.0 SuperSpeed
[    4.868802] usb usb5: We don't know the algorithms for LPM for this host, disabling LPM.
[    4.877735] usb usb5: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
[    4.886777] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.894746] usb usb5: Product: xHCI Host Controller
[    4.900349] usb usb5: Manufacturer: Linux 5.8.5-mvebu-tld-1 xhci-hcd
[    4.907443] usb usb5: SerialNumber: f10f8000.usb3
[    4.913253] hub 5-0:1.0: USB hub found
[    4.917744] hub 5-0:1.0: 1 port detected
[    4.923200] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    4.932878] Freeing unused kernel memory: 1024K
[    4.960971] Checked W+X mappings: passed, no W+X pages found
[    4.967373] Run /init as init process
[    4.971771]   with arguments:
[    4.971774]     /init
[    4.971777]   with environment:
[    4.971779]     HOME=/
[    4.971782]     TERM=linux
[    5.026020] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    5.030301] random: udevadm: uninitialized urandom read (16 bytes read)
[    5.034359] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    5.090501] usb 2-1: new high-speed USB device number 2 using xhci-hcd
[    5.294898] usb 2-1: New USB device found, idVendor=05e3, idProduct=0723, bcdDevice=94.51
[    5.305673] usb 2-1: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    5.314059] usb 2-1: Product: USB Storage
[    5.318799] usb 2-1: Manufacturer: Generic
[    5.328648] usb 2-1: SerialNumber: 000000009451
[    5.336125] usb-storage 2-1:1.0: USB Mass Storage device detected
[    5.344172] usb-storage 2-1:1.0: Quirks match for vid 05e3 pid 0723: 8000
[    5.353431] scsi host2: usb-storage 2-1:1.0
[    5.660539] md/raid1:md126: active with 2 out of 2 mirrors
[    5.722446] random: fast init done
[    5.827295] usbcore: registered new interface driver uas
[    5.931348] md126: detected capacity change from 0 to 2147418112
[    6.421808] scsi 2:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9451 PQ: 0 ANSI: 0
[    6.606699] sd 2:0:0:0: [sdc] 62816256 512-byte logical blocks: (32.2 GB/30.0 GiB)
[    6.615776] sd 2:0:0:0: [sdc] Write Protect is off
[    6.621310] sd 2:0:0:0: [sdc] Mode Sense: 03 00 00 00
[    6.622059] sd 2:0:0:0: [sdc] No Caching mode page found
[    6.628102] sd 2:0:0:0: [sdc] Assuming drive cache: write through
[    6.640787]  sdc: sdc1
[    6.647434] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[   16.939608] Btrfs loaded, crc32c=crc32c-generic
[   17.581041] process '/bin/fstype' started with executable stack
[   17.790840] EXT4-fs (sdc1): mounting ext3 file system using the ext4 subsystem
[   17.822359] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
[   18.705442] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[   18.727932] systemd[1]: Detected architecture arm.
[   18.821376] systemd[1]: Set hostname to <mario>.
[   19.866822] systemd[1]: File /lib/systemd/system/systemd-journald.service:12 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[   19.884718] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[   20.056776] systemd[1]: /lib/systemd/system/smbd.service:9: PIDFile= references path below legacy directory /var/run/, updating /var/run/samba/smbd.pid → /run/samba/smbd.pid; please update the unit file accordingly.
[   20.078224] systemd[1]: /lib/systemd/system/nmbd.service:9: PIDFile= references path below legacy directory /var/run/, updating /var/run/samba/nmbd.pid → /run/samba/nmbd.pid; please update the unit file accordingly.
[   20.197521] systemd[1]: /lib/systemd/system/rpc-statd.service:13: PIDFile= references path below legacy directory /var/run/, updating /var/run/rpc.statd.pid → /run/rpc.statd.pid; please update the unit file accordingly.
[   20.274750] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   20.311433] systemd[1]: Created slice User and Session Slice.
[   20.795974] EXT4-fs (sdc1): re-mounted. Opts: errors=remount-ro
[   20.823183] random: crng init done
[   20.827310] random: 7 urandom warning(s) missed due to ratelimiting
[   22.031260] systemd-journald[1652]: Received request to flush runtime journal from PID 1
[   22.621759] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   22.657602] br0: port 1(eth0) entered blocking state
[   22.663439] br0: port 1(eth0) entered disabled state
[   22.673329] device eth0 entered promiscuous mode
[   22.688901] mvneta f1034000.ethernet eth0: PHY [f1072004.mdio-mii:00] driver [Marvell 88E1510] (irq=POLL)
[   22.703750] mvneta f1034000.ethernet eth0: configuring for phy/sgmii link mode
[   22.913508] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   22.930698] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   22.989003] sd 2:0:0:0: Attached scsi generic sg2 type 0
[   23.520612] Adding 1048572k swap on /swapfile.  Priority:-2 extents:30 across:6028428k FS
[   26.900924] mvneta f1034000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   26.909697] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   26.931818] br0: port 1(eth0) entered blocking state
[   26.937515] br0: port 1(eth0) entered forwarding state
[   26.944796] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[   30.208919] EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: user_xattr,usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0,acl
[   31.259412] NFSD: Using UMH upcall client tracking operations.
[   31.266450] NFSD: starting 90-second grace period (net f0000039)
[   34.552988] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: user_xattr,usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0,acl
[   46.398517] fbcon: Taking over console
[   49.197960] Bridge firewalling registered
[   49.811207] Initializing XFRM netlink socket
[   56.105076] docker0: port 1(veth92edca2) entered blocking state
[   56.118400] docker0: port 1(veth92edca2) entered disabled state
[   56.129481] device veth92edca2 entered promiscuous mode
[   56.162015] br-0e4ab8ed9a1d: port 1(veth7f3ce44) entered blocking state
[   56.169712] br-0e4ab8ed9a1d: port 1(veth7f3ce44) entered disabled state
[   56.183080] device veth7f3ce44 entered promiscuous mode
[   56.189726] br-0e4ab8ed9a1d: port 1(veth7f3ce44) entered blocking state
[   56.197130] br-0e4ab8ed9a1d: port 1(veth7f3ce44) entered forwarding state
[   56.212185] br-0e4ab8ed9a1d: port 1(veth7f3ce44) entered disabled state
[   57.620284] docker0: port 2(vethdaab12a) entered blocking state
[   57.627463] docker0: port 2(vethdaab12a) entered disabled state
[   57.635065] device vethdaab12a entered promiscuous mode
[   57.642395] docker0: port 2(vethdaab12a) entered blocking state
[   57.649065] docker0: port 2(vethdaab12a) entered forwarding state
[   57.656686] docker0: port 2(vethdaab12a) entered disabled state
[   58.331506] docker0: port 3(vetha0041e5) entered blocking state
[   58.341693] docker0: port 3(vetha0041e5) entered disabled state
[   58.356259] device vetha0041e5 entered promiscuous mode
[   58.372038] docker0: port 3(vetha0041e5) entered blocking state
[   58.378728] docker0: port 3(vetha0041e5) entered forwarding state
[   58.387632] docker0: port 3(vetha0041e5) entered disabled state
[   59.670215] docker0: port 4(veth8037bf9) entered blocking state
[   59.677981] docker0: port 4(veth8037bf9) entered disabled state
[   59.685551] device veth8037bf9 entered promiscuous mode
[   59.693227] docker0: port 4(veth8037bf9) entered blocking state
[   59.699910] docker0: port 4(veth8037bf9) entered forwarding state
[   59.708072] docker0: port 4(veth8037bf9) entered disabled state
[  328.826944] eth0: renamed from veth5dac78b
[  328.880806] eth0: renamed from vethac8f37e
[  328.930792] eth0: renamed from vethee5ec57
[  329.008440] IPv6: ADDRCONF(NETDEV_CHANGE): veth92edca2: link becomes ready
[  329.016316] docker0: port 1(veth92edca2) entered blocking state
[  329.023006] docker0: port 1(veth92edca2) entered forwarding state
[  329.030136] IPv6: ADDRCONF(NETDEV_CHANGE): vethdaab12a: link becomes ready
[  329.038057] docker0: port 2(vethdaab12a) entered blocking state
[  329.044730] docker0: port 2(vethdaab12a) entered forwarding state
[  329.051804] IPv6: ADDRCONF(NETDEV_CHANGE): docker0: link becomes ready
[  329.072905] IPv6: ADDRCONF(NETDEV_CHANGE): veth8037bf9: link becomes ready
[  329.081071] docker0: port 4(veth8037bf9) entered blocking state
[  329.087729] docker0: port 4(veth8037bf9) entered forwarding state
[  332.317072] eth0: renamed from vethf9a030c
[  332.409378] IPv6: ADDRCONF(NETDEV_CHANGE): vetha0041e5: link becomes ready
[  332.417571] docker0: port 3(vetha0041e5) entered blocking state
[  332.424265] docker0: port 3(vetha0041e5) entered forwarding state
[  332.945615] eth0: renamed from vetha9cd7b6
[  332.989632] device br0 entered promiscuous mode
[  333.137466] eth0: renamed from vethe34237f
[  333.184275] IPv6: ADDRCONF(NETDEV_CHANGE): veth7f3ce44: link becomes ready
[  333.192288] br-0e4ab8ed9a1d: port 1(veth7f3ce44) entered blocking state
[  333.199662] br-0e4ab8ed9a1d: port 1(veth7f3ce44) entered forwarding state
[  333.209231] IPv6: ADDRCONF(NETDEV_CHANGE): br-0e4ab8ed9a1d: link becomes ready
[  341.580631] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
root@mario:~#