Welcome! Log In Create A New Profile

Advanced

Un-bricking DS214se after a failed DSM downgrade

Posted by DS214se 
Un-bricking DS214se after a failed DSM downgrade
December 31, 2024 01:32AM
Hello!
First, I'd like to thank bodhi and jhackert for their conversations they had back in 2021-2022 (can't remember exactly).
Without you guys, I would've not been able to un-brick my DS214se!!! :)
Second, I wanted to downgrade from DSM 7.1.1 to 6.2.4 cause I thought that 6.2.4 still supports LANMAN1 protocol, which as you'll see, was not the case. I wanted to access the NAS from MS-DOS.
This failed downgrade completely blocked me from accessing the NAS using browser interface, SSH or Telnet.

This works for the versions of firmware that are formed from 3 files: uboot_something-something.bin, rd.bin and zImage

What you need, for Windows:
- USB 2 UART: CH341 or CH341A or CP2102. For CH341 to work on Serial (COM port), move jumper from 1-2 to 2-3
The COM port number will be shown in Device Manager -> Interface
Windows Update will install drivers for both of them, don't bother searching for drivers
- for UART: you'll connect the Rx from USB to Tx from the NAS and vice-versa and the GND-USB to GND-NAS
- an USB stick with ext2 partition (I made a 60MB partition), made in Linux, any Linux
- the zImage extracted from the .pat file of the OS (from the Synology download page)
- copy the zImage onto the USB's ext2 partition
- hopefully you'll still have the HDD with the downgrade version of DSM on it!!!
- I used Putty the entire time

Unbricking procedure (the double quotes are not needed,I used them to see the command better):
- connect the UART as explained above, the power cable and start the NAS
- when it says to press Ctrl+C (pay attention on the screen), do that
- the prompt will appear like this: ""Marvel>>""
- at ""Marvel>>"" insert ""resetenv"" and press enter. This will erase the zImage (kernel) from the NAS
I did this cause as you've seen above, it completely blocked me from accessing the NAS
- turn off the NAS using the ""syno_pwoff"" command
- insert the USB with the zImage on it and the HDD with the downgraded version of
DSM (the one you used for downgrading)
- start the NAS and now it will automatically enter into the ""Marvell>>"" prompt since the zImage (kernel) was erased
- use ""usb reset"" press enter
- then ""setenv usbActive 0"" and press enter (DS214se has USB ports only at the back, if you have front USB ports and want to use them, insert 1 instead of 0)
- then use ""usb reset"" and press enter again, it should tell you that the USB stick is recognized
- then use ""ext2load usb 0:1 2159760 /zImage"" (this number 2159760, is the bytes size of the zImage)
also try without the slash / , in case it doesn't access it
- it should tell you that it read the file
- now use ""bootm"" command and press enter, it should start booting right into DSM now, DSM from the HDD
if it doesn't work, use ""bootm 0x2159760""
- now you can update the DSM version from the browser interface and during this the zImage (kernel) will also be rewritten onto the firmware chip and you'll not need the USB stick anymore after this
- this is all I did. It seems easy but it took me days to figure this out, as I said, not an expert, learned on the way

This is how you can access the NAS (DS214se, DSM 7.1.1 in my case) from MS-DOS (even OS/2), using the LANMAN1 network protocol:

This is what I did in DSM 7.1.1:
- Control Panel
- File Services
- SMB Settings
- Enable SMB Service
- Advanced Settings
- General
- Minimum SMB protocol: SMB1
- Others
- Enable NTLMv1 authentication

- Control Panel
- Terminal & SNMP
- Enable Telnet service (port 23)
- Enable SSH service (port 22)
- Advanced Settings
- Low

- Control Panel
- Security
- Protection
- Enable auto block -- uncheck

Restart NAS

This is what I did using Putty with the SSH protocol:
- connect with Putty using your user and password
- insert this command line ""cd /etc/samba/"" (will get you into the Samba directory)
- then ""ls -ltr"" and you should see a file named ""smb.conf"". You are where you're supposed to
- enter and modify the file using ""sudo vi smb.conf""
- I think this is UNIX and for you to be able to modify it you have to press the Insert keyboard key or type "":i"" and press enter
- enter these 3 lines:
modify ""min protocol=NT1"" to ""min protocol=LANMAN1""
add ""ntlm auth=yes""
add ""lanman auth=yes""
- press ESC
- type "":wq"" and press enter. Done
- restart the NAS or use this command to restart the Samba server: ""sudo smbcontrol smbd reload-config""
I restarted the NAS, didn't try the restart Samba server command line
- create a new account in DSM and give it Read Only access (this what I did, I didn't want, by mistake, to delete files from DOS, W9x)
You can use your main account, as well, it doesn't matter.
- open Putty using SSH, log-in
- insert ""sudo cat /etc/samba/private/smbpasswd""
- this will be the answer:
""your account:a number:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:numbers and letters:whatever appears here""
This means that the hash for the password is not done and this is why you can't access the NAS from DOS, even though you did all the steps from above
- it's time to create a hash for the password:
- insert ""sudo smbpasswd -L -U your username"" and press enter.
- it will ask you for a new password. I used the same one I entered in DSM. Now the hash is done
- to verify the hash use ""sudo cat /etc/samba/private/smbpasswd"" again and this should be the answer:
""your account:a number:numbers and letters:numbers and letters:whatever appears here""
- restart the NAS (I don't think it's obligatory but that's what I did)
- all done

For DOS, install Microsoft Network Client 3.0
After this, you can insert into the autoexec file this line "ping your IP from the router, NAS, etc"
It will ping your NAS, router, etc everytime you enter DOS
Connect with the user and password you chose
Use ""net view"" and will show you the entire network. If it errors, doesn't matter
Use ""net view \\your NAS name"" wait 5-10sec and it should connect showing you the shared folder
Use ""net use H: \\your NAS name\your shared folder"" to map it.
You can use whatever letter you want, H is an example

This is all I did.

Of course, the NAS is not connected to the internet, I've read that the LANMAN1 password hash can be broken in miliseconds by modern GPUs.

Lastly, is there a way, using UART, to save the entire firmware on an USB stick or HDDs?
I've seen that the firmware chips can go bad, too.

Happy new year to everyone!

PS: in case of improper NAS shutdown, the hash will be deleted, you'll have to create another one!



Edited 4 time(s). Last edit at 01/01/2025 12:59AM by DS214se.
Re: Un-bricking DS214se after a failed DSM downgrade
December 31, 2024 04:55PM
DS214se,

Good works!

> Lastly, is there a way, using UART, to save the
> entire firmware on an USB stick or HDDs?

> I've seen that the firmware chips can go bad,
> too.

SSH into the running DSM OS. And use command line to dump the flash partitions to the USB/HDD drive.

But first, you need to post the serial console boot log so I can give precise commands to do that. And also while inside DSM,

cat /proc/mtd

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Un-bricking DS214se after a failed DSM downgrade
January 01, 2025 12:55AM
bodhi Wrote:
-------------------------------------------------------
> DS214se,
>
> Good works!
>
> > Lastly, is there a way, using UART, to save
> the
> > entire firmware on an USB stick or HDDs?

> > I've seen that the firmware chips can go bad,
> > too.
>
> SSH into the running DSM OS. And use command line
> to dump the flash partitions to the USB/HDD drive.
>
>
> But first, you need to post the serial console
> boot log so I can give precise commands to do
> that. And also while inside DSM,
>
>
> cat /proc/mtd
>

hello bodhi!
thank you! :) i really enjoyed it, never played with Putty, SSH, UART, firmware, it was al new
since I'm into retro computers, that's why I wanted DOS to access the NAS, and the NAS has about 10-11 yrs, I went all the way in, it's not like I had something to lose, it was already broken, what can go even worse?! :))

I attached the log while installing DSM 7.1.1

part 1
BootROM 1.08

Booting from SPI flash

High speed PHY - Version: 2.1.2 (COM-PHY-V20) 

Update PEX Device ID 0x67100

High speed PHY - Ended Successfully
DDR3 Training Sequence - Ver 4.5.0 

DDR3 Training Sequence - Ended Successfully 

Status = MV_OK

BootROM: Image checksum verification PASSED


 __   __                      _ _
|  \/  | __ _ _ ____   _____| | |
| |\/| |/ _` | '__\ \ / / _ \ | |
| |  | | (_| | |   \ V /  __/ | |
|_|  |_|\__,_|_|    \_/ \___|_|_|
         _   _     ____              _
        | | | |   | __ )  ___   ___ | |_ 
        | | | |___|  _ \ / _ \ / _ \| __| 
        | |_| |___| |_) | (_) | (_) | |_ 
         \___/    |____/ \___/ \___/ \__| 
 ** LOADER **


U-Boot 2011.12-SYNO-944e83b-2013-08-13 (Aug 14 2013 - 14:05:18) Marvell version: v2011.12 2013_Q1.2

Board: SYNO-DS214se-BP
SoC:   MV6710 A1
CPU:   Marvell PJ4B v7 UP (Rev 1) LE
       CPU    @ 800 [MHz]
       L2     @ 533 [MHz]
       TClock @ 200 [MHz]
       DDR    @ 533 [MHz]
       DDR 16Bit Width, FastPath Memory Access
DRAM:  256 MiB

Map:   Code:		0x0ff09000:0x0ffa1354
       BSS:		0x0ffef0a0
       Stack:		0x0f9f8ef8
       Heap:		0x0f9f9000:0x0ff09000

MMC:   MRVL_MMC: 0
SF: Detected M25P64 with page size 64 KiB, total 8 MiB
*** Warning - bad CRC, using default environment

PEX 0.0(0): Detected No Link.
PEX 0.1(1): Detected No Link.
FPU not initialized
USB 0: Host Mode
USB 1: Host Mode
Modules/Interfaces Detected:
       RGMII0 Phy
       PEX0 (Lane 0)
       PEX1 (Lane 1)
       SATA0 (Lane 2)
       SATA1 (Lane 3)

Synology Model: DS214se
Fan Status: Good

Net:   egiga0 [PRIME]
Press Ctrl+C to abort autoboot in 3 second
SF: Detected M25P64 with page size 64 KiB, total 8 MiB
## Booting kernel from Legacy Image at f40c0000 ...
   Image Name:   Linux-3.2.101
   Created:      2022-09-20  14:49:27 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    1892528 Bytes = 1.8 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at f4390000 ...
   Image Name:   synology_armada370_214se 42962
   Created:      2022-09-22  10:06:33 UTC
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    3603206 Bytes = 3.4 MiB
   Load Address: 08000000
   Entry Point:  08000000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Linux version 3.2.101 (root@build17) (gcc version 8.5.0 (GCC) ) #42962 Tue Sep 20 22:48:42 CST 2022
[    0.000000] CPU: Marvell PJ4Bv7 Processor [561f5811] revision 1 (ARMv7), cr=18c53c7d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[    0.000000] Machine: Marvell Armada-370
[    0.000000] Using UBoot passing parameters structure
[    0.000000] >>>>>>>Tag MAC 69:0f:07:43:50:00
[    0.000000] >>>>>>>Tag MAC 00:00:00:00:00:00
[    0.000000] Memory policy: ECC disabled, Data cache writealloc
[    0.000000] Built 1 zonelists in Zone order, mobility grouping off.  Total pages: 65024
[    0.000000] Kernel command line: console=ttyS0,115200 ip=off initrd=0x8000040,8M root=/dev/md0 rw syno_hw_version=DS214se ihd_num=2 netif_num=1 flash_size=8
[    0.000000] Synology Hardware Version: DS214se-j
[    0.000000] Internal HD num: 2
[    0.000000] Internal netif num: 1
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Memory: 256MB = 256MB total
[    0.000000] Memory: 240164k/240164k available, 21980k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xd0800000 - 0xfa800000   ( 672 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0494000   (4656 kB)
[    0.000000]       .init : 0xc0494000 - 0xc04bc000   ( 160 kB)
[    0.000000]       .data : 0xc04bc000 - 0xc04e1320   ( 149 kB)
[    0.000000]        .bss : 0xc04e1344 - 0xc0539cbc   ( 355 kB)
[    0.000000] NR_IRQS:256
[    0.000000] a370_time_init
[    0.000000] sched_clock: 32 bits at 533MHz, resolution 1ns, wraps every 8058ms
[    7.496774] Calibrating delay loop... 795.44 BogoMIPS (lpj=3977216)
[    7.536744] pid_max: default: 32768 minimum: 301
[    7.536873] Security Framework initialized
[    7.536912] AppArmor: AppArmor initialized
[    7.536968] Mount-cache hash table entries: 512
[    7.537329] CPU: Testing write buffer coherency: ok
[    7.538022] devtmpfs: initialized
[    7.542078] NET: Registered protocol family 16
[    7.544260] L0 cache Enabled
[    7.544274] Speculative Prefetch Disabled
[    7.544301] Aurora L2 Cache Enabled
[    7.544335] Support IO coherency.
[    7.544351] Enable DLB and DRAM write coalescing
[    7.555870] 
[    7.555878] CPU Interface
[    7.555883] -------------
[    7.555890] SDRAM_CS0 ....base 00000000, size 256MB 
[    7.555907] SDRAM_CS1 ....disable
[    7.555915] SDRAM_CS2 ....disable
[    7.555924] SDRAM_CS3 ....disable
[    7.555932] DEVICE_CS0 ....base f2000000, size  32MB 
[    7.555949] DEVICE_CS1 ....no such
[    7.555968] DEVICE_CS2 ....no such
[    7.555988] DEVICE_CS3 ....no such
[    7.556007] PEX0_MEM ....base e0000000, size  32MB 
[    7.556022] PEX0_IO ....base f1100000, size   1MB 
[    7.556036] PEX1_MEM ....base e2000000, size  32MB 
[    7.556051] PEX1_IO ....base f1200000, size   1MB 
[    7.556066] INTER_REGS ....base f1000000, size   1MB 
[    7.556080] DMA_UART ....no such
[    7.556099] SPI_CS0 ....base f0000000, size  16MB 
[    7.556115] SPI_CS1 ....no such
[    7.556134] SPI_CS2 ....no such
[    7.556153] SPI_CS3 ....no such
[    7.556172] SPI_CS4 ....no such
[    7.556191] SPI_CS5 ....no such
[    7.556210] SPI_CS6 ....no such
[    7.556229] SPI_CS7 ....no such
[    7.556249] BOOT_ROM_CS ....no such
[    7.556268] DEV_BOOTCS ....base f5000000, size  16MB 
[    7.556284] PMU_SCRATCHPAD ....no such
[    7.556304] CRYPT0_ENG ....base c8010000, size  64KB 
[    7.556321] 
[    7.556325]   Marvell Armada370 Board-- SYNO-DS214se-BP  Soc: MV6710 A1 LE
[    7.556342]   LSP version: linux-3.2.y-2013_Q1.2p2
[    7.556349] 
[    7.556353] 
[    7.556363]  Detected Tclk 200000000, SysClk 533000000, FabricClk 533000000
[    7.558663] Synology Armada370 DS214se GPIO Init
[    7.560250] Marvell USB EHCI Host controller #0: c4047000
[    7.560650] Marvell USB EHCI Host controller #1: c405ce00
[    7.561165] PCI: bus0: Fast back to back transfers enabled
[    7.561187] mvPexLocalBusNumSet: ERR. Invalid PEX interface 1
[    7.561197] mvPexLocalDevNumSet: ERR. Invalid PEX interface 1
[    7.569628] bio: create slab <bio-0> at 0
[    7.570620] SCSI subsystem initialized
[    7.572364] Switching to clocksource armada370_clocksource
[    7.572573] AppArmor: AppArmor Filesystem Enabled
[    7.575034] NET: Registered protocol family 2
[    7.582328] IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
[    7.582605] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    7.582716] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[    7.582791] TCP: Hash tables configured (established 8192 bind 8192)
[    7.582802] TCP reno registered
[    7.582814] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    7.582834] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    7.583012] NET: Registered protocol family 1
[    7.583263] Trying to unpack rootfs image as initramfs...
[   10.514469] rootfs image is not initramfs (no cpio magic); looks like an initrd
[   10.549863] Freeing initrd memory: 8192K
[   10.550205] XOR registered 4 channels
[   10.550218] cesadev_init(c049c48c)
[   10.551181] Armada XP hwmon thermal sensor initialized.
[   10.551310] Initializing Armada-XP CPU power management  (WFI)
[   10.552075] audit: initializing netlink socket (disabled)
[   10.552115] type=2000 audit(3.040:1): initialized
[   10.552477] VFS: Disk quotas dquot_6.5.2
[   10.552521] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[   10.553046] msgmni has been set to 485
[   10.554330] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[   10.554347] io scheduler noop registered
[   10.554406] io scheduler cfq registered (default)
[   10.554732] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[   10.556102] serial8250.0: ttyS0 at MMIO 0xf1012000 (irq = 41) is a 16550A
[   11.113339] console [ttyS0] enabled
[   11.117339] serial8250.1: ttyS1 at MMIO 0xf1012100 (irq = 42) is a 16550A
[   11.132671] brd: module loaded
[   11.135754] Loading iSCSI transport class v2.0-870.
[   11.142081] sata_mv sata_mv.0: slots 32 ports 2
[   11.148733] scsi0 : sata_mv
[   11.152100] scsi1 : sata_mv
[   11.155373] ata1: SATA max UDMA/133 irq 55
[   11.159499] ata2: SATA max UDMA/133 irq 55
[   14.652416] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   14.672686] ata1.00: ATA-9: WDC WD10PURX-64D85Y0, 01.01A01, max UDMA/133
[   14.679432] ata1.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   14.702640] ata1.00: configured for UDMA/133
[   14.722518] scsi 0:0:0:0: Direct-Access     WDC      WD10PURX-64D85Y0         01.0 PQ: 0 ANSI: 5
[   14.732321] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   14.740053] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   17.732826] Delay 5 seconds to wait for disk 2 ready.
[   22.716335] sd 0:0:0:0: [sda] Write Protect is off
[   22.721245] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   22.741815]  sda: sda1
[   22.745235] sd 0:0:0:0: [sda] Attached SCSI disk
[   23.222414] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   23.242681] ata2.00: ATA-9: WDC WD10PURX-64D85Y0, 01.01A01, max UDMA/133
[   23.249427] ata2.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   23.272639] ata2.00: configured for UDMA/133
[   23.292509] scsi 1:0:0:0: Direct-Access     WDC      WD10PURX-64D85Y0         01.0 PQ: 0 ANSI: 5
[   23.302299] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   23.310032] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[   23.316454] sd 1:0:0:0: [sdb] Write Protect is off
[   23.321787] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   23.331364] physmap platform flash device: 00800000 at f0000000
[   23.341232] SPI Serial flash detected @ 0xf0000000, 8192KB (128sec x 64KB)
[   23.348183] Searching for RedBoot partition table in SYNOMTD-0 at offset 0x7f0000
[   23.395140] 6 RedBoot partitions found on MTD device SYNOMTD-0
[   23.401009] SYNOMTD flash bank 0: Using RedBoot partition definition
[   23.407411] Creating 6 MTD partitions on "SYNOMTD-0":
[   23.412507] 0x000000000000-0x0000000c0000 : "RedBoot"
[   23.419552] 0x0000000c0000-0x000000390000 : "zImage"
[   23.425681] 0x000000390000-0x0000007d0000 : "rd.gz"
[   23.431698] 0x0000007d0000-0x0000007e0000 : "vendor"
[   23.436815] vender Mac0 address : 00:11:32:26:4e:e6
[   23.441727] vender Mac1 doesn't set ucSum:0x00 Buf:0x00 Sum:0.
[   23.447604] vender Mac2 doesn't set ucSum:0x00 Buf:0x00 Sum:0.
[   23.453552] vender Mac3 doesn't set ucSum:0x00 Buf:0x00 Sum:0.
[   23.459429] serial number='13A0M8N006698'
[   23.463396]  sdb: sdb1
[   23.467413] 0x0000007e0000-0x0000007f0000 : "RedBoot Config"
[   23.474048] sd 1:0:0:0: [sdb] Attached SCSI disk
[   23.479639] 0x0000007f0000-0x000000800000 : "FIS directory"
[   23.486516] mv_eth_probe: port_mask=0x3, cpu_mask=0x1 
[   23.491794]   o 2 Giga ports supported
[   23.495588]   o SKB recycle supported (Enabled)
[   23.500145]   o NETA acceleration mode 1
[   23.504103]   o RX Queue support: 8 Queues * 128 Descriptors
[   23.509795]   o TX Queue support: 8 Queues * 532 Descriptors
[   23.515495]   o GSO supported
[   23.518478]   o GRO supported
[   23.521461]   o Receive checksum offload supported
[   23.526287]   o Transmit checksum offload supported
[   23.531191]   o Driver ERROR statistics enabled
[   23.535753] 
[   23.537399]   o Loading network interface(s)
[   23.541701] 
[   23.543221]   o Port 0 is connected to Linux netdevice
[   23.548864] 	giga p=0: mtu=1500, mac=c4027e44
[   23.557228]     o eth0, ifindex = 2, GbE port = 0
[   23.561793]     o eth0, phy chipid = 1410e90, Support WOL = 0
[   23.567782] 
[   23.569288] 
[   23.569291]   o Warning: GbE port 1 is not connected to PHY/RGMII/Switch, skip initialization
[   23.569300] 
[   23.580864] 
[   23.582927] i2c /dev entries driver
[   23.587384] md: raid1 personality registered for level 1
[   23.592894] cpuidle: using governor ladder
[   23.597253] cpuidle: using governor menu
[   23.601354] cancel mvsdio probe
[   23.604864] TCP cubic registered
[   23.608116] NET: Registered protocol family 17
[   23.612621] Registering the dns_resolver key type
[   23.617465] VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 6
[   23.625885] registered taskstats version 1
[   23.631254] md: Waiting for all devices to be available before autodetect
[   23.638126] md: If you don't use raid, use raid=noautodetect
[   23.644597] md: Autodetecting RAID arrays.
[   23.648723] md: Scanned 0 and added 0 devices.
[   23.653215] md: autorun ...
[   23.656025] md: ... autorun DONE.
[   23.659473] RAMDISK: lzma image found at block 0
[   26.804234] VFS: Mounted root (ext2 filesystem) on device 1:0.
START /linuxrc.syno
START /linuxrc.syno.impl
Insert basic USB modules...
:: Loading module usb-common ... [  OK  ]
:: Loading module usbcore[   27.286177] usbcore: registered new interface driver usbfs
[   27.312759] usbcore: registered new interface driver hub
[   27.346393] usbcore: registered new interface driver ethub
[   27.388337] usbcore: registered new device driver usb
 ... [  OK  ]
:: Loading module ehci-hcd[   27.481000] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   27.487679] ehci_marvell ehci_marvell.0: Marvell Orion EHCI
[   27.493368] ehci_marvell ehci_marvell.0: new USB bus registered, assigned bus number 1
[   27.522460] ehci_marvell ehci_marvell.0: irq 45, io base 0xfbb50100
[   27.542411] ehci_marvell ehci_marvell.0: USB 2.0 started, EHCI 1.00
[   27.553618] hub 1-0:1.0: USB hub found
[   27.557424] hub 1-0:1.0: 1 port detected
[   27.576545] ehci_marvell ehci_marvell.1: Marvell Orion EHCI
[   27.582186] ehci_marvell ehci_marvell.1: new USB bus registered, assigned bus number 2
[   27.632491] ehci_marvell ehci_marvell.1: irq 46, io base 0xfbb51100
[   27.664685] ehci_marvell ehci_marvell.1: USB 2.0 started, EHCI 1.00
[   27.695255] hub 2-0:1.0: USB hub found
[   27.699060] hub 2-0:1.0: 1 port detected
 ... [  OK  ]
Insert net driver(Mindspeed only)...
[   28.000897] ds214se_synobios: module license 'Synology Inc.' taints kernel.
[   28.007960] Disabling lock debugging due to kernel taint
[   28.056459] synobios open /dev/ttyS1 success
[   28.060770] 2089-2-28 13:15:44 UTC
[   28.064234] synobios: load, major number 201
[   28.068536] Brand: Synology
[   28.071347] Model: DS-214se
[   28.074167] This is default settings: set group disks wakeup number to 1, spinup time deno 1
[   28.082684] synobios cpu_arch proc entry initialized
[   28.087680] synobios crypto_hw proc entry initialized
[   28.092772] synobios syno_platform proc entry initialized
Starting /usr/syno/bin/synocfgen...
/usr/syno/bin/synocfgen returns 0
[   28.131346] Module [ds214se_synobios] is removed. 
[   28.136294] synobios: unload
Exit on error [12] /dev/md0 is not ready(status: clear), go to junior mode....
Thu Jan  1 00:00:20 UTC 1970
kill: can't kill pid 328: No such process
umount: /etc/mtab: No such file or directory

linuxrc.syno failed on 12

starting pid 693, tty '': '/etc/rc'
:: Starting /etc/rc
:: Mounting procfs ... [  OK  ]
:: Mounting tmpfs ... [  OK  ]
:: Mounting devtmpfs ... [  OK  ]
:: Mounting devpts ... [  OK  ]
:: Mounting sysfs ... [  OK  ]
:: Loading module fat ... [  OK  ]
:: Loading module vfat ... [  OK  ]
:: Loading module sunrpc[   29.413931] RPC: Registered named UNIX socket transport module.
[   29.419898] RPC: Registered udp transport module.
[   29.424662] RPC: Registered tcp transport module.
[   29.429394] RPC: Registered tcp NFSv4.1 backchannel transport module.
 ... [  OK  ]
:: Loading module auth_rpcgss ... [  OK  ]
:: Loading module lockd ... [  OK  ]
:: Loading module nfs ... [  OK  ]
:: Mounting usbfs ... [  OK  ]
:: Loading module synobios[   29.881670] synobios open /dev/ttyS1 success
[   29.886023] 2089-2-28 13:15:46 UTC
[   29.889448] synobios: load, major number 201
[   29.893761] Brand: Synology
[   29.896572] Model: DS-214se
[   29.899381] This is default settings: set group disks wakeup number to 1, spinup time deno 1
[   29.907899] synobios cpu_arch proc entry initialized
[   29.912905] synobios crypto_hw proc entry initialized
[   29.917991] synobios syno_platform proc entry initialized
 ... [  OK  ]
cat: can't open '/proc/sys/kernel/syno_skip_vender_mac_interfaces': No such file or directory
[   30.294221] eth0: mac address changed
[   30.559838] pool #0: pkt_size=1536, buf_size=1632 - 2048 of 2048 buffers added
[   30.567774] eth0: link up
[   30.570435] eth0: started
udhcpc: started, v1.30.1
eth0      Link encap:Ethernet  HWaddr 00:11:32:26:4E:E6  
          inet addr:192.168.0.100  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:532 
          RX bytes:1180 (1.1 KiB)  TX bytes:989 (989.0 B)
          Interrupt:8 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

:: Starting syslogd ... [  OK  ]
/etc/rc: line 302: /usr/syno/bin/syno_pstore_collect: not found
:: Starting scemd
[   37.897269] :eth0: link down
[   37.900677] :eth0: link up, full duplex, speed 1 Gbps
:: Starting services in background
Starting JuniorExpansionPack
Starting findhostd in flash_rd...
Starting services in flash_rd...
Running /usr/syno/etc/rc.d/J01httpd.sh...
Starting httpd:80 in flash_rd...
Starting httpd:5000 in flash_rd...
Running /usr/syno/etc/rc.d/J03ssdpd.sh...
/usr/bin/minissdpd -i eth0
(15): upnp:rootdevice
(51): uuid:upnp_SynologyNAS-001132264ee6::upnp:rootdevice
(57): Synology/synology_armada370_214se/7.1-42962/192.168.0.100
(46): http://192.168.0.100:5000/description-eth0.xml
Connected.
done.
/usr/syno/bin/reg_ssdp_service 192.168.0.100 001132264ee6 7.1-42962 synology_armada370_214se eth0
Running /usr/syno/etc/rc.d/J04synoagentregisterd.sh...
Starting synoagentregisterd...
Running /usr/syno/etc/rc.d/J30DisableNCQ.sh...
Running /usr/syno/etc/rc.d/J80ADTFanControl.sh...
Running /usr/syno/etc/rc.d/J98nbnsd.sh...
Starting nbnsd...
Running /usr/syno/etc/rc.d/J99avahi.sh...
Starting Avahi mDNS/DNS-SD Daemon
/usr/syno/sbin/avahi-daemon: error while loading shared libraries: libm.so.6: cannot open shared object file: No such file or directory
:: Loading module usb-storage[   39.048238] Initializing USB Mass Storage driver...
[   39.061079] usbcore: registered new interface driver usb-storage
[   39.067175] USB Mass Storage support registered.
 ... [  OK  ]
Excution Error
mknod: /dev/ubi_ctrl: File exists
============ Date ============
Thu Jan  1 00:00:31 UTC 1970
==============================

starting pid 1765, tty '': '/sbin/getty 115200 console'

Thu Jan  1 00:00:31 1970


DiskStation login: [  128.329029] EXT3-fs (md0): error: unable to read superblock
[  128.335050] EXT2-fs (md0): error: unable to read superblock
[  128.340721] EXT4-fs (md0): unable to read superblock
[  128.346018] FAT-fs (md0): unable to read boot sector
[  227.326902] EXT3-fs (md0): error: unable to read superblock
[  227.332964] EXT2-fs (md0): error: unable to read superblock
[  227.338634] EXT4-fs (md0): unable to read superblock
[  227.343947] FAT-fs (md0): unable to read boot sector
[  251.832927] md: bind<sda1>
[  251.835965] md: bind<sdb1>
[  251.839250] bio: create slab <bio-1> at 1
[  251.843796] md/raid1:md0: active with 2 out of 2 mirrors
[  251.862488] md0: detected capacity change from 0 to 8589869056
[  255.032879] md: bind<sda2>
[  255.035909] md: bind<sdb2>
[  255.039274] md/raid1:md1: active with 2 out of 2 mirrors
[  255.062495] md1: detected capacity change from 0 to 2147418112
[  255.220226]  md1: unknown partition table
[  255.377387]  md0: unknown partition table
[  256.336303] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  256.345672] EXT2-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  256.365711] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
[  256.518413] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  256.527780] EXT2-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  256.545170] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
[  256.619989] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  256.629323] EXT2-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  256.645158] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
[  601.134185] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  601.145202] EXT2-fs (md0): error: couldn't mount because of unsupported optional features (240)
[  601.203698] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)

The system is going down NOW!

Sent SIGTERM to all processes

Sent SIGKILL to[  602.542958] md: md1 in immediate safe mode
 all processes
[  602.548894] Module [usb_storage] is removed. 

rmmod usb_stora[  602.554225] usbcore: deregistering interface driver usb-storage
ge
[  602.561704] md: md0 in immediate safe mode

Requesting system reboot
[  607.574414] sd 1:0:0:0: [sdb] Synchronizing SCSI cache
[  607.579826] sd 1:0:0:0: [sdb] Stopping disk
[  608.001309] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[  608.021301] sd 0:0:0:0: [sda] Stopping disk
[  608.441735] Shutting Down Marvell Ethernet Driver
[  608.446497] Restarting system.
[  6 

BootROM 1.08

Booting from SPI flash

High speed PHY - Version: 2.1.2 (COM-PHY-V20) 

Update PEX Device ID 0x67100

High speed PHY - Ended Successfully
DDR3 Training Sequence - Ver 4.5.0 

DDR3 Training Sequence - Ended Successfully 

Status = MV_OK

BootROM: Image checksum verification PASSED


 __   __                      _ _
|  \/  | __ _ _ ____   _____| | |
| |\/| |/ _` | '__\ \ / / _ \ | |
| |  | | (_| | |   \ V /  __/ | |
|_|  |_|\__,_|_|    \_/ \___|_|_|
         _   _     ____              _
        | | | |   | __ )  ___   ___ | |_ 
        | | | |___|  _ \ / _ \ / _ \| __| 
        | |_| |___| |_) | (_) | (_) | |_ 
         \___/    |____/ \___/ \___/ \__| 
 ** LOADER **


U-Boot 2011.12-SYNO-944e83b-2013-08-13 (Aug 14 2013 - 14:05:18) Marvell version: v2011.12 2013_Q1.2

Board: SYNO-DS214se-BP
SoC:   MV6710 A1
CPU:   Marvell PJ4B v7 UP (Rev 1) LE
       CPU    @ 800 [MHz]
       L2     @ 533 [MHz]
       TClock @ 200 [MHz]
       DDR    @ 533 [MHz]
       DDR 16Bit Width, FastPath Memory Access
DRAM:  256 MiB

Map:   Code:		0x0ff09000:0x0ffa1354
       BSS:		0x0ffef0a0
       Stack:		0x0f9f8ef8
       Heap:		0x0f9f9000:0x0ff09000

MMC:   MRVL_MMC: 0
SF: Detected M25P64 with page size 64 KiB, total 8 MiB
*** Warning - bad CRC, using default environment

PEX 0.0(0): Detected No Link.
PEX 0.1(1): Detected No Link.
FPU not initialized
USB 0: Host Mode
USB 1: Host Mode
Modules/Interfaces Detected:
       RGMII0 Phy
       PEX0 (Lane 0)
       PEX1 (Lane 1)
       SATA0 (Lane 2)
       SATA1 (Lane 3)

Synology Model: DS214se
Fan Status: Good

Net:   egiga0 [PRIME]
Press Ctrl+C to abort autoboot in 3 second
SF: Detected M25P64 with page size 64 KiB, total 8 MiB
## Booting kernel from Legacy Image at f40c0000 ...
   Image Name:   Linux-3.2.101
   Created:      2022-09-20  14:49:27 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    1892528 Bytes = 1.8 MiB
   Load Address: 00008000
   Entry Point:  00008000
   Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at f4390000 ...
   Image Name:   synology_armada370_214se 42962
   Created:      2022-09-22  10:06:33 UTC
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    3603206 Bytes = 3.4 MiB
   Load Address: 08000000
   Entry Point:  08000000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Linux version 3.2.101 (root@build17) (gcc version 8.5.0 (GCC) ) #42962 Tue Sep 20 22:48:42 CST 2022
[    0.000000] CPU: Marvell PJ4Bv7 Processor [561f5811] revision 1 (ARMv7), cr=18c53c7d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[    0.000000] Machine: Marvell Armada-370
[    0.000000] Using UBoot passing parameters structure
[    0.000000] >>>>>>>Tag MAC 4c:37:06:43:50:00
[    0.000000] >>>>>>>Tag MAC 00:00:00:00:00:00
[    0.000000] Memory policy: ECC disabled, Data cache writealloc
[    0.000000] Built 1 zonelists in Zone order, mobility grouping off.  Total pages: 65024
[    0.000000] Kernel command line: console=ttyS0,115200 ip=off initrd=0x8000040,8M root=/dev/md0 rw syno_hw_version=DS214se ihd_num=2 netif_num=1 flash_size=8
[    0.000000] Synology Hardware Version: DS214se-j
[    0.000000] Internal HD num: 2
[    0.000000] Internal netif num: 1
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Memory: 256MB = 256MB total
[    0.000000] Memory: 240164k/240164k available, 21980k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xd0800000 - 0xfa800000   ( 672 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .text : 0xc0008000 - 0xc0494000   (4656 kB)
[    0.000000]       .init : 0xc0494000 - 0xc04bc000   ( 160 kB)
[    0.000000]       .data : 0xc04bc000 - 0xc04e1320   ( 149 kB)
[    0.000000]        .bss : 0xc04e1344 - 0xc0539cbc   ( 355 kB)
[    0.000000] NR_IRQS:256
[    0.000000] a370_time_init
[    0.000000] sched_clock: 32 bits at 533MHz, resolution 1ns, wraps every 8058ms
[    7.500781] Calibrating delay loop... 795.44 BogoMIPS (lpj=3977216)
[    7.540751] pid_max: default: 32768 minimum: 301
[    7.540880] Security Framework initialized
[    7.540919] AppArmor: AppArmor initialized
[    7.540975] Mount-cache hash table entries: 512
[    7.541336] CPU: Testing write buffer coherency: ok
[    7.542029] devtmpfs: initialized
[    7.546085] NET: Registered protocol family 16
[    7.548267] L0 cache Enabled
[    7.548281] Speculative Prefetch Disabled
[    7.548308] Aurora L2 Cache Enabled
[    7.548342] Support IO coherency.
[    7.548358] Enable DLB and DRAM write coalescing
[    7.559877] 
[    7.559885] CPU Interface
[    7.559890] -------------
[    7.559897] SDRAM_CS0 ....base 00000000, size 256MB 
[    7.559914] SDRAM_CS1 ....disable
[    7.559922] SDRAM_CS2 ....disable
[    7.559931] SDRAM_CS3 ....disable
[    7.559939] DEVICE_CS0 ....base f2000000, size  32MB 
[    7.559956] DEVICE_CS1 ....no such
[    7.559975] DEVICE_CS2 ....no such
[    7.559995] DEVICE_CS3 ....no such
[    7.560014] PEX0_MEM ....base e0000000, size  32MB 
[    7.560029] PEX0_IO ....base f1100000, size   1MB 
[    7.560043] PEX1_MEM ....base e2000000, size  32MB 
[    7.560058] PEX1_IO ....base f1200000, size   1MB 
[    7.560073] INTER_REGS ....base f1000000, size   1MB 
[    7.560087] DMA_UART ....no such
[    7.560106] SPI_CS0 ....base f0000000, size  16MB 
[    7.560122] SPI_CS1 ....no such
[    7.560141] SPI_CS2 ....no such
[    7.560160] SPI_CS3 ....no such
[    7.560179] SPI_CS4 ....no such
[    7.560198] SPI_CS5 ....no such
[    7.560217] SPI_CS6 ....no such
[    7.560236] SPI_CS7 ....no such
[    7.560256] BOOT_ROM_CS ....no such
[    7.560275] DEV_BOOTCS ....base f5000000, size  16MB 
[    7.560291] PMU_SCRATCHPAD ....no such
[    7.560311] CRYPT0_ENG ....base c8010000, size  64KB 
[    7.560328] 
[    7.560332]   Marvell Armada370 Board-- SYNO-DS214se-BP  Soc: MV6710 A1 LE
[    7.560349]   LSP version: linux-3.2.y-2013_Q1.2p2
[    7.560356] 
[    7.560360] 
[    7.560370]  Detected Tclk 200000000, SysClk 533000000, FabricClk 533000000
[    7.562670] Synology Armada370 DS214se GPIO Init
[    7.564257] Marvell USB EHCI Host controller #0: c4047000
[    7.564657] Marvell USB EHCI Host controller #1: c405ce00
[    7.565172] PCI: bus0: Fast back to back transfers enabled
[    7.565194] mvPexLocalBusNumSet: ERR. Invalid PEX interface 1
[    7.565204] mvPexLocalDevNumSet: ERR. Invalid PEX interface 1
[    7.573635] bio: create slab <bio-0> at 0
[    7.574627] SCSI subsystem initialized
[    7.576371] Switching to clocksource armada370_clocksource
[    7.576580] AppArmor: AppArmor Filesystem Enabled
[    7.579041] NET: Registered protocol family 2
[    7.586335] IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
[    7.586612] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    7.586723] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[    7.586798] TCP: Hash tables configured (established 8192 bind 8192)
[    7.586809] TCP reno registered
[    7.586821] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    7.586841] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    7.587019] NET: Registered protocol family 1
[    7.587270] Trying to unpack rootfs image as initramfs...
[   10.518476] rootfs image is not initramfs (no cpio magic); looks like an initrd
[   10.553870] Freeing initrd memory: 8192K
[   10.554212] XOR registered 4 channels
[   10.554225] cesadev_init(c049c48c)
[   10.555188] Armada XP hwmon thermal sensor initialized.
[   10.555317] Initializing Armada-XP CPU power management  (WFI)
[   10.556082] audit: initializing netlink socket (disabled)
[   10.556122] type=2000 audit(3.040:1): initialized
[   10.556484] VFS: Disk quotas dquot_6.5.2
[   10.556528] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[   10.557053] msgmni has been set to 485
[   10.558337] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[   10.558354] io scheduler noop registered
[   10.558413] io scheduler cfq registered (default)
[   10.558739] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[   10.560109] serial8250.0: ttyS0 at MMIO 0xf1012000 (irq = 41) is a 16550A
[   11.117346] console [ttyS0] enabled
[   11.121346] serial8250.1: ttyS1 at MMIO 0xf1012100 (irq = 42) is a 16550A
[   11.136678] brd: module loaded
[   11.139761] Loading iSCSI transport class v2.0-870.
[   11.146087] sata_mv sata_mv.0: slots 32 ports 2
[   11.152745] scsi0 : sata_mv
[   11.156109] scsi1 : sata_mv
[   11.159380] ata1: SATA max UDMA/133 irq 55
[   11.163506] ata2: SATA max UDMA/133 irq 55
[   14.656423] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   14.676692] ata1.00: ATA-9: WDC WD10PURX-64D85Y0, 01.01A01, max UDMA/133
[   14.683438] ata1.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   14.706648] ata1.00: configured for UDMA/133
[   14.726526] scsi 0:0:0:0: Direct-Access     WDC      WD10PURX-64D85Y0         01.0 PQ: 0 ANSI: 5
[   14.736326] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   14.744057] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   17.736830] Delay 5 seconds to wait for disk 2 ready.
[   22.720348] sd 0:0:0:0: [sda] Write Protect is off
[   22.725259] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   22.742181]  sda: sda1 sda2
[   22.746249] sd 0:0:0:0: [sda] Attached SCSI disk
[   23.226422] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl F300)
[   23.246689] ata2.00: ATA-9: WDC WD10PURX-64D85Y0, 01.01A01, max UDMA/133
[   23.253436] ata2.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[   23.276645] ata2.00: configured for UDMA/133
[   23.296518] scsi 1:0:0:0: Direct-Access     WDC      WD10PURX-64D85Y0         01.0 PQ: 0 ANSI: 5
[   23.306303] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   23.314035] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[   23.320466] sd 1:0:0:0: [sdb] Write Protect is off
[   23.325795] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   23.335385] physmap platform flash device: 00800000 at f0000000
[   23.345254] SPI Serial flash detected @ 0xf0000000, 8192KB (128sec x 64KB)
[   23.352211] Searching for RedBoot partition table in SYNOMTD-0 at offset 0x7f0000
[   23.399169] 6 RedBoot partitions found on MTD device SYNOMTD-0
[   23.405037] SYNOMTD flash bank 0: Using RedBoot partition definition
[   23.411439] Creating 6 MTD partitions on "SYNOMTD-0":
[   23.416535] 0x000000000000-0x0000000c0000 : "RedBoot"
[   23.423583] 0x0000000c0000-0x000000390000 : "zImage"
[   23.429736] 0x000000390000-0x0000007d0000 : "rd.gz"
[   23.435765] 0x0000007d0000-0x0000007e0000 : "vendor"
[   23.440885] vender Mac0 address : 00:11:32:26:4e:e6
[   23.445796] vender Mac1 doesn't set ucSum:0x00 Buf:0x00 Sum:0.
[   23.451675] vender Mac2 doesn't set ucSum:0x00 Buf:0x00 Sum:0.
[   23.457552] vender Mac3 doesn't set ucSum:0x00 Buf:0x00 Sum:0.
[   23.463497] serial number='13A0M8N006698'
[   23.467460]  sdb: sdb1 sdb2
[   23.472675] sd 1:0:0:0: [sdb] Attached SCSI disk
[   23.477568] 0x0000007e0000-0x0000007f0000 : "RedBoot Config"
[   23.484369] 0x0000007f0000-0x000000800000 : "FIS directory"
[   23.491277] mv_eth_probe: port_mask=0x3, cpu_mask=0x1 
[   23.496578]   o 2 Giga ports supported
[   23.500349]   o SKB recycle supported (Enabled)
[   23.504905]   o NETA acceleration mode 1
[   23.508863]   o RX Queue support: 8 Queues * 128 Descriptors
[   23.514555]   o TX Queue support: 8 Queues * 532 Descriptors
[   23.520253]   o GSO supported
[   23.523237]   o GRO supported
[   23.526220]   o Receive checksum offload supported
[   23.531044]   o Transmit checksum offload supported
[   23.535949]   o Driver ERROR statistics enabled
[   23.540511] 
[   23.542156]   o Loading network interface(s)
[   23.546477] 
[   23.547977]   o Port 0 is connected to Linux netdevice
[   23.553664] 	giga p=0: mtu=1500, mac=c4027e44
[   23.562027]     o eth0, ifindex = 2, GbE port = 0
[   23.566619]     o eth0, phy chipid = 1410e90, Support WOL = 0
[   23.572583] 
[   23.574089] 
[   23.574092]   o Warning: GbE port 1 is not connected to PHY/RGMII/Switch, skip initialization
[   23.574101] 
[   23.585666] 
[   23.587735] i2c /dev entries driver
[   23.592172] md: raid1 personality registered for level 1
[   23.597682] cpuidle: using governor ladder
[   23.602039] cpuidle: using governor menu
[   23.606138] cancel mvsdio probe
[   23.609648] TCP cubic registered
[   23.612900] NET: Registered protocol family 17
[   23.617404] Registering the dns_resolver key type
[   23.622244] VFP support v0.3: implementor 56 architecture 2 part 20 variant 9 rev 6
[   23.630676] registered taskstats version 1
[   23.636050] md: Waiting for all devices to be available before autodetect
[   23.642922] md: If you don't use raid, use raid=noautodetect
[   23.649389] md: Autodetecting RAID arrays.
[   23.688382] md: Scanned 4 and added 4 devices.
[   23.692855] md: autorun ...
[   23.695666] md: considering sda1 ...
[   23.699309] md:  adding sda1 ...
[   23.702571] md: sda2 has different UUID to sda1
[   23.707158] md:  adding sdb1 ...
[   23.710417] md: sdb2 has different UUID to sda1
[   23.715006] md: created md0
[   23.717828] md: bind<sdb1>
[   23.720606] md: bind<sda1>
[   23.723378] md: running: <sda1><sdb1>
[   23.727444] bio: create slab <bio-1> at 1
[   23.731629] md/raid1:md0: active with 2 out of 2 mirrors
[   23.756540] md0: detected capacity change from 0 to 8589869056
[   23.762595] md: considering sda2 ...
[   23.766223] md:  adding sda2 ...
[   23.769517] md:  adding sdb2 ...
[   23.773527] md: created md1
[   23.776344] md: bind<sdb2>
[   23.779139] md: bind<sda2>
[   23.781904] md: running: <sda2><sdb2>
[   23.786000] md/raid1:md1: active with 2 out of 2 mirrors
[   23.806618] md1: detected capacity change from 0 to 2147418112
[   23.812678] md: ... autorun DONE.
[   23.816153] RAMDISK: lzma image found at block 0
[   26.963158] VFS: Mounted root (ext2 filesystem) on device 1:0.
START /linuxrc.syno
START /linuxrc.syno.impl
Insert basic USB modules...
:: Loading module usb-common ... [  OK  ]
:: Loading module usbcore[   27.446074] usbcore: registered new interface driver usbfs
[   27.474030] usbcore: registered new interface driver hub
[   27.506746] usbcore: registered new interface driver ethub
[   27.549272] usbcore: registered new device driver usb
 ... [  OK  ]
:: Loading module ehci-hcd[   27.640569] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   27.647245] ehci_marvell ehci_marvell.0: Marvell Orion EHCI
[   27.652927] ehci_marvell ehci_marvell.0: new USB bus registered, assigned bus number 1
[   27.686466] ehci_marvell ehci_marvell.0: irq 45, io base 0xfbb50100
[   27.706414] ehci_marvell ehci_marvell.0: USB 2.0 started, EHCI 1.00
[   27.717681] hub 1-0:1.0: USB hub found
[   27.721487] hub 1-0:1.0: 1 port detected
[   27.740438] ehci_marvell ehci_marvell.1: Marvell Orion EHCI
[   27.746078] ehci_marvell ehci_marvell.1: new USB bus registered, assigned bus number 2
[   27.793829] ehci_marvell ehci_marvell.1: irq 46, io base 0xfbb51100
[   27.828612] ehci_marvell ehci_marvell.1: USB 2.0 started, EHCI 1.00
[   27.859256] hub 2-0:1.0: USB hub found
[   27.863064] hub 2-0:1.0: 1 port detected
 ... [  OK  ]
Insert net driver(Mindspeed only)...
[   28.164850] ds214se_synobios: module license 'Synology Inc.' taints kernel.
[   28.171914] Disabling lock debugging due to kernel taint
[   28.220598] synobios open /dev/ttyS1 success
[   28.224922] 2024-12-24 16:55:43 UTC
[   28.228466] synobios: load, major number 201
[   28.232769] Brand: Synology
[   28.235580] Model: DS-214se
[   28.238404] This is default settings: set group disks wakeup number to 1, spinup time deno 1
[   28.246921] synobios cpu_arch proc entry initialized
[   28.251917] synobios crypto_hw proc entry initialized
[   28.257012] synobios syno_platform proc entry initialized
Starting /usr/syno/bin/synocfgen...
/usr/syno/bin/synocfgen returns 0
[   28.295608] Module [ds214se_synobios] is removed. 
[   28.300555] synobios: unload
Partition Version=9
[   28.705774]  md0: unknown partition table
[   28.710113] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
[   28.719134] EXT2-fs (md0): error: couldn't mount because of unsupported optional features (240)
[   28.808914] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
 /sbin/e2fsck exists, checking /dev/md0... 
e2fsck 1.44.1 (24-Mar-2018)
/sbin/e2fsck -yvf returns 0
Mounting /dev/md0 /tmpRoot
[   29.493910] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
[   29.502961] EXT2-fs (md0): error: couldn't mount because of unsupported optional features (240)
[   29.518746] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
------------upgrade
Begin upgrade procedure
Found an upgrade file on data volume. Begin upgrade
Print space usage on RootMnt (/tmpRoot)
- Result of df
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/md0               8256888    845996   7308492  10% /tmpRoot
- Result of du
4.0K	./lost+found
8.0K	./@autoupdate
132.0K	./.log.junior
18.7M	./.syno
32.3M	./SynoUpgradePackages
4.0K	./var
12.0K	./etc
744.2M	.
4.0K	var
du: usr: No such file or directory



Edited 3 time(s). Last edit at 01/01/2025 01:55AM by DS214se.
Attachments:
open | download - ins DSM.log (98.1 KB)
Re: Un-bricking DS214se after a failed DSM downgrade
January 01, 2025 01:58AM
part 2
du: usr/local/packages/@appstore/: No such file or directory
Checksum of system tarball verified.
'/tmpRoot/etc/dhcpc' -> '/tmpRoot/.upd@te/etc/dhcpc'
'/tmpRoot/var/.NormalShutdown' -> '/tmpRoot/.upd@te/var/.NormalShutdown'
Removing /tmpRoot/.upd@te//etc/VERSION...
Removing /tmpRoot/.upd@te//etc/ftpusers...
Removing /tmpRoot/.upd@te//etc/rc...
Removing /tmpRoot/.upd@te//etc/rc.network...
Removing /tmpRoot/.upd@te//usr/syno/etc/rc.atalk...
Removing /tmpRoot/.upd@te//usr/syno/etc/.htpasswd...
Removing /tmpRoot/.upd@te//usr/syno/etc/lpd/lpd.conf...
Removing /tmpRoot/.upd@te//usr/syno/etc/printcap...
Removing /tmpRoot/.upd@te//usr/syno/etc/ups.conf...
Removing /tmpRoot/.upd@te//usr/syno/etc/upsd.conf...
Removing /tmpRoot/.upd@te//usr/syno/etc/upsd.users...
Removing /tmpRoot/.upd@te//usr/syno/etc/upsmon.conf...
Removing /tmpRoot/.upd@te//usr/syno/etc/upssched.conf...
Removing /tmpRoot/.upd@te//etc/lvm/lvm.conf...
Removing /tmpRoot/.upd@te//usr/local/etc/rc.d/SynoEnablePersonalServices.sh...
Removing /tmpRoot/.upd@te//etc/rc.network_routing...
Removing /tmpRoot/.upd@te//usr/syno/etc/rc.tun...
Removing /tmpRoot/.upd@te//usr/syno/etc/afpd.conf...
Removing /tmpRoot/.upd@te//etc/pam.d/samba...
Removing /tmpRoot/.upd@te//etc/ppp/ip-up...
Removing /tmpRoot/.upd@te//etc/ppp/ip-down...
Removing /tmpRoot/.upd@te//etc/ppp/ip-function...
Removing /tmpRoot/.upd@te//etc/ppp/ipv6-up...
Removing /tmpRoot/.upd@te//etc/ppp/ipv6-down...
Removing /tmpRoot/.upd@te//etc/ppp/options...
Removing /tmpRoot/.upd@te//usr/local/cups/mime.types...
Removing /tmpRoot/.upd@te//usr/local/cups/mime.convs...
Removing /tmpRoot/.upd@te//etc/cups/cupsd.conf...
Removing /tmpRoot/.upd@te//usr/local/cups/cupsd.conf...
Removing /tmpRoot/.upd@te//usr/local/cups/testprint...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/bannertops...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/commandtops...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/gziptoany...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/imagetops...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/imagetoraster...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/pdftops...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/pstops...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/rastertoepson...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/rastertohp...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/rastertolabel...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/rastertopwg...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/texttops...
Removing /tmpRoot/.upd@te//usr/local/cups/filter/hpgltops...
Removing /tmpRoot/.upd@te//etc/hostapd/stainfo.sh...
Removing /tmpRoot/.upd@te//etc/hostapd/mac_filter/mfscript.sh...
Removing /tmpRoot/.upd@te//usr/syno/etc/rfkill.sh...
Removing /tmpRoot/.upd@te//usr/syno/etc/iptables_guest_net.sh...
Removing /tmpRoot/.upd@te//etc/ld.so.preload...
Removing /tmpRoot/.upd@te//etc/tc/default.cmd...
Removing /tmpRoot/.upd@te//usr/syno/etc/ssl/mkcert.sh...
Removing /tmpRoot/.upd@te//usr/syno/etc/ssl/mkcgikey.sh...
Removing /tmpRoot/.upd@te//etc/logrotate.conf...
Removing /tmpRoot/.upd@te//usr/syno/etc/usbmodem/wcdma_list.json...
Removing /tmpRoot/.upd@te//usr/syno/etc/usbmodem/usb_modeswitch.d/*...
Removing /tmpRoot/.upd@te//etc/php/php.ini...
Removing /tmpRoot/.upd@te//etc/php/php-fpm.conf...
Removing /tmpRoot/.upd@te//etc/php/conf.d/opcache.ini...
Removing /tmpRoot/.upd@te//usr/syno/etc/synoservice.d/global.setting...
Removing /tmpRoot/.upd@te//usr/syno/etc/synoservice.d/system.cfg...
Removing /tmpRoot/.upd@te//usr/syno/etc/ssdp/dsm_desc.xml...
Removing /tmpRoot/.upd@te//usr/syno/etc/iptables_time_ctrl.sh...
Removing /tmpRoot/.upd@te//etc/profile...
Removing /tmpRoot/.upd@te//etc/inputrc...
Removing /tmpRoot/.upd@te//etc/dhclient/dhclient-script...
Removing /tmpRoot/.upd@te//etc/dhclient/ipv4/dhclient.conf...
Removing /tmpRoot/.upd@te//etc/dhclient/ipv6/dhclient.conf...
Removing /tmpRoot/.upd@te//usr/syno/etc/www/SSLProfile.json...
Removing /tmpRoot/.upd@te//etc/vimrc...
Removing /tmpRoot/.upd@te//usr/syno/etc/cacert.pem...
Removing /tmpRoot/.upd@te//usr/syno/etc/iptables_modules_list...
Removing /tmpRoot/.upd@te//usr/syno/etc/iptables_chain_list...
Removing /tmpRoot/.upd@te//usr/local/bin/python*...
Removing /tmpRoot/.upd@te//etc/sudoers...
Removing /tmpRoot/.upd@te//usr/syno/etc/autoupdate.notify...
Removing /tmpRoot/.upd@te//etc/systemd/*.conf...
Removing /tmpRoot/.upd@te//usr/syno/etc/nslcd.conf.template...
Removing /tmpRoot/.upd@te//etc/syslog-ng/patterndb.d/nslcd.conf...
Removing /tmpRoot/.upd@te//etc/motd...
Removing /tmpRoot/.upd@te//etc/rc.subr...
Removing /tmpRoot/.upd@te//usr/syno/etc/hybrid_ha_model_groups.list...
Removing /tmpRoot/.upd@te//usr/syno/etc/wedjat.status...
Removing /tmpRoot/.upd@te//etc/pam.d...
Removing /tmpRoot/.upd@te//usr/syno/etc/vfs...
Removing /tmpRoot/.upd@te//var/run...
Removing /tmpRoot/.upd@te//var/update...
Removing /tmpRoot/.upd@te//var/state/ups...
Removing /tmpRoot/.upd@te//etc/ups...
Removing /tmpRoot/.upd@te//var/spool/postfix...
Removing /tmpRoot/.upd@te//usr/local/cups/backend...
Removing /tmpRoot/.upd@te//usr/local/cups/mime...
Removing /tmpRoot/.upd@te//etc/fw_security/sysconf...
Removing /tmpRoot/.upd@te//etc/init...
Removing /tmpRoot/.upd@te//etc/logrotate.d...
Removing /tmpRoot/.upd@te//etc/syslog-ng...
Removing /tmpRoot/.upd@te//var/lib/dpkg...
Removing /tmpRoot/.upd@te//etc/httpd/conf...
Removing /tmpRoot/.upd@te//etc/postgresql...
Removing /tmpRoot/.upd@te//etc/nginx...
Removing /tmpRoot/.upd@te//etc/wide-dhcpv6...
Removing /tmpRoot/.upd@te//etc/apparmor.d...
Removing /tmpRoot/.upd@te//var/dynlib...
Removing /tmpRoot/.upd@te//etc/iproute2/script...
Removing /tmpRoot/.upd@te//etc/ssl/certs...
Removing /tmpRoot/.upd@te//etc/dbus-1...
Removing /tmpRoot/.upd@te//usr/syno/etc/dbus-1...
Removing /tmpRoot/.upd@te//etc/avahi...
Removing /tmpRoot/.upd@te//usr/syno/etc/synovpnclient/scripts...
Removing /tmpRoot/.upd@te//var/lib/apparmor...
Removing /tmpRoot/.upd@te//usr/syno/etc/www/app.d...
Removing /tmpRoot/.upd@te//usr/syno/etc/rc.d...
Removing /tmpRoot/.upd@te//usr/syno/etc/bluetooth/...
Removing /tmpRoot/.upd@te//usr/syno/etc/smallupdate_patch...
Removing /tmpRoot/.upd@te//etc/ImageMagick-6...
Removing /tmpRoot/.upd@te//usr/syno/etc/logcollector...
Removing /tmpRoot/.upd@te//var/cache/texts...
Removing /tmpRoot/.upd@te//usr/syno/etc/rc.sysv...
Removing /tmpRoot/.upd@te//usr/syno/etc/nslcd.profile...
Removing /tmpRoot/.upd@te//usr/syno/etc/user.data.conf...
Removing /tmpRoot/.upd@te//var/lib/drive-bundle/firmware...
Removing /tmpRoot/.upd@te//usr/syno/etc/backgroundtask...
cp: can't create '/tmpRoot/.old_patch_info/VERSION': No such file or directory
cp: can't create '/tmpRoot/.old_patch_info/synoinfo.conf': No such file or directory
cp: can't create '/tmpRoot/.old_patch_info/.system_info': No such file or directory
[   40.123914]  md1: unknown partition table
[   40.227944] Adding 2097084k swap on /dev/md1.  Priority:-1 extents:1 across:2097084k 
Found /tmpData/SynoUpgradeV2.tar. Hide it.
-rw-r--r--    1 root     root     697568494 Dec 24 16:53 /tmpData/SynoUpgradeV2.tar
'/tmpData/SynoUpgradeV2.tar' -> '/tmpData/.SynoUpgradeV2.tar'
Found /tmpData/SynoUpgradePackages. Hide it.
/tmpData/SynoUpgradePackages:
-rw-r--r--    1 root     root        798030 Sep 22  2022 DhcpServer-armada370-1.0.0-0034.spk
-rw-r--r--    1 root     root       5911704 Sep 22  2022 FileStation-armada370-1.3.4-1404.spk
-rw-r--r--    1 root     root        501759 Sep 22  2022 OAuthService-armada370-1.1.2-0071.spk
-rw-r--r--    1 root     root       5231437 Sep 22  2022 Python2-armada370-2.7.18-1004.spk
-rw-r--r--    1 root     root       7117272 Sep 22  2022 SMBService-armada370-4.10.18-0545.spk
-rw-r--r--    1 root     root       4254175 Sep 22  2022 ScsiTarget-armada370-1.0.6-0266.spk
-rw-r--r--    1 root     root       1390449 Sep 22  2022 SecureSignIn-armada370-1.0.8-0197.spk
-rw-r--r--    1 root     root       7316586 Sep 22  2022 SynologyUniversalSearch-armada370-1.6.0-0534.spk
-rw-r--r--    1 root     root       1300384 Sep 22  2022 USBCopy-armada370-2.2.1-1103.spk
'/tmpData/SynoUpgradePackages' -> '/tmpData/.SynoUpgradePackages'
Not found /tmpData/SynoManutilPackages.
Found /tmpData/SynoUpgradeIndexdb.txz. Hide it.
-rw-r--r--    1 root     root       1436464 Sep 22  2022 /tmpData/SynoUpgradeIndexdb.txz
'/tmpData/SynoUpgradeIndexdb.txz' -> '/tmpData/.SynoUpgradeIndexdb.txz'
Found /tmpData/SynoUpgradeSynohdpackImg.txz. Hide it.
-rw-r--r--    1 root     root      24068532 Sep 22  2022 /tmpData/SynoUpgradeSynohdpackImg.txz
'/tmpData/SynoUpgradeSynohdpackImg.txz' -> '/tmpData/.SynoUpgradeSynohdpackImg.txz'
Do [/bin/tar xf /tmpData/.SynoUpgradeV2.tar -C /tmpRoot]... try=1/2
Success to untar main tarball
Untaring .SynoUpgradeIndexdb.txz
Untaring .SynoUpgradeSynohdpackImg.txz
DataMnt and RootMnt are same devices. No need to move packages
Touching /tmpRoot/var/.UpgradeBootup
[   76.516543] md1: detected capacity change from 2147418112 to 0
[   76.522429] md: md1: set sda2 to auto_remap [0]
[   76.527003] md: md1: set sdb2 to auto_remap [0]
[   76.531560] md: md1 stopped.
[   76.534465] md: unbind<sda2>
[   76.537382] md: export_rdev(sda2)
[   76.540741] md: unbind<sdb2>
[   76.543709] md: export_rdev(sdb2)
temporarily remove +a flag from files in backup dir:
cp: can't create '/tmpRoot/*': No such file or directory
restore +a attribute after config restored:
[   76.740576] synobios open /dev/ttyS1 success
[   76.744899] 2024-12-24 16:56:31 UTC
[   76.748443] synobios: load, major number 201
[   76.752745] Brand: Synology
[   76.755556] Model: DS-214se
[   76.758380] This is default settings: set group disks wakeup number to 1, spinup time deno 1
[   76.766898] synobios cpu_arch proc entry initialized
[   76.771894] synobios crypto_hw proc entry initialized
[   76.776991] synobios syno_platform proc entry initialized
mknod: /dev/synobios: File exists
Starting /usr/syno/bin/synohdcfgen...
/usr/syno/bin/synohdcfgen returns 0
[   76.835660] Module [ds214se_synobios] is removed. 
[   76.840609] synobios: unload
End upgrade procedure
kill: can't kill pid 804: No such process
============upgrade
------------bootup-smallupdate
mkdir: can't create directory '/tmpRoot/proc': File exists
mkdir: can't create directory '/tmpRoot/sys': File exists
mkdir: can't create directory '/tmpRoot/dev': File exists
Try bootup smallupdate
Packed Bootup SmallUpdate HDA1 install successful
Sparse files don't exist. Skip Sparse Bootup SmallUpdate
Finished synoautonano
============bootup-smallupdate
Wait 2 seconds for synology manufactory device
Tue Dec 24 16:56:39 UTC 2024
/dev/md0 /tmpRoot ext4 rw,relatime,user_xattr,barrier=1,journal_checksum,data=ordered 0 0
kill: can't kill pid 341: No such process
root: Start backing up logs in junior mode
[   86.085372] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
[   86.094427] EXT2-fs (md0): error: couldn't mount because of unsupported optional features (240)
[   86.118501] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
umount: /etc/mtab: No such file [   87.246165] EXT3-fs (md0): error: couldn't mount because of unsupported optional features (240)
or directory

linuxrc.syno executed successfully.
[   87.266291] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: barrier=1
[   87.274253] VFS: Mounted root (ext4 filesystem) on device 9:0.
[   87.280133] Trying to move old root to /initrd ... okay
[   87.294336] Freeing init memory: 160K
[   88.836859] systemd[1]: systemd 219 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS -ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[   88.855287] systemd[1]: Detected architecture arm.
[   88.860230] systemd[1]: Running with unpopulated /etc.

Welcome to Linux!

[   88.868653] systemd[1]: Set hostname to <DiskStation>.
[   88.890100] systemd[1]: Initializing machine ID from random generator.
[   89.661987] systemd[1]: Populated /etc with preset unit settings.
[   90.866594] syno-pkg-generator: begin processing builtin package
[   90.896421] syno-pkg-generator: Load info, pkg=[DhcpServer-armada370-1.0.0-0034.spk]
[   91.075028] syno-pkg-generator: Load info, pkg=[FileStation-armada370-1.3.4-1404.spk]
[   91.665038] syno-pkg-generator: Load info, pkg=[OAuthService-armada370-1.1.2-0071.spk]
[   91.792631] syno-pkg-generator: Load info, pkg=[Python2-armada370-2.7.18-1004.spk]
[   92.974056] syno-pkg-generator: Load info, pkg=[SMBService-armada370-4.10.18-0545.spk]
[   93.591645] syno-pkg-generator: Load info, pkg=[ScsiTarget-armada370-1.0.6-0266.spk]
[   93.884995] syno-pkg-generator: Load info, pkg=[SecureSignIn-armada370-1.0.8-0197.spk]
[   94.022424] syno-pkg-generator: Load info, pkg=[SynologyUniversalSearch-armada370-1.6.0-0534.spk]
[   94.472795] syno-pkg-generator: Load info, pkg=[USBCopy-armada370-2.2.1-1103.spk]
[   94.613326] syno-pkg-generator: Generate builtin pkg install units
[   94.701831] syno-pkg-generator: Generate builtin pkg startup units
[   99.618724] syno-pkg-generator: end processing builtin package
[  100.532559] systemd[1]: Cannot add dependency job for unit synoperfeventd.service, ignoring: Unit synoperfeventd.service is masked.
[  100.546233] systemd[1]: Cannot add dependency job for unit SynoLedBrightness.service, ignoring: Unit SynoLedBrightness.service is masked.
[  OK  [  100.568982] systemd[1]: Reached target Paths.
] Reached target[  100.574694] systemd[1]: Starting Paths.
 Paths.
[  100.580077] systemd[1]: Reached target Timers.
[  OK  [  100.585200] systemd[1]: Starting Timers.
] Reached target[  100.590717] systemd[1]: Reached target Swap.
 Timers.
[[  100.596239] systemd[1]: Starting Swap.
  OK  ] Reac[  100.601686] systemd[1]: Created slice Root Slice.
hed target Swap.[  100.607567] systemd[1]: Starting Root Slice.

[  OK  [[  100.613558] systemd[1]: Created slice SSDP service.
0m] Created slic[  100.619553] systemd[1]: Starting SSDP service.
e Root Slice.
[[  100.625723] systemd[1]: Created slice ScsiTarget's slice.
  OK  ][  100.632247] systemd[1]: Starting ScsiTarget's slice.
 Created slice S[  100.638967] systemd[1]: Created slice synobackup daemon slice.
SDP service.
[[  100.645892] systemd[1]: Starting synobackup daemon slice.
[32m  OK  ] [  100.653164] systemd[1]: Created slice System Slice.
Created slice Sc[  100.659130] systemd[1]: Starting System Slice.
siTarget's slice[  100.665486] systemd[1]: Created slice system-syno\x2dmd\x2dresync\x2dspeed\x2dadjust.slice.
.
[  OK  [  100.674724] systemd[1]: Starting system-syno\x2dmd\x2dresync\x2dspeed\x2dadjust.slice.
[0m] Created sli[  100.684439] systemd[1]: Created slice Synology Index slice (WAT).
ce synobackup da[  100.691618] systemd[1]: Starting Synology Index slice (WAT).
emon slice.
[[[  100.699027] systemd[1]: Created slice Python2's slice.
32m  OK  ] C[  100.705262] systemd[1]: Starting Python2's slice.
reated slice Sys[  100.711729] systemd[1]: Listening on udev Control Socket.
tem Slice.
[[3[  100.718240] systemd[1]: Starting udev Control Socket.
2m  OK  ] Cr[  100.725050] systemd[1]: Created slice Synology Cache Advisor.
eated slice syst[  100.731895] systemd[1]: Starting Synology Cache Advisor.
em-syno\x2dmd\x2[  100.739074] systemd[1]: Listening on Journal Socket.
dresync\x2dspeed[  100.745113] systemd[1]: Starting Journal Socket.
\x2dadjust.slice.
[  OK  [  100.753174] systemd[1]: Starting unbind USB device...
[0m] Created slice Synology Index slice (WAT).
[  OK  ] Created slice Python2's slice.
[  OK  ] Listening on[  100.768916] systemd[1]: Starting Load Kernel Modules...
 udev Control Socket.
[  OK  ] Created slice Synology Cache Advisor.
[  100.781472] systemd[1]: Starting Disabling fan checking flag ......
[  OK  ] Listening on Journal Socket.
         Starting unbind USB device...
         Starting Load Kernel Modules...
         Starting Disabling fan checking flag [  100.803886] systemd[1]: Starting Load ntb_brd module...
......
         Starting Load ntb_brd module...
[  100.815358] systemd[1]: Starting Journal Socket (/dev/log).

[  100.830471] systemd[1]: Starting Synology Task Scheduler Init...
         [  100.844220] systemd[1]: Mounted Debug File System.
Starting Synology Task Scheduler Init...
[  100.855725] systemd[1]: Starting Mount usb fs...
         [  100.863798] systemd[1]: Created slice Task Scheduler Group.
Starting Mount u[  100.869693] systemd[1]: Starting Task Scheduler Group.
sb fs...
[[  100.876891] systemd[1]: Listening on Journal Audit Socket.
  OK  ] Crea[  100.883156] systemd[1]: Starting Journal Audit Socket.
ted slice Task S[  100.890542] systemd[1]: Created slice FileStation's slice.
cheduler Group.
[  100.896750] systemd[1]: Starting FileStation's slice.

[  OK  [0[  100.903531] systemd[1]: Created slice Synology DSM desktop service.
m] Listening on [  100.910939] systemd[1]: Starting Synology DSM desktop service.
Journal Audit So[  100.919043] systemd[1]: Created slice Synology Flashcache.
cket.
[  O[  100.925083] systemd[1]: Starting Synology Flashcache.
K  ] Created[  100.932070] systemd[1]: Created slice Synology DSM Storage Service.
 slice FileStation's slice.
[  OK  ] Created slice Synology DSM desktop service.
[[3[  100.946690] systemd[1]: Starting Synology DSM Storage Service.
2m  OK  ] Created slice Synology Flashcache.
[  OK  ] Created slice Synology DSM Storage Service.
[  OK  [  100.967052] systemd[1]: Created slice Synology Swap Works.
] Created slice Synology Swap Wo[  100.975247] systemd[1]: Starting Synology Swap Works.
rks.
[  OK  [  100.990032] systemd[1]: Created slice Shared Folder Sync.
] Created slice Shared Folder Sync.
[  101.000901] systemd[1]: Starting Shared Folder Sync.
[  OK  [  101.006817] systemd[1]: Created slice system-serial\x2dgetty.slice.
] Created slice [  101.015217] systemd[1]: Starting system-serial\x2dgetty.slice.
system-serial\x2[  101.022114] mvCesaInit: channels=1, session=640, queue=64
dgetty.slice.
[  101.035593] systemd[1]: Starting Synology swap...
         [  101.044426] systemd[1]: Created slice SNMP.
Starting Synology swap...
[  OK  ] Created slice SNMP.
[  101.056238] systemd[1]: Starting SNMP.
[  OK  [  101.061746] systemd[1]: Created slice BTRFS Space Reclaim.
] Created slice BTRFS Space Reclaim.
[  101.071735] systemd[1]: Starting BTRFS Space Reclaim.
[  101.079306] systemd[1]: Starting Set time zone information to kernel...
         [  101.112981] systemd[1]: Created slice SMBService's slice.
Starting Set time zone information to kernel...
[  OK  ] Created slice SMBService's slice.
[  101.176954] systemd[1]: Starting SMBService's slice.
[  101.184225] systemd[1]: Starting Link coredump path to volume if possible...
         [  101.245255] systemd[1]: Created slice OAuthService's slice.
Starting Link coredump path to volume if possible...
[  OK  ] Created slice OAuthService's slice.
[  101.281594] systemd[1]: Starting OAuthService's slice.
[  OK  [  101.313220] systemd[1]: Created slice SecureSignIn's slice.
] Created slice SecureSignIn's slice.
[  101.356578] systemd[1]: Starting SecureSignIn's slice.
[  101.364097] systemd[1]: Starting Set hostname...
         Starting Set hostname...
[  101.432884] systemd[1]: Starting check integrity of rd.gz decompression...
         [  101.509249] systemd[1]: Created slice Synology DSM internal service.
Starting check i[  101.515922] systemd[1]: Starting Synology DSM internal service.
ntegrity of rd.gz decompression...
[  OK  ] Created slice Synology DSM internal service.
[  OK  [  101.609893] systemd[1]: Created slice SynoFinder's slice.
] Created slice SynoFinder's slice.
[  101.662536] systemd[1]: Starting SynoFinder's slice.
[  OK  [  101.707064] systemd[1]: Created slice User and Session Slice.
] Created slice [  101.714201] systemd[1]: Starting User and Session Slice.
User and Session Slice.
[  OK  [  101.810543] systemd[1]: Reached target Slices.
] Reached target Slices.
[  101.829893] systemd[1]: Starting Slices.
[  OK  [  101.844022] systemd[1]: Listening on udev Kernel Socket.
] Listening on udev Kernel Socket.
[  101.860815] systemd[1]: Starting udev Kernel Socket.
[  OK  [  101.881008] systemd[1]: Created slice Package Center Slice.
] Created slice Package Center Slice.
[  101.916695] systemd[1]: Starting Package Center Slice.
[  101.922038] systemd[1]: Started Set project quota ID for /var/log.
[  101.942585] systemd[1]: Starting Set boot sequence config...
         [  101.957318] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
Starting Set boot sequence config...
[  101.979964] systemd[1]: Mounting Temporary Directory...
[  102.003248] md: md1 stopped.
         [  102.007482] systemd[1]: Created slice scemd.
Mounting Tempora[  102.012070] systemd[1]: Starting scemd.
ry Directory...
[  OK  ] Created slice scemd.
[  102.023991] md: bind<sdb2>
[  102.037155] md: bind<sda2>
[  OK  [  102.044562] systemd[1]: Created slice RAID Resync Process. Including Resync, Repair and Reshape..
] Created slice RAID Resync Process. ...ing Resync, Repair and Reshape..
[  102.062749] md/raid1:md1: active with 2 out of 2 mirrors
[  102.077411] systemd[1]: Starting RAID Resync Process. Including Resync, Repair and Reshape..
[  OK  [  102.086609] md1: detected capacity change from 0 to 2147418112
] Created slice BTRFS Optimization.
[  102.102322] systemd[1]: Created slice BTRFS Optimization.
[  102.109094]  md1: unknown partition table
[  102.116170] systemd[1]: Starting BTRFS Optimization.
[  OK  [  102.129693] systemd[1]: Mounted Temporary Directory.
] Mounted Temporary Directory.
[  OK  [  102.145320] systemd[1]: Started unbind USB device.
] Started unbind USB device.
[  OK  [  102.157488] systemd[1]: Started Disabling fan checking flag ....
] Started Disabl[  102.166029] systemd[1]: Started Load ntb_brd module.
ing fan checking flag ....
[  OK  ] Started Load ntb_brd module.
[  OK  [  102.180212] systemd[1]: Listening on Journal Socket (/dev/log).
] Listening on Journal Socket (/dev/log).
[  OK  [  102.192769] systemd[1]: Started Synology Task Scheduler Init.
] Started Synology Task Scheduler Init.
[  OK  [  102.205326] systemd[1]: Started Mount usb fs.
] Started Mount usb fs.
[  OK  [  102.216221] systemd[1]: Started Set time zone information to kernel.
] Started Set time zone information to kernel.
[  OK  [  102.229429] systemd[1]: Started Link coredump path to volume if possible.
] Started Link coredump path to volume if possible.
[  OK  [  102.242804] systemd[1]: Started Set hostname.
] Started Set hostname.
[  OK  [  102.253958] systemd[1]: Started check integrity of rd.gz decompression.
] Started check integrity of rd.gz decompression.
[  OK  [  102.267231] systemd[1]: Started Set boot sequence config.
] Started Set bo[  102.274889] systemd[1]: Reached target Sockets.
ot sequence config.
[  OK  ] Reached target Sockets.
[  102.288248] systemd[1]: Starting Sockets.
[  102.294611] systemd[1]: Starting Journal Service...
         [  102.311417] systemd[1]: Reached target Local File Systems.
Starting Journal Service...
[  OK  ] Reached target Lo[  102.322802] systemd[1]: Starting Local File Systems.
cal File Systems.
[  102.340535] systemd[1]: Starting D-Bus Session Message Bus...
[  102.375633] systemd-journald[2001]: Flushing /proc/kmsg...
         Starting D-Bus Session Message B[  102.468961] systemd[1]: Starting Set boot sequence config for temporary use...
us...
         Starting Set boot sequence confi[  102.493077] systemd[1]: Starting udev Coldplug all Devices...
g for temporary use...
         Starting udev Coldplug all Devic[  102.506869] systemd[1]: Starting D-Bus System Message Bus...
es...
[  102.536622] NET: Registered protocol family 10
         Starting D-Bus System Message Bus...
[  OK  [  102.585182] systemd[1]: Started Journal Service.
] Started Journa[  102.591602] IPv6 over IPv4 tunneling driver
l Service.
[  OK  ] Started Set boot sequence config for temporary use.
[  102.709556] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
         Starting Flush Journal to Persistent Storage...
         Starting System Logger Daemon...
[  102.786708] sd 0:0:0:0: Attached scsi generic sg0 type 0
[  102.792516] sd 1:0:0:0: Attached scsi generic sg1 type 0
[  102.894624] loop: module loaded
[  102.898789] systemd-journald[2001]: Received request to flush runtime journal from PID 1
[  OK  ] Started Flush Journal to Persistent Storage.
[  102.939745] Initializing USB Mass Storage driver...
[  102.944783] usbcore: registered new interface driver usb-storage
[  102.950878] USB Mass Storage support registered.
         Starting Create Volatile Files and Directories...
[  103.074420] usbcore: registered new interface driver usblp
[  OK  ] Started D-Bus Session Message Bus.
[  OK  ] Started Create Volatile Files and Directories.
         Starting synodsmnotif[  103.198995] usbcore: registered new interface driver usbhid
y...
[  OK[  103.205262] usbhid: USB HID core driver
  ] Reached target Create SDK locks directory.
         Starting Check Synology user info consistency...
         Starting Check Synology group info consistency...
         Starting Check /etc/synoinfo.conf...
         Starting Synology Database Update...
[  OK  ] Started Load Kernel Modules.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Started synodsmnotify.
         Starting Adjust NIC sequence...
         Mounting Configuration File System...
         Starting Load Fan Modules in Kernel Project...
         Starting Apply default and user cus... sysctl.conf kernel variable....
         Starting Load Kernel Modules in Kernel Project...
[  OK  ] Mounted Configuration File System.
[  103.830402] synobios open /dev/ttyS1 success
[  103.834730] 2024-12-24 16:56:58 UTC
[  103.838283] synobios: load, major number 201
[  103.842585] Brand: Synology
[  103.845395] Model: DS-214se
[  103.848222] This is default settings: set group disks wakeup number to 1, spinup time deno 1
[  103.856741] synobios cpu_arch proc entry initialized
[  103.861736] synobios crypto_hw proc entry initialized
[  103.866832] synobios syno_platform proc entry initialized
[  OK  ] Started Check /etc/synoinfo.conf.
[  OK  ] Started Apply default and user cust...ed sysctl.conf kernel variable..
         Starting Apply Kernel Variables...
[  OK  ] Started Synology Database Update.
[  OK  ] Started Load Fan Modules in Kernel Project.
[  OK  ] Started Apply Kernel Variables.
         Starting Apply kernel variable vm.kswapd_threads...
[  104.150001] Adding 2097084k swap on /dev/md1.  Priority:-1 extents:1 across:2097084k 
         Starting Apply kernel variable vm.min-free-kbytes...
[  OK  ] Started Synology swap.
[  OK  ] Started Apply kernel variable vm.kswapd_threads.
[  OK  ] Started Adjust NIC sequence.
[  OK  ] Started Check Synology group info consistency.
[  OK  ] Started Apply kernel variable vm.min-free-kbytes.
[  OK  ] Started Load Kernel Modules in Kernel Project.
         Starting DSM Release Rolling Group ID...
         Starting Software Init Led for support led v2 models...
[  OK  ] Started Software Init Led for support led v2 models.
[  OK  ] Started DSM Release Rolling Group ID.
[  OK  ] Started Check Synology user info consistency.
[  OK  ] Reached target Synology local user and group ready.
[  OK  ] Reached target Synology synoscheduler functions.
[  OK  ] Reached target User and Group Name Lookups.
         Starting move domain or ldap user p...der to domain or ldap folder....
         Starting Prepare notification cache data...
[  OK  ] Started move domain or ldap user pr...older to domain or ldap folder..
[*     ] (1 of 3) A start job is running for...m Logger Daemon (11s / 1min 39s)
[  OK  ] Started System Logger Daemon.
         Starting Synology DSM configupdate for root-fs...
         Starting Synology Log bootup start...
[  OK  ] Started Synology DSM configupdate for root-fs.
         Starting rebuild local user and group db...
         Starting synodrnode...
[  OK  ] Started Synology Log bootup start.
[  OK  ] Started rebuild local user and group db.
[  OK  ] Reached target Synology root filesystem (rw) ready.
         Starting Load AppArmor profiles...
         Starting syno-cgi-keygen.service...
         Starting Umount initrd...
         Starting DSM Installation ID...
[  OK  ] Reached target Network (Pre).
         Starting Set arp ignore...
         Starting Synology Network Daemon...
         Starting DSM Boot Health Check...
         Starting Synology check locale...
         Starting Set Eunit Sequence...
         Starting Synology Default TLS Profile...
         Starting Clean UPS config...
[  OK  ] Started Clean UPS config.
[  OK  ] Started Set Eunit Sequence.
         Starting udev Kernel Device Manager...
[  OK  ] Started Set arp ignore.
[  OK  ] Started synodrnode.
[  OK  ] Started Umount initrd.
[  OK  ] Started Synology check locale.
[  OK  ] Started DSM Installation ID.
[  OK  ] Started Synology Network Daemon.
         Starting Wait for Synology Network to be Configured...
[  OK  ] Started Wait for Synology Network to be Configured.
         Starting Synology Network Event Daemon...
[  OK  ] Started DSM Boot Health Check.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started Synology Network Event Daemon.
         Starting rc.network...
[  OK  ] Started Synology Default TLS Profile.
[  OK  ] Found device /dev/mtd0.
[  OK  ] Reached target Synology mtd0 device done.
[  OK  ] Started Load AppArmor profiles.
[  OK  ] Reached target System Initialization.
         Starting bootup upgrade sha package...
[  OK  ] Started Serial Getty on ttyS0.
         Starting Serial Getty on ttyS0...
[  OK  ] Reached target Login Prompts.
[  OK  ] Started Synology token manager.
         Starting Synology token manager...
[  OK  ] Started Synology task manager.
         Starting Synology task manager...
[  OK  ] Started bootup upgrade sha package.
[  OK  ] Reached target Basic System.
         Starting synoindex check if there a...ny synoindex-related packages...
[  OK  ] Started Synology log accounting service.
         Starting Synology log accounting service...
         Starting Synology log notification service...
         Starting Login Service...
         Starting Hibernation debug check...
         Starting Synology firmware DLMC...
         Starting Synology filesytem check on bootup...
         Starting synoconfd daemon...
         Starting Control RC power...
         Starting System Profile Tuning...
         Starting always preprocess jobs before any package is started...
[  OK  ] Started synobackup daemon.
         Starting synobackup daemon...
         Starting preprocess jobs before any...e is started when os upgraded...
         Starting Synology Schedule Daemon...
         Starting WD idle3 timer...
         Starting Log Rotate Daemon...
         Starting Write back disk latency to DB...
[  OK  ] Started Synology firmware DLMC.
[  OK  ] Started Synology filesytem check on bootup.
[  OK  ] Started WD idle3 timer.
[  OK  ] Started Write back disk latency to DB.
[  OK  ] Started Login Service.
         Starting Synology space service...
[  OK  ] Started Synology Schedule Daemon.
[FAILED] Failed to start synoindex check if ... any synoindex-related packages.
See "systemctl status synoindex-checkpackage.service" for details.
[DEPEND] Dependency failed for synoindex scand.
[DEPEND] Dependency failed for synoindex notifyd.
[DEPEND] Dependency failed for synomkthumbd.
[DEPEND] Dependency failed for synomkflvd.
[DEPEND] Dependency failed for synoindex mediad.
[DEPEND] Dependency failed for synoindex workerd.
[DEPEND] Dependency failed for synoindex plugind.
[DEPEND] Dependency failed for synoindexd.
[  OK  ] Started synoconfd daemon.
[  OK  ] Started Log Rotate Daemon.
[  OK  ] Started Control RC power.
[  OK  ] Stopped Synology Task Scheduler Vmtouch.
[  OK  ] Started Synology Task Scheduler Vmtouch.
         Starting Synology Task Scheduler Vmtouch...
[  OK  ] Started System Profile Tuning.
[  OK  ] Started Hibernation debug check.
Tue Dec 24 08:57:22 2024


DiskStation login: [  129.651103] eth0: mac address changed
[  133.123111] pool #0: pkt_size=1536, buf_size=1632 - 2048 of 2048 buffers added
[  133.131042] eth0: link up
[  133.133705] eth0: started
[  167.926762] ata1.00: configured for UDMA/133
[  167.931082] ata1: EH complete
[  172.906670] ata2.00: configured for UDMA/133
[  172.910999] ata2: EH complete
[  188.609935] warning: `nginx' uses 32-bit capabilities (legacy support in use)
[  342.019496] iSCSI: init_io_buffer_head(833) LUN-backup: 512 buffers allocated, total 2097152 bytes successfully
[  343.451227] iSCSI: target_core_get_fabric() failed for vhost
[  348.978069] 8021q: 802.1Q VLAN Support v1.8
[  349.822899] findhostd uses obsolete (PF_INET,SOCK_PACKET)
[  371.262281] :eth0: link down
[  371.265692] :eth0: link up, full duplex, speed 1 Gbps
[  442.597117] fuse init (API version 7.22)
[  893.588538] md: bind<sda3>
[  893.632173] md: bind<sdb3>
[  894.056584] md/raid1:md2: active with 2 out of 2 mirrors
[  894.136328] md2: detected capacity change from 0 to 989223124992
[  894.302735]  md2: unknown partition table
[  928.359710] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0,synoacl,oldalloc
[  929.716573] EXT4-fs (dm-1): re-mounted. Opts: (null)
[  929.771845] EXT4-fs (dm-1): re-mounted. Opts: (null)
[  945.336918] EXT4-fs (dm-1): re-mounted. Opts: usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0,synoacl,
[  950.677119] Synotify use 16384 event queue size
[  950.681759] Synotify use 16384 event queue size
[  OK  ] Stopped Notify all idle drives after bootup done.
         Stopping Notify all idle drives after bootup done...
[  OK  ] Stopped syno-mkdhparam.service.
         Stopping syno-mkdhparam.service...
[  OK  ] Stopped target Timers.
[  OK  ] Stopped Synology Event-based Task Scheduler Bootup Trigger.
         Stopping Synology Event-based Task Scheduler Bootup Trigger...
[  OK  ] Removed slice Synology Cache Advisor.
         Stopping Periodic Command Scheduler...
[  OK  ] Stopped Check malware and execute rc.local.
         Stopping Check malware and execute rc.local...
[  OK  ] Stopped target Login Prompts.
[  OK  ] Stopped Notify data volume has been repaired by drop log tree..
         Stopping Notify data volume has been repaired by drop log tree....
         Stopping WS-Discovery Server...
[  OK  ] Stopped Software Init Led for support led v2 models.
         Stopping Software Init Led for support led v2 models...
[  OK  ] Stopped Fan debug check.
         Stopping Fan debug check...
         Stopping Adjust md resync speed after bootup done...
[  OK  ] Stopped Preload synopki data to cache.
         Stopping Preload synopki data to cache...
[  OK  ] Stopped check mediaserver database is needed to upgrade.
         Stopping check mediaserver database is needed to upgrade...
[  OK  ] Stopped Mount usb fs.
         Stopping Mount usb fs...
         Stopping Synology daemon for monitoring disk latency....
[  OK  ] Stopped Memory Rule Check.
         Stopping Memory Rule Check...
[  OK  ] Stopped Check normal shutdown or improper shutdown.
         Stopping Check normal shutdown or improper shutdown...
[  OK  ] Stopped Notification for firmware upgrade result.
         Stopping Notification for firmware upgrade result...
         Stopping Synology Network Event Daemon...
[  OK  ] Stopped Notify system partition error happened.
         Stopping Notify system partition error happened...
[  OK  ] Stopped check synoindex database is needed to upgrade.
         Stopping check synoindex database is needed to upgrade...
[  OK  ] Stopped Check Synology HotSpare Config for Disk Compat.
         Stopping Check Synology HotSpare Config for Disk Compat...
[  OK  ] Stopped Synology Building Tasks Restore for Storage Manager.
         Stopping Synology Building Tasks Restore for Storage Manager...
[  OK  ] Stopped Check disk compatiblity..
         Stopping Check disk compatiblity....
[  OK  ] Stopped Synology Dump Bootup Log.
         Stopping Synology Dump Bootup Log...
[  OK  ] Removed slice Synology Index slice (WAT).
[  OK  ] Stopped Build DB link for synolog.
         Stopping Build DB link for synolog...
[  OK  ] Stopped Sync disk and related smart scheduler..
         Stopping Sync disk and related smart scheduler....
[  OK  ] Stopped Synology Database AutoUpdate.
         Stopping Synology Database AutoUpdate...
[  OK  ] Stopped Update all disk information in disk log.
         Stopping Update all disk information in disk log...
[  OK  ] Stopped Single Memory Channel Action.
         Stopping Single Memory Channel Action...
[  OK  ] Stopped Set arp ignore.
         Stopping Set arp ignore...
[  OK  ] Stopped Prepare notification cache data.
         Stopping Prepare notification cache data...
[  OK  ] Stopped Load Kernel Modules in Kernel Project.
         Stopping Load Kernel Modules in Kernel Project...
[  OK  ] Removed slice system-serial\x2dgetty.slice.
[  OK  ] Stopped target PostgreSQL adapter target.
         Stopping PostgreSQL adapter...
         Stopping WD idle3 timer...
         Stopping WS-Transfer Server...
[  OK  ] Stopped Initial Disk Health Database.
         Stopping Initial Disk Health Database...
         Stopping eth0 DHCP Client...
[  OK  ] Stopped Synology Log bootup done.
         Stopping Synology Log bootup done...
[  OK  ] Stopped Load Fan Modules in Kernel Project.
         Stopping Load Fan Modules in Kernel Project...
[  OK  ] Stopped Customized post-install configuration.
         Stopping Customized post-install configuration...
         Stopping Control RC power...
[  OK  ] Stopped Support channel checker.
         Stopping Support channel checker...
[  OK  ] Stopped Synology Bundle SSD estimate lifespan calculation on bootup.
         Stopping Synology Bundle SSD estima...ifespan calculation on bootup...
[  OK  ] Stopped Execute packages' scripts during the boot-up.
         Stopping Execute packages' scripts during the boot-up...
[  OK  ] Stopped Check the disk is ssd/hdd.
         Stopping Check the disk is ssd/hdd...
[  OK  ] Stopped register ds region by ip.
         Stopping register ds region by ip...
[  OK  ] Stopped Synology Get EW Info Status.
         Stopping Synology Get EW Info Status...
         Stopping Write back disk latency to DB...
         Stopping Set IP Conflict Detect...
[  OK  ] Stopped Notify system is detected for unsupported drive.
         Stopping Notify system is detected for unsupported drive...
[  OK  ] Stopped clear builtin pkg resources after builtin pkg proccessed.
         Stopping clear builtin pkg resources after builtin pkg proccessed...
[  OK  ] Stopped hook on all packages ready.
         Stopping hook on all packages ready...
[  OK  ] Stopped Syno ssd cache bootup missing check.
         Stopping Syno ssd cache bootup missing check...
[  OK  ] Stopped Dump synoplatform info.
         Stopping Dump synoplatform info...
[  OK  ] Stopped Notify bundle drive update after bootup done.
         Stopping Notify bundle drive update after bootup done...
[  OK  ] Stopped auto repair packages.
         Stopping auto repair packages...
[  OK  ] Stopped target Packages start up done.
[  OK  ] Stopped target Low priority packages start up done.
         Stopping SynoFinder's service unit...
         Stopping OAuthService's service unit...
         Stopping FileStation's service unit...
[  OK  ] Stopped Update all packages' feasibility config.
         Stopping Update all packages' feasibility config...
[  OK  ] Stopped broadcast synorelayd boot state.
         Stopping broadcast synorelayd boot state...
[  OK  ] Stopped Syno Raid Feature Adjust Serialize Policy.
         Stopping Syno Raid Feature Adjust Serialize Policy...
         Stopping Synology shutdown task...
         Stopping VPN Client...
[  OK  ] Stopped Schedule smart db update.
         Stopping Schedule smart db update...
[  OK  ] Stopped Synology Network Event Daemon.
[  OK  ] Stopped Periodic Command Scheduler.
[  OK  ] Stopped Synology daemon for monitoring disk latency..
[  OK  ] Stopped WS-Discovery Server.
[  OK  ] Stopped Adjust md resync speed after bootup done.
[  OK  ] Stopped Control RC power.
[  OK  ] Stopped Set IP Conflict Detect.
[  OK  ] Stopped VPN Client.
[  OK  ] Stopped eth0 DHCP Client.
[  OK  ] Removed slice system-dhclient.slice.
[  OK  ] Stopped DHCP client init.
         Stopping DHCP client init...
[  OK  ] Removed slice system-syno\x2dmd\x2dresync\x2dspeed\x2dadjust.slice.
[  OK  ] Stopped Synology shutdown task.
         Stopping daemon for monitor HW/system status...
[  OK  ] Stopped Write back disk latency to DB.
[  OK  ] Stopped WD idle3 timer.
[  OK  ] Stopped WS-Transfer Server.
         Stopping PostgreSQL database server...
[  OK  ] Stopped pkg-SynoFinder-fileindexd.
         Stopping pkg-SynoFinder-synoelasticd...
[  OK  ] Stopped "start/stop synovfs daemon".
         Stopping "FileStation Thumbnail Daemon"...
[  OK  ] Stopped pkg-SynoFinder-synoelasticd.
[  OK  ] Stopped PostgreSQL database server.
[  OK  ] Stopped PostgreSQL adapter.
[  OK  ] Stopped target Synology bootup done.
[  OK  ] Stopped Synology Cache Advisor Boot Clean Up.
         Stopping Synology Cache Advisor Boot Clean Up...
[  OK  ] Stopped daemon for monitor HW/system status.
[  OK  ] Removed slice scemd.
[  OK  ] Stopped OAuthService's service unit.
[  OK  ] Removed slice OAuthService's slice.
[  OK  ] Stopped "FileStation Thumbnail Daemon".
[  OK  ] Stopped SynoFinder's service unit.
[  OK  ] Removed slice SynoFinder's slice.
[  OK  ] Stopped FileStation's service unit.
[  OK  ] Stopped install builtin packages for priority low.
         Stopping install builtin packages for priority low...
[  OK  ] Stopped target Synology Web console login available.
[  OK  ] Stopped Synology Web console login prepare.
         Stopping Synology Web console login prepare...
[  OK  ] Stopped Before upgrade ready.
         Stopping Before upgrade ready...
[  OK  ] Stopped target Multi-User System.
         Stopping Synology SCGI...
         Stopping synoconfd daemon...
[  OK  ] Stopped System Profile Tuning.
         Stopping System Profile Tuning...
         Stopping Synology log notification service...
         Stopping findhost daemon...
         Stopping Avahi daemon...
         Stopping Internet Service Daemon...
         Stopping deal with remote/ISO mount during when bootup and poweroff...
[  OK  ] Stopped Entry for WS-Transfer and WS-Discovery Server.
         Stopping Entry for WS-Transfer and WS-Discovery Server...
         Stopping OpenBSD Secure Shell server...
[  OK  ] Stopped target Packed In File Protocols.
         Stopping Network Time Service...
[  OK  ] Removed slice BTRFS Optimization.
[  OK  ] Removed slice BTRFS Space Reclaim.
         Stopping SSDP service...
         Stopping Synology daemon for monitoring space/disk/cache status...
         Stopping Synology SCGI SocketIO...
         Stopping Synology Cron Daemon...
         Stopping Daemon for Recycle Bin...
         Stopping Samba SMB Daemon...
         Stopping Daemon for Resource Monitor...
         Stopping daemon for monitor logs and generate alert...
         Stopping Log Rotate Daemon...
[  OK  ] Removed slice Synology Swap Works.
[  OK  ] Removed slice RAID Resync Process. ...ing Resync, Repair and Reshape..
         Stopping Accountdb cache database...
         Stopping Login Service...
         Stopping synobackup daemon...
         Stopping Synology log accounting service...
         Stopping Shared Folder Sync Daemon...
         Stopping Synology Schedule Daemon...
         Stopping Synology CGI Auth Daemon...
         Stopping daemon for handle hotplug event...
[  OK  ] Removed slice Synology Flashcache.
[  OK  ] Stopped target High priority packages start up done.
         Stopping SMBService's service unit...
         Stopping ScsiTarget's service unit...
         Stopping SecureSignIn's service unit...
         Stopping Python2's service unit...
[  OK  ] Removed slice FileStation's slice.
[  OK  ] Stopped Login Service.
[  OK  ] Stopped daemon for handle hotplug event.
[  OK  ] Stopped Synology daemon for monitoring space/disk/cache status.
[  OK  ] Stopped daemon for monitor logs and generate alert.
[  OK  ] Stopped Synology SCGI SocketIO.
[  OK  ] Stopped Synology CGI Auth Daemon.
[  OK  ] Stopped Synology log accounting service.
[  OK  ] Stopped Log Rotate Daemon.
[  OK  ] Stopped Synology Cron Daemon.
[  OK  ] Stopped Accountdb cache database.
[  OK  ] Stopped Daemon for Recycle Bin.
[  OK  ] Stopped Synology SCGI.
[  OK  ] Stopped findhost daemon.
[  OK  ] Stopped Synology Schedule Daemon.
[  OK  ] Stopped Daemon for Resource Monitor.
[  OK  ] Stopped Network Time Service.
[  OK  ] Stopped Internet Service Daemon.
[  OK  ] Stopped OpenBSD Secure Shell server.
[  OK  ] Stopped synobackup daemon.
[  OK  ] Removed slice synobackup daemon slice.
[ 4954.329018] Module [udf] is removed. 
[  OK  ] Removed slice OpenBSD Secure Shell server.
[  OK  ] Removed slice Internet Service Daemon.
         Stopping SNMP Daemon...
         Stopping Redis data structure server for webapi...
         Stopping Synology task manager...
[  OK  ] Removed slice Task Scheduler Group.
[  OK  ] Removed slice Synology DSM desktop service.
[  OK  ] Stopped Check Synology HotSpare Config.
         Stopping Check Synology HotSpare Config...
[  OK  ] Removed slice Synology DSM Storage Service.
[  OK  ] Stopped synoconfd daemon.
[ 4954.602186] Module [isofs] is removed. 
[  OK  ] Stopped Shared Folder Sync Daemon.
[  OK  ] Stopped deal with remote/ISO mount during when bootup and poweroff.
[  OK  ] Removed slice Shared Folder Sync.
[  OK  ] Stopped Avahi daemon.
         Stopping D-Bus System Message Bus...
[  OK  ] Stopped D-Bus System Message Bus.
[  OK  ] Stopped Redis data structure server for webapi.
         Stopping SCSI Target Monitor...
[  OK  ] Stopped Synology task manager.
[  OK  ] Stopped synodsmnotify.
         Stopping synodsmnotify...
[  OK  ] Stopped Samba SMB Daemon.
[  OK  ] Stopped Synology log notification service.
[  OK  ] Stopped SSDP service.
[  OK  ] Removed slice SSDP service.
         Stopping NetBIOS name server...
[  OK  ] Stopped target Synology shared folders.
[  OK  ] Stopped Keep var services homes existing.
         Stopping Keep var services homes existing...
[  OK  ] Stopped Load Bypass Traverse Checking.
         Stopping Load Bypass Traverse Checking...
[  OK  ] Stopped Migrate all volume and share to quota DB.
         Stopping Migrate all volume and share to quota DB...
[  OK  ] Stopped Synology DSM configupdate for share.
         Stopping Synology DSM configupdate for share...
[  OK  ] Stopped Check Synology shared folders.
         Stopping Check Synology shared folders...
[  OK  ] Stopped target User and Group Name Lookups.
[  OK  ] Stopped NetBIOS name server.
[  OK  ] Stopped Samba Environment Setup Unit.
         Stopping Samba Environment Setup Unit...
[  OK  ] Stopped Python2's service unit.
[  OK  ] Removed slice Python2's slice.
[  OK  ] Stopped SMBService's service unit.
[  OK  ] Removed slice SMBService's slice.
[  OK  ] Stopped SCSI Target Monitor.
         Stopping iSCSI Service...
[  OK  ] Stopped LIO Userspace-passthrough daemon(tcmu-runner).
[ 4958.528835] Module [iscsi_target_mod_4_0] is removed. 
[ 4958.546729] Module [target_core_mod_4_0] is removed. 
[  OK  ] Stopped iSCSI Service.
[  OK  ] Stopped SNMP Daemon.
[  OK  ] Removed slice SNMP.
[  OK  ] Stopped SecureSignIn's service unit.
[  OK  ] Removed slice SecureSignIn's slice.
[  OK  ] Stopped ScsiTarget's service unit.
[  OK  ] Stopped install builtin packages for priority high.
         Stopping install builtin packages for priority high...
[  OK  ] Stopped target Hook on root ready.
[  OK  ] Stopped always preprocess jobs before any package is started.
         Stopping always preprocess jobs before any package is started...
[  OK  ] Stopped preprocess jobs before any ...age is started when os upgraded.
         Stopping preprocess jobs before any...e is started when os upgraded...
[  OK  ] Removed slice Package Center Slice.
[  OK  ] Removed slice ScsiTarget's slice.
         Stopping Nginx...
[  OK  ] Stopped target Network is Online.
[  OK  ] Stopped Check if network is ready.
         Stopping Check if network is ready...
[  OK  ] Stopped Wait for Synology Network to be Configured.
         Stopping Wait for Synology Network to be Configured...
[  OK  ] Stopped Nginx.
[  OK  ] Stopped Prepare var service tmp.
         Stopping Prepare var service tmp...
[  OK  ] Stopped target Synology data volumes.
[  OK  ] Stopped Synology volume mount post hook.
         Stopping Synology volume mount post hook...
[  OK  ] Stopped Synology DSM configupdate for volume.
         Stopping Synology DSM configupdate for volume...
         Stopping Synology volume service...
[  OK  ] Stopped target Network.
         Stopping PPPoE...
[  OK  ] Stopped Set Multiple Geteway.
         Stopping Set Multiple Geteway...
         Stopping Synology Network Daemon...
[  OK  ] Stopped Synology Network Daemon.
         Stopping D-Bus Session Message Bus...
[  OK  ] Stopped D-Bus Session Message Bus.
[  OK  ] Stopped PPPoE.
[  OK  ] Stopped target Network (Pre).
[ 4968.917491] EXT4-fs (dm-1): re-mounted. Opts: (null)
[  OK  ] Stopped Synology volume service.
[  OK  ] Stopped Synology filesystem check service.
         Stopping Synology filesystem check service...
[  OK  ] Stopped target Synology storage pool.
         Stopping Synology virtual space service phase2...
[  OK  ] Stopped Synology virtual space service phase2.
         Stopping Synology virtual space service...
[  OK  ] Stopped Synology virtual space service.
         Stopping Synology space service...
[ 4971.155489] md2: detected capacity change from 989223124992 to 0
[ 4971.161553] md: md2: set sdb3 to auto_remap [0]
[ 4971.166137] md: md2: set sda3 to auto_remap [0]
[ 4971.170694] md: md2 stopped.
[ 4971.173600] md: unbind<sdb3>
[ 4971.184768] md: export_rdev(sdb3)
[ 4971.188182] md: unbind<sda3>
[ 4971.191592] md: export_rdev(sda3)
[  OK  ] Stopped Synology space service.
         Stopping Synology firmware DLMC...
         Stopping Synology filesytem check on bootup...
[  OK  ] Stopped Synology firmware DLMC.
[  OK  ] Stopped Synology filesytem check on bootup.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target Sockets.
         Stopping Disabling fan checking flag ......
[  OK  ] Stopped bootup upgrade sha package.
         Stopping bootup upgrade sha package...
[  OK  ] Stopped target System Initialization.
[  OK  ] Stopped Check /etc/synoinfo.conf.
         Stopping Check /etc/synoinfo.conf...
[  OK  ] Stopped Clean UPS config.
         Stopping Clean UPS config...
[  OK  ] Stopped Synology Log bootup start.
         Stopping Synology Log bootup start...
         Stopping System Logger Daemon...
[  OK  ] Stopped Apply kernel variable vm.min-free-kbytes.
         Stopping Apply kernel variable vm.min-free-kbytes...
[  OK  ] Stopped Set Eunit Sequence.
         Stopping Set Eunit Sequence...
[  OK  ] Stopped target Synology root filesystem (rw) ready.
[  OK  ] Stopped rebuild local user and group db.
         Stopping rebuild local user and group db...
[  OK  ] Stopped target Swap.
[  OK  ] Stopped target Synology synoscheduler functions.
[  OK  ] Stopped target Synology local user and group ready.
[  OK  ] Stopped Check Synology group info consistency.
         Stopping Check Synology group info consistency...
[  OK  ] Stopped Check Synology user info consistency.
         Stopping Check Synology user info consistency...
[  OK  ] Stopped target Create SDK locks directory.
[  OK  ] Stopped Apply kernel variable vm.kswapd_threads.
         Stopping Apply kernel variable vm.kswapd_threads...
[  OK  ] Stopped Apply Kernel Variables.
         Stopping Apply Kernel Variables...
[  OK  ] Stopped Apply default and user cust...ed sysctl.conf kernel variable..
         Stopping Apply default and user cus... sysctl.conf kernel variable....
[  OK  ] Stopped Load Kernel Modules.
         Stopping Load Kernel Modules...
         Stopping unbind USB device...
[  OK  ] Stopped Create Volatile Files and Directories.
         Stopping Create Volatile Files and Directories...
[  OK  ] Stopped target Local File Systems.
         Stopping Synology swap...
[  OK  ] Stopped target Synology mtd0 device done.
[  OK  ] Stopped target Slices.
[  OK  ] Removed slice User and Session Slice.
[  OK  ] Stopped target Paths.
[  OK  ] Stopped Disabling fan checking flag ....
[  OK  ] Stopped unbind USB device.
[  OK  ] Stopped System Logger Daemon.
[  OK  ] Removed slice Synology DSM internal service.
[  OK  ] Reached target Shutdown.
[ 4972.725454] md1: detected capacity change from 2147418112 to 0
[ 4972.731343] md: md1: set sda2 to auto_remap [0]
[ 4972.735924] md: md1: set sdb2 to auto_remap [0]
[ 4972.740481] md: md1 stopped.
[ 4972.743387] md: unbind<sda2>
[ 4972.749419] md: export_rdev(sda2)
[ 4972.752789] md: unbind<sdb2>
[ 4972.756213] md: export_rdev(sdb2)
[ 4974.029491] systemd-shutdown[1]: Sending SIGTERM to remaining processes...
[ 4974.047391] systemd-journald[2001]: Received SIGTERM from PID 1 (systemd-shutdow).
[ 4975.066688] systemd-shutdown[1]: Sending SIGKILL to remaining processes...
[ 4975.082041] systemd-shutdown[1]: Unmounting file systems.
[ 4975.088191] systemd-shutdown[1]: Unmounting /config.
[ 4975.093261] systemd-shutdown[1]: Unmounting /tmp.
[ 4976.075674] EXT4-fs (md0): re-mounted. Opts: (null)
[ 4976.085529] EXT4-fs (md0): re-mounted. Opts: (null)
[ 4976.090446] EXT4-fs (md0): re-mounted. Opts: (null)
[ 4976.095420] systemd-shutdown[1]: All filesystems unmounted.
[ 4976.101046] systemd-shutdown[1]: Deactivating swaps.
[ 4976.106241] systemd-shutdown[1]: All swaps deactivated.
[ 4976.111517] systemd-shutdown[1]: Detaching loop devices.
[ 4976.127001] systemd-shutdown[1]: All loop devices detached.
[ 4976.132633] systemd-shutdown[1]: Detaching DM devices.
[ 4976.138114] systemd-shutdown[1]: All DM devices detached.
systemd-shutdown[ 4976.991311] systemd-shutdown[1]: Powering off.
: run synobios_uninit OK
[ 4977.992339] sd 1:0:0:0: [sdb] Synchronizing SCSI cache
[ 4977.997728] sd 1:0:0:0: [sdb] Stopping disk
[ 4978.415370] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 4978.435362] sd 0:0:0:0: [sda] Stopping disk
[ 4978.856345] Shutting Down Marvell Ethernet Driver
[ 4978.861109] Power down.
Re: Un-bricking DS214se after a failed DSM downgrade
January 02, 2025 01:25PM
DS214se,

Nice! We don't use stock FW (our goal is to run Debian on these boxes), but this unbricking procedure will be very handy for people looking to rescue their DS214se.

I'll add this to the Wiki thread.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Un-bricking DS214se after a failed DSM downgrade
January 02, 2025 02:10PM
DS214se,

Can you SSH into the box DSM OS?

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Un-bricking DS214se after a failed DSM downgrade
January 02, 2025 02:31PM
hey, bodhi

I can, now it works like it's from factory :)
If there's any other logs you need, let me know

this
 cat /proc/mtd 
is the command I should use to save the entire firmware?



Edited 1 time(s). Last edit at 01/02/2025 02:33PM by DS214se.
Re: Un-bricking DS214se after a failed DSM downgrade
January 02, 2025 02:52PM
DS214se,

The FW on this box are stored in these MTDs in SPI flash.

[   23.345254] SPI Serial flash detected @ 0xf0000000, 8192KB (128sec x 64KB)
[   23.352211] Searching for RedBoot partition table in SYNOMTD-0 at offset 0x7f0000
[   23.399169] 6 RedBoot partitions found on MTD device SYNOMTD-0
[   23.405037] SYNOMTD flash bank 0: Using RedBoot partition definition
[   23.411439] Creating 6 MTD partitions on "SYNOMTD-0":
[   23.416535] 0x000000000000-0x0000000c0000 : "RedBoot"
[   23.423583] 0x0000000c0000-0x000000390000 : "zImage"
[   23.429736] 0x000000390000-0x0000007d0000 : "rd.gz"
[   23.435765] 0x0000007d0000-0x0000007e0000 : "vendor"
[   23.477568] 0x0000007e0000-0x0000007f0000 : "RedBoot Config"
[   23.484369] 0x0000007f0000-0x000000800000 : "FIS directory"

cat /proc/mtd will show these in a similar order. It just list the MTDs (0-5) in a nice way.

Dumping SPI mtds
dd if=/dev/mtd0 of=mtd0.ds214se conv=sync
dd if=/dev/mtd1 of=mtd1.ds214se conv=sync
dd if=/dev/mtd2 of=mtd2.ds214se conv=sync
dd if=/dev/mtd3 of=mtd3.ds214se conv=sync
dd if=/dev/mtd4 of=mtd4.ds214se conv=sync
dd if=/dev/mtd5 of=mtd5.ds214se conv=sync
After the dump, list them to see the size of each backup files. They should be the same as in the output of cat /proc/mtd.
ls -lh mtd*
and move these to somewhere for safe keeping.

-bodhi
===========================
Forum Wiki
bodhi's corner (buy bodhi a beer)
Re: Un-bricking DS214se after a failed DSM downgrade
January 05, 2025 06:00AM
thank you, bodhi! it worked, all images are saved, i'll transfer them to an USB when i'll find out the command :)
Author:

Your Email:


Subject:


Spam prevention:
Please, enter the code that you see below in the input field. This is for blocking bots that try to post this form automatically. If the code is hard to read, then just try to guess it right. If you enter the wrong code, a new image is created and you get another chance to enter it right.
Message: