You need to upgrade to Debian Stretch.
Posts by ozolli
-
-
There are curl, wget and lftp already. Can't they do the job for you ?
-
If it makes sense then you can make a PR to our repoSorry but each time I try to do something with github it never work and I mess everything and annoy everyone.
Edit: I will try nonetheless
Edit2: Done, the right way I hope !
-
Well, let me address your points.
Whatever you feel should be done by 3., It has not asked anyone to sell any service to monitor them and is thus not required to do anything to help.
This is solely between Norton and its customers and if they are not happy with the service they shall quit. -
Ok, so what is next?. Its my understanding that the owner/rep of the website has to contact Norton. I'm a user so I doubt that I have any say with Norton regarding status for Libreelec.
There are 3 parts here :
1. A customer who paid a company for a service
2. A company which is paid to deliver a service
3. A website which is not paid and do no pay for a serviceI fail to understand why 3. has to contact 2. to have 1. happy, unless 1. or 2. have paid 3. in the process...
-
No, but I'm building Kodi without built-in samba client and this prevents building OS samba client/server :
Codeolivier@backup:~$ fgrep -r samba LibreELEC.tv/packages/ | grep DEPENDS LibreELEC.tv/packages/mediacenter/kodi/package.mk: PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET samba"
and
Codeif [ "$KODI_SAMBA_SUPPORT" = yes ]; then PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET samba" KODI_SAMBA="-DENABLE_SMBCLIENT=ON" else KODI_SAMBA="-DENABLE_SMBCLIENT=OFF" fi
So this is the only way to build the samba package.
-
I noticed that the samba package is not built unless KODI_SAMBA_SUPPORT is set to yes.
SAMBA_SUPPORT="yes" and SAMBA_SERVER="yes" have no effect if KODI_SAMBA_SUPPORT="no"My workaround is to add
Codeif [ "$SAMBA_SERVER" = "yes" ] || [ "$SAMBA_SUPPORT" = "yes" ]; then PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET samba" fi
at the end of packages/virtual/network/package.mkIf this is the right way to do and that was forgotten then can it be added please ?
-
Hardware is Asus Beebox N3150.
I have the same machine.
If you upload a sample showing the default somewhere I can try it. -
That could be a good starting point :
JSON-RPC API - Official Kodi Wiki -
Actually 'Sync audio to video' should be less prone to error than 'Sync playback to display'
-
Yes it can if you know an external iperf3 server listening somewhere. See iPerf - Public iPerf3 servers
Code
Display MoreLibreELEC:~ # iperf3 -c bouygues.testdebit.info Connecting to host bouygues.testdebit.info, port 5201 [ 4] local 192.168.0.100 port 36450 connected to 89.84.127.53 port 5201 [ ID] Interval Transfer Bandwidth Retr Cwnd [ 4] 0.00-1.00 sec 2.21 MBytes 18.6 Mbits/sec 0 130 KBytes [ 4] 1.00-2.00 sec 1.84 MBytes 15.4 Mbits/sec 8 133 KBytes [ 4] 2.00-3.00 sec 1.99 MBytes 16.7 Mbits/sec 0 157 KBytes [ 4] 3.00-4.00 sec 1.79 MBytes 15.0 Mbits/sec 1 123 KBytes [ 4] 4.00-5.00 sec 1.77 MBytes 14.8 Mbits/sec 0 137 KBytes [ 4] 5.00-6.00 sec 1.77 MBytes 14.9 Mbits/sec 0 143 KBytes [ 4] 6.00-7.00 sec 1.77 MBytes 14.8 Mbits/sec 0 150 KBytes [ 4] 7.00-8.00 sec 1.77 MBytes 14.8 Mbits/sec 0 158 KBytes [ 4] 8.00-9.00 sec 1.99 MBytes 16.7 Mbits/sec 1 123 KBytes [ 4] 9.00-10.00 sec 1.77 MBytes 14.8 Mbits/sec 0 146 KBytes - - - - - - - - - - - - - - - - - - - - - - - - - [ ID] Interval Transfer Bandwidth Retr [ 4] 0.00-10.00 sec 18.7 MBytes 15.7 Mbits/sec 10 sender [ 4] 0.00-10.00 sec 18.2 MBytes 15.3 Mbits/sec receiver
-
is there just that 1 test that can be run with, or other, ta?Sorry ? I didn't understand...
-
-
From what I see bash is used only by sapphire driver package.Yes ok for the 'full blown' bash. Nevertheless #!/bin/bash is working thanks to busybox
-
Please note, there´s no "#!/bin/bash" for LibreELEC. For LibreELEC it has to be "#!/bin/sh"Huh ?
LibreELEC.tv/package.mk at libreelec-7.0 · LibreELEC/LibreELEC.tv · GitHub
-
Yes you need iperf for windows.
-
Connect to your nuc via ssh and start iperf as a server :
Download iperf for windows here : iPerf - Download iPerf3 and original iPerf pre-compiled binariesOpen a cmd in the windows iperf folder then start a client :
-
Actually I found a way to have a .profile file surviving a backup/restore using a dummy addon.
At startup LE looks for /storage/.kodi/addons/*/profile.d/*.profile (in /etc/profile.d/00-addons.conf).
So the content of, for example, /storage/.kodi/addons/user/profile.d/user.profile will be read and applied, and this file will be saved and restored.Worth noting that /storage/.kodi/addons/user/bin will be added to the PATH variable at startup so is a nice place for your own scripts.
Sort of a dirty hack but I'm fine with it