Jump to content
XPEnology Community

FOXBI

Developer
  • Posts

    159
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by FOXBI

  1. Today update ^^ You can download the new ch cpuinfo with new DSM support.
  2. Thank you!! Your action was helpful in situations where I haven't DSM updated yet.
  3. do use 7zip 1. extract DSMxxx.pat check of hda1.tgz file 2. extract hda1.tgz check of hda1 follder 3. extract hda1 check of hda1~ folder eg.) c:\DSM_DS3615xs_24922\hda1\hda1~\usr\syno\synoman\webman\modules\AdminCenter 4. you can find original admin_center.js & admin_center.hs.gz 5 do use sftp, upload and overwite two files. After checking back your DSM information and then you do run again.
  4. when i made ch_cpuinfo, i think ed about only DSM version upgrade. but, may be don't thinked about hardware change. if you can find path file location "/usr/syno/synoman/webman/modules/AdminCenter/admin_center.js" ""/usr/syno/synoman/webman/modules/AdminCenter/admin_center.js.gz" after extract original file in DSMxxx.pat, copy to overwrite location. or edit by vi tool source. and then you do run again.
  5. two case is dmidecode is wrong. i make ch_cpuinfo refer to 1st dmidecode after 2nd /proc/cpuinfo. i'll modify source change to procedure ch_cpuinfo next version. Thank you!!
  6. Can you show me command result “dmidecode -t process”. I think... may be script running first “dmidecode” after refer “/proc/cpuinfo”.
  7. - Outcome of the update: SUCCESSFUL - DSM version prior update: DSM 6.2.2-24922 Update 2 - Loader version and model: JUN'S LOADER v1.03b - DS3615xs - Using custom extra.lzma: NO - Installation type: VM - HP ML310 v2 (1220v3/32GB) VMWare ESXi 6.0 Update3 + RDM/USB Disable/NIC E1000e) - Additional comments: REBOOT REQUIRED - Outcome of the update: SUCCESSFUL - DSM version prior update: DSM 6.2.2-24922 Update 2 - Loader version and model: JUN'S LOADER v1.04b - DS918+ - Using custom extra.lzma: NO - Installation type: VM - HP ML310 v2 (1220v3/32GB) VMWare ESXi 6.0 Update3 /USB Enable/NIC vmxnet3) - Additional comments: REBOOT REQUIRED
  8. My guess is that the maximum thread represented in DSM is 8. I have not had a system with more than 8 threads, so I have not checked, can you show me the full results of your system cat /proc/cpuinfo ? I have prepared 8 core and above environment and tested it and it seems to be well expressed. If the "/proc/cpuinfo" value is not displayed incorrectly, the assigned value appears normally. If you above 8 cores and check that the result of ch_cpuinfo matches the value of "/proc/cpuinfo" with the actual CPU or the assigned CPU.
  9. 3) Restore the function to backup and restore files easily. But, In the case of 2) Redo, if it is difficult to restore original by updating in lower version (eg. F.cpu .... -> h.cpu ....), It seems to have made. I do not know if it was the right answer to your question.
  10. Just correct cpu information view It does not affect performance or anything.
  11. My guess is that the maximum thread represented in DSM is 8. I have not had a system with more than 8 threads, so I have not checked, can you show me the full results of your system cat /proc/cpuinfo ?
  12. 이미 오래전에 하신질문이라 이미 해결 하셨을 수도있지만. 결론부터 말씀드리면 v2인 ivybridge는 안됩니다. 저도 E3-1230 v2 환경에서 갖은 방법을 다 동원해봐도 안되었는데 E3-1220 v3으로 바꾸고 그냥 바로 되더라고요.. haswell 이상이어야 된다고 합니다.
  13. Today Update!! Download Available Right Now !!!
  14. Dear Xpenology forum members, I'm come back!!!! I have been very busy at work. So I could not cope with the changed code because I could not upgrade DSM. But! I have recently successfully migrationed the "ivybridge" of existing my systems to "haswell". I also added an additional LAN card. The latest version of "DSM 6.2.2-24922 Update 2" is now available for the DS3615xs, 918+ and other versions. I'll be updating and distributing the "ch_cpuinfo" tool soon so that it will work with the latest version. I'm sorry to have kept you waiting so long, and thank you for waiting. See you soon. Dear @Polanskiman , Thank you for your patience and care for the topic I could not manage. I'll update soon. Dear @gericb , Thank you for your concern and supportive mentality
  15. It looks like the last time I contacted fhocorp + cpu_vendor=' Intel' + cpu_family=' Xeon' + cpu_series=' E5504' The variable contains a blank line. Last time was Nehalem CPU .. Can you show the result of "dmidecode -t processor"? It seems that certain CPUs may be blank when collecting information.
  16. My testing environment is all VM, and I see that phenomenon for the first time. Is it a phenomenon when it is Native? I can not say that I can do that
  17. Maybe you should comment on the result of `sh -x ch_cpuinfo.sh`
  18. Good job You did well. It is important to change the information and not worry about poor tools. You had a lot of efforts to try various things. Thank you.
  19. Thank you. Your "admin_center.js" file is not problem. I think that one thing that I mentioned before is the cause. It seems that line wrapping is still inserted in the process of collecting information and putting it into a variable. Your GATHER_FN function My GATHER_FN function Please compare. Collected CPU information is entered into the line without entering the variables thoroughly. + cpu_vendor=' Intel' + cpu_family=' Xeon' + cpu_series=' E5440' The variables of the collected information are continuously changed and displayed. + cpu_info='f.cpu_vendor=" Intel";f.cpu_family=" Xeon";f.cpu_series=" E5440";f.cpu_cores="4 Cores (1 CPU\/4 Cores | 4 Threads)";' + sed -i 's/f.model]);/f.model]);f.cpu_vendor=" Intel";f.cpu_family=" Xeon";f.cpu_series=" E5440";f.cpu_cores="4 Cores (1 CPU\/4 Cores | 4 Threads)";/g' /root/Xpenology_backup/admin_center.js sed: -e expression #1, char 37: unterminated `s' command This is correct. + cpu_info='f.cpu_vendor="Intel";f.cpu_family="Xeon";f.cpu_series="E3-1230 V2";f.cpu_cores="8 Cores (1 CPU\/8 Cores | 8 Threads)";' + sed -i 's/f.model]);/f.model]);f.cpu_vendor="Intel";f.cpu_family="Xeon";f.cpu_series="E3-1230 V2";f.cpu_cores="8 Cores (1 CPU\/8 Cores | 8 Threads)";/g' /root/Xpenology_backup/admin_center.js Why the space is in the GATHER_FN function should be checked one line at a time. To find out why. in the GATHER_FN function's should be checked one line, one line...by command. I am sorry that I can not solve it right now.
  20. Thank you for your confirmation. There seems to be more problems than I thought. I think I should open the js file and check it myself. Could you attach a file? I'd like to show you both backed up and original files.
  21. If there was no error when executing a separate command, the code is correct. Does it work as a binary file and the result is the same? One more let me know.
  22. There is no abnormality in particular. But, Is there a way to change the line when pasting it like this? Or does it look like the terminal window has changed lines or lines? admin_center.js file copy to admin_center.js_bak Try typing in the terminal to see if there are any errors # sed -i 's/f.model]);/f.model]);f.cpu_vendor="Intel";f.cpu_family="Xeon";f.cpu_series="E5440";f.cpu_cores="4 Cores (1 CPU\/4 Cores | 4 Threads)";/g' /tmp/admin_center.js_bak If you do not get an error, ch_cpuinfo.sh may have been blanked or wrapped in the process of moving it to your DSM. Please run it and let me know the result.
  23. no, That does not mean that. While upgrading ch_cpuinfo from 1.0 to 5.0. Collection methods, results, etc. have been changed. That's why I've been struggling to minimize problems that could occur when using previous ch_cpuinfo users. The "RERUN_FN" function is the function that contains the process of modifying the modified file again. In this process, all users have the same DSM environment, so there is a possibility of errors. I hope I have answered your question correctly. English is too hard
  24. I have made some parts of the old version of ch_cpuinfo that allow me to cope with the problem and some problems may arise. It is also a good idea to proceed after restoring the original with No. 3 restores. If you want to know more exactly where the error is, go to sh -x ch_cpuinfo.sh and show me the error detected part. Thank you
×
×
  • Create New...