Jump to content
XPEnology Community

ygor

Member
  • Posts

    99
  • Joined

  • Last visited

Everything posted by ygor

  1. Hello, Is there a way to use the intel gpu with plex ? In the bios i have set GPU order as Intel primary and integrated optional . i Use dsm 3615xs, any ideas hwo to get that GPU to work with Plex ? Thank you
  2. ygor

    DSM 6.2 Loader

    Is the new loader / DSM supporting HP Ethernet 1Gb 2-port 332i Adapter on HP Gen8 ?
  3. @apejovic It should work with the HP N54L (modded bios - never tried with original bios) as this path exist when the bios is set to and option like: power comsuption is managed by the os. (i don't have the N54L to check anymore) For exemple on the HP gen8 microserver this path is created when that powersave option is set on os managed, and after a reboot of the os. After trying with a watt meter this option and the powersave mode on the gen8 values are almost the same. Around 30 / 35 watts with a xeon 1245L. you might want to execute the script manualy to see an error like: path not found, or module error -> path not found : should be bios related -> module error : should comment the list of modules: #modprobe .... (probably not required since the kernel is more recent) I can't help much, as i did not test that with 5.2, and don't have the N54L anymore.
  4. ygor

    DSM 6.2 Loader

    does 1.04b work with ds3615xs ? or is it nly for ds918 ? Thanks
  5. ygor

    DSM 6.2 Loader

    There is more details here: https://www.oradba.ch/2013/08/avdf-linux-kernel-could-not-recognize-whole-ram/ looks to be caused by a bios issue, disabling is a workaround if there is no bios update
  6. ygor

    DSM 6.2 Loader

    you should add disable_mtrr_trim to the grub.cfg Example: set common_args_3615='disable_mtrr_trim syno_hdd_pow ...... it is know issue, also required on G7 (amd)
  7. Since i try synology virtual manager i found sometimes i had a unreachable box, and forced to restart with power button (no ssh or gui accessible) found this line in kernel log file: this seems to be caused by openvswitch activated (when you installed dsm virtual manager this option become enabled ) go to config panel / network interface / manage and uncheck openvswitch (if you don't use dsm virtual manager) your box should be more stable, if you have installed and removed the virtual manager. (once installed i can't proprely uninstall it, and had to go cli for manual uninstall) did someone got it to work on xpenology with jun's bootloader (intel or amd ?)
  8. better use : sh-4.3# ./opt/VirtualBox/vboxwebsrv -b instead of : sh-4.3# ./opt/VirtualBox/vboxwebsrv &
  9. vbox 5.1.30 on HP N54L is working for me with DSM 6.1.5-15254 -> following same edit process: replace the 3 values 15217 by 15254 in previous spk (5.0.40 or 5.1.30) after upgrade: uninstall old vbox / reinstall updated spk in the setup for the admin user put the admin password (admin must be enabled in dsm, and you need to set a strong password) keep "run after setup" selected reboot synology in case you have port 18083 error after login on webpage (after rebooting with vbox started before reboot) connect ssh & check: sh-4.3# lsmod | grep vbox vboxpci 15225 0 vboxnetadp 18580 0 vboxnetflt 17736 0 vboxdrv 373485 3 vboxnetadp,vboxnetflt,vboxpci sh-4.3# netstat -an | grep 18083 tcp 0 0 127.0.0.1:18083 0.0.0.0:* LISTEN if phpvirtualbox does not connect after login/password (admin/admin and show error with port 18083) : start the service manualy: sh-4.3# cd /volume1/@appstore/ sh-4.3# ./opt/VirtualBox/vboxwebsrv & retry: sh-4.3# netstat -an | grep 18083, it should display a result, if not try version 5.0.40 sh-4.3# uname -a Linux N54L 3.10.102 #15254 SMP Fri Jan 26 06:40:50 CST 2018 x86_64 GNU/Linux synology_bromolow_3615xs VirtualBox_x64_5.1.30-118389-1.spk.dsm6.1.5
  10. - Outcome of the update: SUCCESSFUL - DSM version prior update: DSM 6.1.4 15217 update 2 - Loader version: Jun's v1.02b - ds 3615xs - Installation type: HP N54L - Additional comments: Requires reboot - Virtualbox 5.1.30 : package : OK
  11. The script is not for AMD only, since the module is not required since kernel 3.4 (dsm 6.1.x have kernel 3.10) It should work for any X86_64 cpu, if someone can confirm with other hardware. for more than 10 cpu core change the line : for c in $(ls -d /sys/devices/system/cpu/cpu[0-9]*); to ->by for c in $(ls -d /sys/devices/system/cpu/cpu[0-15]*); for 16 cores. We could change the title AMD HP N54L PowerSave CPU on DSM 6.1.4 / loader 1.02b -> AMD / Intel PowerSave CPU on DSM 6.1.x / loader 1.02b and rename: S99PowersavingAMD.sh with vi S99Powersaving.sh as nothing in the script is related to AMD. (except the removed line for DSM 5.x) ? I can't edit the first post.
  12. i know it is not going to make a big diff on the bill, but cpu may also cool a bit as it require less energy.
  13. Same as on your phone. When idling it goes down, and same on laptop with windows , CPU is going down on frequency by défaut.
  14. By default CPU is working 100% all time (2200Mhz) with the script found in previous post it works (bootloader 1.02b) on AMD before: fixed state: sh-4.3# grep MHz /proc/cpuinfo cpu MHz : 2200.000 cpu MHz : 2200.000 after: sh-4.3# grep MHz /proc/cpuinfo cpu MHz : 800.000 cpu MHz : 1300.000 sh-4.3# grep MHz /proc/cpuinfo cpu MHz : 800.000 cpu MHz : 800.000 sh-4.3# grep MHz /proc/cpuinfo cpu MHz : 800.000 cpu MHz : 1900.000 sh-4.3# grep MHz /proc/cpuinfo cpu MHz : 800.000 cpu MHz : 800.000 sh-4.3# grep MHz /proc/cpuinfo cpu MHz : 800.000 cpu MHz : 800.000 sh-4.3# grep MHz /proc/cpuinfo cpu MHz : 1300.000 cpu MHz : 1600.000 the original script was not working due to this line: insmod /lib/modules/powernow-k8.ko, just had to comment it Script: # vi S99PowersavingAMD.sh #!/bin/sh for c in $(ls -d /sys/devices/system/cpu/cpu[0-9]*); do if ! grep -q 'conservative' $c/cpufreq/scaling_governor ; then echo conservative >$c/cpufreq/scaling_governor ; fi done copy the scipt to: /usr/local/etc/rc.d/S99PowersavingAMD.sh edit crontab and add: */15 * * * * root /usr/local/etc/rc.d/S99PowersavingAMD.sh Don't wait for 15 minutes to activate the script: sh /usr/local/etc/rc.d/S99PowersavingAMD.sh sh-4.3# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor conservative sh-4.3# cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor conservative Default mode : performance Run the CPU at the maximum frequency. Switch to mode : conservative Scales the frequency dynamically according to current load. Scales the frequency more gradually than ondemand. looks good
  15. i'm lucky that that version 5.1.30 on dsm 6.1.4 and HP n54l works well
  16. This repo also have virtualbox spk 5.0.40 and 5.1.30 but i don't know for DSM6.1.4: http://spk.synologyitalia.com/index.php?fulllist=true edit : looks like 5.1.30 is available for dsm 6.1.4 on synoitalia
  17. in ssh if you type #uname -a and have linux kernel 4.4.* it won't work with virtualbox package dsm 6.1.x use kernel 3.10.102 kernel 4.4.* is for dsm beta 6.2.x
  18. your setup looks good, the error you have, i canno't reproduce, kernel modules are loaded with success. Maybe related to vbox5.1.30, change the package 5.0.40 and try it on dsm 6.1.4 it may help vbox5.1.30 was probably removed for a reason from http://spk.diablos-netzwerk.de/ but it work well on my AMD
  19. admin user is disabled by default in synology you have to go in the user panel and enable admin then set a strong password for this account. as posted in topic: Virtualbox should create log file at following location /var/log/vbox.log. If you need to troubleshoot vbox from ssh try this to start drivers: -> /var/packages/virtualbox/target/scripts/vboxdrv.sh start (check kernel driver are loaded: lsmod | grep vbox) if this goes without error then: -> /var/packages/virtualbox/target/scripts/vboxinit.sh start and finally if vboxinit was without errors: -> /var/packages/virtualbox/target/scripts/vboxweb-service.sh start -> this is the software listening to port 18083 (check vboxwebservice is listenning: netstat -an | grep 18083)
  20. Do an uninstall reboot check that web station is well configured, install the SPK, and unselect run after install, reboot and run the package. Be sure to have loader 1.02b . Your setup should work.
  21. i could reproduce same error (but it is a generic error from php GUI, [not related to oracle virtualbox server], it just means vboxSRV is not started -> so no port 18083 listenning) check the previous post and try
×
×
  • Create New...