Jump to content
XPEnology Community

Egnos

Member
  • Posts

    28
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Egnos's Achievements

Junior Member

Junior Member (2/7)

0

Reputation

  1. Instead there will be reason to go to 7.0 or is it always better to stay at 6.x.x?
  2. Hi everyone, I would like to update you on the latest progress: - the problem was on the USB port and key, change these all OK (none of these problems were present with loader 01.02b...) - I managed to install version 6.2.3-25426-3 - the system is now working correctly Question: the NAS offers me the update "DSM 6.2.4-25556", can I do it directly from the DSM interface or do I have to change loader or manually download the .pat? Thanks
  3. I can't understand why the MicroSD inserted in the card reader that previously worked perfectly with 1.02b now doesn't work with 1.03b.
  4. I am trying to use the card reader (Realtek Semiconductor Corp. RTS5182 Card Reader) placed on the front of the PC. With 1.02b works perfectly, with 1.03b it gives me error 13 during installation knoppix@Microknoppix:~$ lsusb Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 005: ID 0bda:0184 Realtek Semiconductor Corp. RTS5182 Card Reader Bus 001 Device 004: ID 046d:c05b Logitech, Inc. M-U0004 810-001317 [B110 Optical USB Mouse] Bus 001 Device 003: ID 0951:1666 Kingston Technology DataTraveler G4 Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 002: ID 03f0:0324 Hewlett-Packard SK-2885 keyboard Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub knoppix@Microknoppix:~$ grub.cfg if serial --port=0x3F8 --speed=115200;then set has_serial=true terminal_input --append serial terminal_output --append serial else clear fi terminal_input --append console terminal_output --append console if [ x"${grub_platform}" = xefi ]; then insmod efi_gop insmod efi_uga else insmod vbe fi set extra_initrd="extra.lzma" set info="info.txt" set vid=0x0bda set pid=0x0184 set sn=1230LWN018548 set mac1=0011322CA785 set rootdev=/dev/md0 set netif_num=1 set extra_args_3615='' #set extra_args_3615='earlycon=uart8250,io,0x3f8,115200n8 earlyprintk loglevel=15' set common_args_3615='syno_hdd_powerup_seq=0 HddHotplug=0 syno_hw_version=DS3615xs vender_format_version=2 console=ttyS0,115200n8 withefi elevator=elevator quiet syno_port_thaw=1' set sata_args='sata_uid=1 sata_pcislot=5 synoboot_satadom=1 DiskIdxMap=0C SataPortMap=1 SasIdxMap=0' set default='0' set timeout='4' set fallback='1' if [ -s $prefix/grubenv ]; then load_env if [ -n "$saved_entry" ]; then set default="${saved_entry}" fi fi VERSION="with Jun's Mod v1.03b" search --file -s /bzImage function savedefault { if [ -s $prefix/grubenv ]; then saved_entry="${chosen}" save_env saved_entry fi } function do_option { if [ $# -lt 2 ]; then eval "set value=\"\$$1\"" echo "current $1: $value"; return; fi set key=$1 shift set $key="$*" if [ -s $prefix/grubenv ]; then save_env $key fi } function vid { do_option vid $@; } function pid { do_option pid $@; } function sn { do_option sn $@; } function mac1 { do_option mac1 $@; } function mac2 { do_option mac2 $@; } function mac3 { do_option mac3 $@; } function mac4 { do_option mac4 $@; } function rootdev { do_option rootdev $@; } function append { do_option extra_args_3615 $@; } function vidpid { if [ $# -lt 2 ]; then echo "usage: vidpid 0xVVVV 0xPPPP"; return; fi set usb_args="vid=$1 pid=$2" if [ -s $prefix/grubenv ]; then save_env usb_args fi } function showtips { if [ -n "$has_serial" ]; then terminal_output --remove serial fi echo "Screen will stop updating shortly, please open http://find.synology.com to continue." echo echo if [ -n "$has_serial" ]; then terminal_output --append serial fi } function loadinitrd { if [ -s $img/$info ]; then if [ -n "$has_serial" ]; then terminal_output --remove serial fi cat $img/$info if [ -n "$has_serial" ]; then terminal_output --append serial fi fi # if [ -s $img/$extra_initrd ]; then # initrd $img/rd.gz $img/$extra_initrd # else # initrd $img/rd.gz # fi } function common_add_option { eval "set value=\"\$$1\"" if [ -z $value ]; then return 1; fi set common_args="$common_args $1=$value" } function common_add_option_ex { eval "set value=\"\$$1\"" if [ -z $value ]; then return 1; fi set common_args="$common_args $2=$value" } function loadlinux { set model=$1 set bootdev=$2 shift 2 if [ -n $vid -a -n $pid ]; then set usb_args="vid=$vid pid=$pid" fi eval "set common_args=\"\$common_args_$model\"" eval "set extra_args=\"\$extra_args_$model\"" eval "set bootdev_args=\"\$${bootdev}_args\"" common_add_option_ex rootdev root common_add_option sn if common_add_option mac1; then set netif_num=1; fi if common_add_option mac2; then set netif_num=2; fi if common_add_option mac3; then set netif_num=3; fi if common_add_option mac4; then set netif_num=4; fi common_add_option netif_num if [ -z $zImage ]; then set zImage=bzImage fi linux $img/$zImage $common_args $bootdev_args $extra_args $@ } menuentry "DS3615xs 6.2 Baremetal $VERSION" --class os { set img= savedefault loadlinux 3615 usb loadinitrd showtips } menuentry "DS3615xs 6.2 Baremetal $VERSION Reinstall" --class os { set img= loadlinux 3615 usb mfg loadinitrd showtips } #menuentry "DS3615xs 6.2 Baremetal AMD $VERSION" --class os { # set img= # set zImage=bzImage # savedefault # loadlinux 3615 usb # loadinitrd # showtips #} menuentry "DS3615xs 6.2 VMWare/ESXI $VERSION" --class os { set img= savedefault loadlinux 3615 sata loadinitrd showtips }
  5. @Kamele0N thank you very much!! But I have already explored the forum for a long time before posting the problem! I have checked VID / PID many times and they seem correct to me. Is there anything else that can generate this error? Thanks
  6. I have finally taken a step forward! I updated the BIOS and finally the USB key started in Legacy / CSM! I can find the NAS on the network. But unfortunately I have another problem🤬 At this point I am offered two options: Migration Re-installation I select migration, manual installation and on browse I select locally the downloaded .pat "DSM_DS3615xs_25426.pat". Arrived at 56% of the installation I get this error: ”Failed to install the file. The file is probably corrupted. (13) ". I have already tried to re-download .pat and change the update version. VID and PID seem correct to me, what should I do now? I found that the "Win32DiskImager-0.9.5" version runs in Win10 but version 1.0.0 not....
  7. I'll do some more tests tonight. I keep you updated. Which tool to write the USB stick do you recommend (Win32DiskManager does't work...)? Might the BIOS need to be updated? Thank you
  8. @flyridemany thanks for your answer. I ask you the courtesy to check my Hw configuration above in the discussion because, in addition to the ethernet port on the motherboard, I also have a PCI card with two Ethernet ports (I don't understand the model...). Which one do you think is better to use?
  9. Can someone help me? I am attaching the screenshots of the BIOS: @IG-88Looking at the screenshots, what should I still change in the BIOS?
  10. Sorry i didn't understand where i should find "NON UEFI" boot device. In the BIOS or when I write the USB stick?
  11. When I select LEGACY/CSM in the BIOS, the pc is unable to boot from the key, it does so only in UEFI mode. In Legacy mode it seems not to find an S.O. To write the key I use the SW provided "XPENOLOGY TOOL V1.4.2": - Win32DiskImager but it gives me an error while writing - RUFUS is able to write in "destination system" there is an immutable field "UEFI (not CSM)". - USB IMAGE TOOL manages to write but can't find settings on LEGACY, UEFI, CSM... Below are some photos of when selecting LEGACY in the BIOS: The "Intro" screen appears only if I select UEFI mode in the BIOS, but I still can't find the NAS on the network ... Any other suggestions? Thank you all.
  12. What really changes from 6.1.7 to 6.2.3? In any case, before filling the NAS I would like to try an update. I ran a linux live to see what kind of network card is installed. Command “lspci -k”: knoppix@Microknoppix:~$ sudo lspci -k 00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller (rev 09) Subsystem: Lenovo Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller Kernel driver in use: ivb_uncore Kernel modules: ie31200_edac 00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) Kernel driver in use: pcieport 00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09) Subsystem: Lenovo Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller Kernel driver in use: i915 Kernel modules: i915 00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04) Subsystem: Lenovo 7 Series/C210 Series Chipset Family USB xHCI Host Controller Kernel driver in use: xhci_hcd 00:16.0 Communication controller: Intel Corporation 7 Series/C216 Chipset Family MEI Controller #1 (rev 04) Subsystem: Lenovo 7 Series/C216 Chipset Family MEI Controller Kernel driver in use: mei_me Kernel modules: mei_me 00:16.3 Serial controller: Intel Corporation 7 Series/C210 Series Chipset Family KT Controller (rev 04) Subsystem: Lenovo 7 Series/C210 Series Chipset Family KT Controller Kernel driver in use: serial Kernel modules: 8250_pci 00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 04) Subsystem: Lenovo 82579LM Gigabit Network Connection (Lewisville) Kernel driver in use: e1000e Kernel modules: e1000e 00:1a.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #2 (rev 04) Subsystem: Lenovo 7 Series/C216 Chipset Family USB Enhanced Host Controller Kernel driver in use: ehci-pci 00:1b.0 Audio device: Intel Corporation 7 Series/C216 Chipset Family High Definition Audio Controller (rev 04) Subsystem: Lenovo 7 Series/C216 Chipset Family High Definition Audio Controller Kernel driver in use: snd_hda_intel Kernel modules: snd_hda_intel 00:1d.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #1 (rev 04) Subsystem: Lenovo 7 Series/C216 Chipset Family USB Enhanced Host Controller Kernel driver in use: ehci-pci 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a4) 00:1f.0 ISA bridge: Intel Corporation Q77 Express Chipset LPC Controller (rev 04) Subsystem: Lenovo Q77 Express Chipset LPC Controller Kernel driver in use: lpc_ich Kernel modules: lpc_ich 00:1f.2 SATA controller: Intel Corporation 7 Series/C210 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04) Subsystem: Lenovo 7 Series/C210 Series Chipset Family 6-port SATA Controller [AHCI mode] Kernel driver in use: ahci 00:1f.3 SMBus: Intel Corporation 7 Series/C216 Chipset Family SMBus Controller (rev 04) Subsystem: Lenovo 7 Series/C216 Chipset Family SMBus Controller Kernel driver in use: i801_smbus Kernel modules: i2c_i801 01:00.0 Ethernet controller: Intel Corporation 82571EB Gigabit Ethernet Controller (rev 06) Subsystem: Intel Corporation PRO/1000 PT Dual Port Server Adapter Kernel driver in use: e1000e Kernel modules: e1000e 01:00.1 Ethernet controller: Intel Corporation 82571EB Gigabit Ethernet Controller (rev 06) Subsystem: Intel Corporation PRO/1000 PT Dual Port Server Adapter Kernel driver in use: e1000e Kernel modules: e1000e Command “sudo lspci -k | grep 'Kernel driver'”: knoppix@Microknoppix:~$ sudo lspci -k | grep 'Kernel driver' Kernel driver in use: ivb_uncore Kernel driver in use: pcieport Kernel driver in use: i915 Kernel driver in use: xhci_hcd Kernel driver in use: mei_me Kernel driver in use: serial Kernel driver in use: e1000e Kernel driver in use: ehci-pci Kernel driver in use: snd_hda_intel Kernel driver in use: ehci-pci Kernel driver in use: lpc_ich Kernel driver in use: ahci Kernel driver in use: i801_smbus Kernel driver in use: e1000e Kernel driver in use: e1000e Is it supported by loader 1.03b? Thanks.
×
×
  • Create New...