Jump to content
XPEnology Community

QNAP auf eigener Hardware


fa2k

Recommended Posts

17 minutes ago, snoopy78 said:

@szararsiz  versuche eine model.conf zu finden, die deiner richtigen HW am nähsten kommt, und nimm die CPU & RAM Daten von da in dein model.conf....so hatte ich da bei meiner gemacht (872X) und jetzt wird da korrekt der RAM und die CPU angezeigt

Das Bearbeiten der model.conf-Datei ist mir zu kompliziert, ich habe es noch nicht herausgefunden. Ich habe den ganzen Thread mehrmals gelesen, konnte aber noch nicht anfangen, die Datei zu bearbeiten. Heute werde ich ein letztes Mal lesen und mit der Bearbeitung der Datei model.conf beginnen.

Vielen Dank an Sie und andere für Ihre Hilfe. Ich könnte es nicht alleine schaffen.

Link to comment
Share on other sites

1 hour ago, szararsiz said:

Hallo, ich habe als Ergebnis meiner Experimente seit gestern Abend mehrere Male erfolgreich installiert.
Zuerst habe ich das 472-Modell installiert und dann die 1283ux-Modelle.
Nachdem ich Qnap mit USB geöffnet habe, habe ich die ersten Installationen mit dem Assistenten durchgeführt und ein Volume mit 1 SSD-Festplatte erstellt. Ich konnte die Virtualisierung und einige Anwendungen erfolgreich installieren.

Aber bei beiden Versuchen sah die CPU nur 1 Kern (Intel Xeon E-2224 4 Kern)

Gibt es eine Möglichkeit, dies zu beheben?

 

 

Main.jpg

Resource.jpg

CPU.jpg

 

Ist eine BIOS Einstellung bei HPE Proliant Servern bei den RBSU Processor Options -> Processor x2APIC Support -> Disabled -> F10 Save -> Reboot :) 👍

 

Danach hast du 4 Kerne und 4 Threads .

 

1111.thumb.png.7b84ae410d80d8ef0ae1d1a1d4fe90a0.png

Edited by xenix96
  • Thanks 1
Link to comment
Share on other sites

...ok..hier ist noch ein weg um das rootfs zu modifizieren.....Treiber und so lassen sich ja mittels eines Script hinzufügen...

 

"

Ich möchte die Datei "create_udev_rule.sh" ändern, die sich in "/etc/init.d" im Qnap-Dateisystem befindet.

Diese Datei erstellt einen Eintrag für UPS YEC, was zu Problemen (Nas-Shutdown) führt, wenn einige USB-Geräte angeschlossen und dann falsch klassifiziert werden.

Das Löschen der YEC-Einträge in „create_udev_rule.sh“ löst dieses Problem daher zumindest nach dem Hochfahren des Geräts.

Mit dem vorherigen Image konnte ich die Datei einfach bei der Erstellung modifizieren, aber mit der aktuellen konnte ich es so nicht lösen ...

 

was ich bisher herausgefunden habe ist, dass meine initrd.boot in meiner scd2 liegt (du solltest deine mit fdisk -l finden) ....damit ein "sudo mount /dev/sdc2 /mnt/sdc2 " kann man dann darauf zugreifen

 

 

cd /tmp/
mkdir initrd_content

CD /initrd_content/
xz -dc /mnt/sdc2/boot/initrd.boot | cpio -i

 

=> dann kann ich in /tmp/initrd_content die Dateien sehen und ändern ...und z.b. die create_udev_rule.sh so anpassen, dass die YEC Einträge gelöscht sind.

 

mit

 

" find . | cpio -o -H newc | gzip > /home/tc/initrd.boot "

 

packe ich es dann wieder (in /home/tc Ordner) & mit

"

sudo cp /home/tc/initrd.boot /mnt/sdc2/boot/initrd.boot

"
überschreibe dann die originale initrd.boot im /mnt/sdc2/boot

 

mit

sudo umount /mnt/sdc2

wird sdc2 wieder ausgeworfen...

 

 

nach dem Neustart kann dann mittels

 

cat /lib/udev/rules.d/50-udev.rules | grep YEC
cat /etc/init.d/udev_run.sh |grep YEC

 

getestet werden und das Ergebnis sieht dann so aus...

 

"

[~] # cat /lib/udev/rules.d/50-udev.rules | grep YEC
[~] # cat /etc/init.d/udev_run.sh |grep YEC
            UPS_YEC)
    UPS_YEC)
[~] #

"

 

In den 50_udev.rules sind keine YEC Einträge mehr vorhanden....^^ somit wird nach dem boot das Einstecken des USB nicht mehr zum shutdown führen...muss jetzt nur noch einen Weg finden die udev_run.sh permanent anzupassen....hat hier jemand eine IDEE?

 


"

...ok..here is another way to modify the rootfs.....drivers and such can be added using a script...


"

I want to modify the "create_udev_rule.sh" file located in "/etc/init.d" in the Qnap file system.

This file creates an entry for UPS YEC which causes problems (Nas shutdown) when some USB devices are plugged in and then misclassified.

Therefore, deleting the YEC entries in create_udev_rule.sh solves this problem, at least after the device boots up.

With the previous image I could just modify the file as it was created, but with the current one I couldn't solve it that way...


what i found out so far is that my initrd.boot is in my scd2 (you should find yours with fdisk -l)....with a "sudo mount /dev/sdc2 /mnt/sdc2" you can then access it

cd /tmp/
mkdir initrd_content

CD /initrd_content/
xz -dc /mnt/sdc2/boot/initrd.boot | cpio -i


=> then I can see and change the files in /tmp/initrd_content ... and e.g. Adjust the create_udev_rule.sh so that the YEC entries are deleted.


With


" find . | cpio -o -H newc | gzip > /home/tc/initrd.boot "


I then pack it again (in /home/tc folder) & with

"

sudo cp /home/tc/initrd.boot /mnt/sdc2/boot/initrd.boot

"
then overwrite the original initrd.boot in /mnt/sdc2/boot


With

sudo umount /mnt/sdc2

sdc2 is ejected again...

after the restart you can use


cat /lib/udev/rules.d/50-udev.rules | grep YEC
cat /etc/init.d/udev_run.sh |grep YEC


be tested and the result will look like this...


"

[~] # cat /lib/udev/rules.d/50-udev.rules | grep YEC
[~] # cat /etc/init.d/udev_run.sh |grep YEC
            UPS_YEC)
    UPS_YEC)
[~]#

"


There are no more YEC entries in the 50_udev.rules....^^ so plugging in the USB after the boot will no longer lead to a shutdown...now I just have to find a way to permanently adjust the udev_run.sh... .does anyone have an IDEA?

"

 

 

Edited by snoopy78
Link to comment
Share on other sites

hatte heute mein System (siehe vorherige Post) auf das neue Image umgestellt, direkt danach kam das neue Update von QNAP 5.0.0.1932 raus......update ließ sich ohne Probleme einspielen..^^

 

Einzig meine Modifikationen in der Boot-Disk sind weg, muss mir jetzt halt was anderes einfallen lassen..^^

 

es soll ja die Möglichkeit geben, die autorun.sh anzupassen...naja...schauen wir mal, ob ich das so regeln kann..^^

 

 

Link to comment
Share on other sites

sooo...habe das jetzt folgendermaßen geregelt....nicht schön, aber geht erst einmal...

 

 

https://wiki.qnap.com/wiki/Running_Your_Own_Application_at_Startup

 

 

habe die autorun.sh entsprechend angepasst

 

autorun.sh

 

#!/bin/sh
echo "waiting & running new autostart.sh"
/mnt/HDA_ROOT/qboot/S10yec.sh
echo "All done!"

 

 

S10yec.sh

 

#!/bin/sh

#### modify /lib/udev/rules.d/50-udev.rules

sed -i '/UPS_YEC/d' /lib/udev/rules.d/50-udev.rules

#### modify /etc/init.d/udev_run.sh
sed -i '/UPS_YEC)/d' /etc/init.d/udev_run.sh

sed -i 's/not_ups_vid_list=(1d6b 05e3 046d 1005 0b05 1c05 1c05 03f0)/not_ups_vid_list=(1d6b 05e3 046d 1005 0b05 1c05 1c05 03f0 0403)/g' /etc/init.d/udev_run.sh
sed -i 's/not_ups_pid_list=(xxxx 0608 0826 b155 17ba 3074 2074 e207)/not_ups_pid_list=(xxxx 0608 0826 b155 17ba 3074 2074 e207 6001)/g' /etc/init.d/udev_run.sh

 

 

NACH dem vollständigen Boot sind zumindest die YEC-USB Settings weg, so dass die Reader korrekt funktionieren.

 

Wenn ich die Reader während des Bootvorganges dran lasse, dann erkennt das System die YEC-USV mit Abnormal und fährt wieder sauber runter....

kennt sich hier einer der Qnap-/Linuxcracks ggfls. besser aus und kann das eleganter lösen?

Edited by snoopy78
Link to comment
Share on other sites

Hi und schön zu lesen, dass es hier wieder aktiv rund geht :)

Habe nur kurz eine "Verständnisfrage".... ihr redet dauernd von einem "neuen" Boot-Image..

Wenn ich aber das letzte hier lade, ist es das gleiche (nach englisch übersetzte), welches ich in meinem Post auf Mega verlinkt habe

 

oder wurde nur das falsche "neue" Image hochgeladen?

 

Danke euch und viele Grüße1

Link to comment
Share on other sites

1 minute ago, calimero said:

Hi und schön zu lesen, dass es hier wieder aktiv rund geht :)

Habe nur kurz eine "Verständnisfrage".... ihr redet dauernd von einem "neuen" Boot-Image..

Wenn ich aber das letzte hier lade, ist es das gleiche (nach englisch übersetzte), welches ich in meinem Post auf Mega verlinkt habe

 

oder wurde nur das falsche "neue" Image hochgeladen?

 

Danke euch und viele Grüße1

 

 

nee...schau mal hier..

 

 

Link to comment
Share on other sites

Hi und schön zu lesen, dass es hier wieder aktiv rund geht [emoji4]
Habe nur kurz eine "Verständnisfrage".... ihr redet dauernd von einem "neuen" Boot-Image..
Wenn ich aber das letzte hier lade, ist es das gleiche (nach englisch übersetzte), welches ich in meinem Post auf Mega verlinkt habe
 
oder wurde nur das falsche "neue" Image hochgeladen?
 
Danke euch und viele Grüße1
https://www.androidfilehost.com/?w=files&flid=332399

Gesendet von meinem SM-F926B mit Tapatalk

Link to comment
Share on other sites

59 minutes ago, calimero said:

Die Datei meinte ich ja.. ich hab die runtegeladen und mit meiner verlinkten von Mega verglichen =100% identisch! :-)

 

Deswegen meine Frage nach was soll daran "neuer" sein.

 

Vielen Dank

k.a. was du verglichen hast....die neue funktioniert nur! bei UEFI & ist upgradefähig...jedoch ist das Script für die model.conf nicht dabei...musst also deine bestehende nehmen....

Link to comment
Share on other sites

Hallo!

 

Da DSM 7.0 mit dem RedPill Loader bei mir läuft dachte ich, versuch doch mal Qnap zu installieren.

Dank der vielen guten Tips hier funktionierte alles sofort ohne Probleme.

Beim Abspielen einer Videodatei will er allerdings ein App von mir das ich wohl nur per Registration? oder wie auch immer installieren muß.!?

 

Wie immer für Hilfe/Tipps Big THX im voraus. 😀

 

cu-ya

Edited by synofreak
Link to comment
Share on other sites

Hallo!
 
Da DSM 7.0 mit dem RedPill Loader bei mir läuft dachte ich, versuch doch mal Qnap zu installieren.
Dank der vielen guten Tips hier funktionierte alles sofort ohne Probleme.
Beim Abspielen einer Videodatei will er allerdings ein App von mir das ich wohl nur per Registration? oder wie auch immer installieren muß.!?
 
Wie immer für Hilfe/Tipps Big THX im voraus. [emoji3]
 
cu-ya
Servus,
Multimedia console und Video station app installieren. Alles ohne registration und kostenlos :)


Gesendet von meinem SM-F926B mit Tapatalk

Link to comment
Share on other sites

Hallo zusammen,

 

ich selbst bin seit vielen Jahren QNAP-Nutzer und bin mit erstaunen über diesen Thread gestolpert.

Da ich hier schon seit Jahren eine nicht mehr genutzte ACER HS340 rumstehen habe (das war mal ein 4Bay WHS-NAS) möchte ich jetzt natürlich versuchen, diesen mit QTS zu befüttern (OMV und ähnliches gefallen mir nicht wirklich).

Zwar bin ich aktuell schon in der Lage den OnBoard-SATA-Controller anzusprechen (ich habe eine Festplatte über die 4 Bays gewechselt und konnte jeweils installieren, die 4 Ports sind also korrekt zugewiesen), allerdings bekomme ich die OnBoard NIC nicht zum laufen (Marvell Yukon "Marke uralt"). Die NIC wird zwar seitens der Einrichtungsumgebung erkannt, aber nicht seitens QNAP. Da ich hier aber auch eine QM2-2P-10G-1T rumliegen habe (PCIe x4, 2x NVMe, 1x 10GBe) habe ich diese in die NAS gesteckt. Zwar bekomme ich die darauf befindliche 10GBe Netzwerkkarte zum laufen, die NVMe-Steckplätze auf der Karte werden seitens der QNAP-Einrichtung jedoch nicht erkannt. Da ich alle entsprechenden Ports die seitens lspci gemeldet werden mittlerweile durchprobiert habe, stehe ich jetzt ein klein wenig auf dem Schlauch.

Welche Infos braucht ihr um hier evtl. ein wenig unterstützen zu können? Es wäre echt cool, das alte Blech wieder in Betrieb zu nehmen ;)

 

Hier mal die Liste aus lspci:

tc@box:~$ lspci -vv
00:00.0 Host bridge: Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx DMI Bridge
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
        Latency: 0
        Capabilities: <access denied>

00:02.0 VGA compatible controller: Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller (prog-if 00 [VGA controller])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at fe980000 (32-bit, non-prefetchable) [size=512K]
        Region 1: I/O ports at dc00 [size=8]
        Region 2: Memory at d0000000 (32-bit, prefetchable) [size=256M]
        Region 3: Memory at fe800000 (32-bit, non-prefetchable) [size=1M]
        [virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
        Capabilities: <access denied>

00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 02) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 16
        Region 4: I/O ports at d880 [size=32]
        Capabilities: <access denied>
        Kernel driver in use: uhci_hcd

00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 02) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 21
        Region 4: I/O ports at d800 [size=32]
        Capabilities: <access denied>
        Kernel driver in use: uhci_hcd

00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 02) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin D routed to IRQ 19
        Region 4: I/O ports at d480 [size=32]
        Capabilities: <access denied>
        Kernel driver in use: uhci_hcd

00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 02) (prog-if 20 [EHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin C routed to IRQ 18
        Region 0: Memory at fe97bc00 (32-bit, non-prefetchable) [size=1K]
        Capabilities: <access denied>
        Kernel driver in use: ehci-pci

00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 02) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin A routed to IRQ 24
        Bus: primary=00, secondary=01, subordinate=05, sec-latency=0
        I/O behind bridge: 00001000-00001fff [size=4K]
        Memory behind bridge: fea00000-feafffff [size=1M]
        Prefetchable memory behind bridge: 00000000fdf00000-00000000fdffffff [size=1M]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 02) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin B routed to IRQ 25
        Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
        I/O behind bridge: 0000e000-0000efff [size=4K]
        Memory behind bridge: feb00000-febfffff [size=1M]
        Prefetchable memory behind bridge: 00000000c0000000-00000000c01fffff [size=2M]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 02) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 23
        Region 4: I/O ports at d400 [size=32]
        Capabilities: <access denied>
        Kernel driver in use: uhci_hcd

00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 02) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 19
        Region 4: I/O ports at d080 [size=32]
        Capabilities: <access denied>
        Kernel driver in use: uhci_hcd

00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 02) (prog-if 00 [UHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin C routed to IRQ 18
        Region 4: I/O ports at d000 [size=32]
        Capabilities: <access denied>
        Kernel driver in use: uhci_hcd

00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 02) (prog-if 20 [EHCI])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 23
        Region 0: Memory at fe97b800 (32-bit, non-prefetchable) [size=1K]
        Capabilities: <access denied>
        Kernel driver in use: ehci-pci

00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 92) (prog-if 01 [Subtractive decode])
        Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Bus: primary=00, secondary=07, subordinate=07, sec-latency=32
        I/O behind bridge: None
        Memory behind bridge: None
        Prefetchable memory behind bridge: None
        Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>

00:1f.0 ISA bridge: Intel Corporation 82801IR (ICH9R) LPC Interface Controller (rev 02)
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Capabilities: <access denied>
        Kernel driver in use: lpc_ich

00:1f.2 SATA controller: Intel Corporation 82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode] (rev 02) (prog-if 01 [AHCI 1.0])
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 29
        Region 0: I/O ports at cc00 [size=8]
        Region 1: I/O ports at c880 [size=4]
        Region 2: I/O ports at c800 [size=8]
        Region 3: I/O ports at c480 [size=4]
        Region 4: I/O ports at c400 [size=32]
        Region 5: Memory at fe97b000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: <access denied>
        Kernel driver in use: ahci

00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 02)
        Subsystem: Acer Incorporated [ALI] Device 0426
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin C routed to IRQ 18
        Region 0: Memory at fe97ac00 (64-bit, non-prefetchable) [size=256]
        Region 4: I/O ports at 0400 [size=32]
        Kernel driver in use: i801_smbus

01:00.0 PCI bridge: Integrated Device Technology, Inc. [IDT] Device 8063 (rev 01) (prog-if 00 [Normal decode])
        Physical Slot: 0
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Bus: primary=01, secondary=02, subordinate=05, sec-latency=0
        I/O behind bridge: None
        Memory behind bridge: fea00000-feafffff [size=1M]
        Prefetchable memory behind bridge: 00000000fdf00000-00000000fdffffff [size=1M]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity+ SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

02:02.0 PCI bridge: Integrated Device Technology, Inc. [IDT] Device 8063 (rev 01) (prog-if 00 [Normal decode])
        Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin ? routed to IRQ 26
        Bus: primary=02, secondary=03, subordinate=03, sec-latency=0
        I/O behind bridge: None
        Memory behind bridge: None
        Prefetchable memory behind bridge: None
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity+ SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

02:04.0 PCI bridge: Integrated Device Technology, Inc. [IDT] Device 8063 (rev 01) (prog-if 00 [Normal decode])
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin ? routed to IRQ 27
        Bus: primary=02, secondary=04, subordinate=04, sec-latency=0
        I/O behind bridge: None
        Memory behind bridge: None
        Prefetchable memory behind bridge: 00000000fdf00000-00000000fdffffff [size=1M]
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity+ SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

02:06.0 PCI bridge: Integrated Device Technology, Inc. [IDT] Device 8063 (rev 01) (prog-if 00 [Normal decode])
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin ? routed to IRQ 28
        Bus: primary=02, secondary=05, subordinate=05, sec-latency=0
        I/O behind bridge: None
        Memory behind bridge: fea00000-feafffff [size=1M]
        Prefetchable memory behind bridge: None
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity+ SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: <access denied>
        Kernel driver in use: pcieport

04:00.0 Ethernet controller: Tehuti Networks Ltd. TN9710P 10GBase-T/NBASE-T Ethernet Adapter
        Subsystem: Tehuti Networks Ltd. Ethernet Adapter
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at fdff0000 (64-bit, prefetchable) [size=64K]
        Capabilities: <access denied>

05:00.0 Non-Volatile memory controller: Silicon Motion, Inc. Device 2263 (rev 03) (prog-if 02 [NVM Express])
        Subsystem: Silicon Motion, Inc. Device 2263
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin A routed to IRQ 18
        Region 0: Memory at feafc000 (64-bit, non-prefetchable) [size=16K]
        Capabilities: <access denied>
        Kernel driver in use: nvme

06:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8071 PCI-E Gigabit Ethernet Controller (rev 16)
        Subsystem: Acer Incorporated [ALI] Device 0183
        Physical Slot: 0-1
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin A routed to IRQ 32
        Region 0: Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
        Region 2: I/O ports at e800 [size=256]
        Expansion ROM at febc0000 [disabled] [size=128K]
        Capabilities: <access denied>
        Kernel driver in use: sky2

 

Um erst einmal zu versuchen, irgendwie an die NVMe zu kommen, habe ich einfach mal die ersten 3 Disks mit den entsprechenden Ports in der model.conf angegeben:

[System Disk 1]
DEV_BUS=B02:D02:F0
DEV_PORT = 0
ERR_LED = EC:6
LOCATE_LED = EC:6
[System Disk 2]
DEV_BUS=B02:D04:F0
DEV_PORT = 0
ERR_LED = EC:5
LOCATE_LED = EC:5
[System Disk 3]
DEV_BUS=B02:D06:F0
DEV_PORT = 0
ERR_LED = EC:4
LOCATE_LED = EC:4

 

Leider ohne Erfolg, die QNAP-Einrichtung meldet nach wie vor, dass keine Festplatte installiert wäre.

Interessant dabei ist noch, während der Bootloader läuft kann ich sehen, dass dort die NVMe-Laufwerke gefunden werden (ich kann sehen, dass in diesem klleinen schnell-laufenden Fenster die Bezeichnungen der NVMe kurz auftauchen).

 

Herzlichen Dank,

 

Lauri

Link to comment
Share on other sites

On 2/5/2022 at 9:38 PM, snoopy78 said:

hier eine kleine (grobe) Anleitungf zum neuen Image...

 

- gewünschte Firmware von QNAP herunterladen
- USB Stick (#1) mit ISO vorbereiten und booten
==> in Tinycore wechseln
===> admin/admin
====> ipconfig
=> SSH in das System
==> tc/admin
=> winscp in das System
==> tc/admin
===> via WinSCP die heruntergeladene Firmwaredatei auf das System kopieren
====> wenn du eine model.conf hast, ggfls. diese auch gleich in das Verzeichnis kopieren
=> in SSH folgende Befehle eingeben
==> sudo get_qnap_firmware /home/tc/TS-X72_20211223-4.5.4.1892.zip
- leeren USB Stick (#2) anstecken (!! der wird später alles zum Booten enthalten und muss nicht mehr entfernt werden)
==> ls -al /sys/block /sd*
===> die Ausgabe dokumentieren und umrechnen
z.B.
/devices/pci0000:00/0000:00:14.0/usb4/4-4/4-4:1.0/host6/target6:0:0/6:0:0:0/block/sda/

=> diese Wert in model.conf eintragen (wenn das nicht stimmt, bootet er nur bis ca. 18Sek)
=> [Boot Disk 1]
DEV_BUS = B00:D20:F0
DEV_PORT = 4

==> sudo cp model.conf /home/tc/patch/etc/model.conf
==> sudo create_qnap_boot

1. USB Stick rausziehen und dann sollte es laufen


 

Hi meine Freunde,

 

hier ist der Link zum "Year of the OX" Loader auf Englisch.

https://mega.nz/file/MfoTkKKR#zjK_UyVzvZ5tL5Mhr34IzyqR5mogjaiSQ8l2uAI7J9w

 

Originalbeitrag

http://www.nasyun.com/thread-76364-1-1.html

 

  • Like 2
Link to comment
Share on other sites

@s2k7 du scheinst das chinesische ja deutlich besser zu verstehen als ich....kannst du ggfls. mal den Modding/Patch-Part genauer erläutern....

 

soweit ich es verstanden habe, kann man eigene Dateien/Treiber via /home/tc/patch/etc/init.d/file und dann "./patch_install" integrieren.....getestet habe ich das aber bisher noch nicht....

Link to comment
Share on other sites

1 hour ago, snoopy78 said:

@ S2k7 you seem to understand the Chinese much better than I do.... you can if necessary. explain the modding/patch part in more detail....

 

As far as I understand, you can integrate your own files/drivers via /home/tc/patch/etc/init.d/file and then "./patch_install".....but I haven't tested it yet.. ..

Wählen Sie das dritte Menü

"Re-edit model.conf by TinyCore 10.1 System" 

 

# patch_extract

# sudo vi patch/etc/model.conf

...

# patch_install

# sudo reboot

  • Like 1
Link to comment
Share on other sites

8 hours ago, s2k7 said:

Hi meine Freunde,

 

hier ist der Link zum "Year of the OX" Loader auf Englisch.

https://mega.nz/file/MfoTkKKR#zjK_UyVzvZ5tL5Mhr34IzyqR5mogjaiSQ8l2uAI7J9w

 

Originalbeitrag

http://www.nasyun.com/thread-76364-1-1.html

 

Aktualisiert, um VIRTIO_NET in qts 5.0 zu verwenden

 

https://mega.nz/file/NWBinb6K#fcZliphdJo_USVws4bo3AsNXnGsz35_6xIlDa7s4qWw

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...