Jump to content

DZMM

Members
  • Posts

    2,801
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by DZMM

  1. yes - tried that as well. With and without ip assigned works for dvblink
  2. ok, I've tried rebooting and completely removing everything including my appdata and doing a fresh install, and still no tv cards appearing. Double-checked again by installing dvblink and the cards are appearing there. Going to post in the Rc1 forum as I think that's the problem as nothing else has changed in the last 24 hours except that upgrade. worked out where this was (duh) - here you go: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='tvheadend' --net='br0.33' --ip='192.168.30.96' -e TZ="Europe/London" -e HOST_OS="unRAID" -e 'PGID'='100' -e 'PUID'='99' -e 'TCP_PORT_9981'='9981' -e 'TCP_PORT_9982'='9982' -v '/mnt/cache/appdata/tvheadend':'/config':'rw' -v '/mnt/user/tv_recordings/':'/recordings':'rw' --device=/dev/dvb 'linuxserver/tvheadend' 744f7370397caaeb08424a0466da013d25b1cf1c8804b454ba1839afd6d66d36
  3. yes - i temporarily installed the dvblink docker and it saw the cards ok. I will try a reboot when the family are eating dinner though to see what happens
  4. sorry, as you know I'm not technical so not sure how to do that but here are my docker settings. It was all working fine (apart from iffy kodi recordings which seem to have been resolved in the latest kodi builds - tried mkv (didn't like not being able to watch while in progress) and went back to pass and all ok) although I did notice this morning when I went to check there was a 2nd empty non-mandatory 'Recordings' field had been created - I just deleted it as I had my own, and I don't think this is the problem as I did a fresh install and the tuners weren't appearing there either
  5. me again..I upgraded to 6.5.0rc1 last night and my cards aren't showing in tvh. Double-checked with @CHBMB that the drivers have loaded and also by temporarily installing the dvblink docker where the cards were working. Also tried deleting the image and installing a 2nd temp instance - still no joy Anybody else having recent problems? highlander-diagnostics-20180302-1027.zip
  6. I need to switch threads - the problem's either with 6.5rc1 or tvh. I installed dvblink docker and the cards are showing. I then tried removing my tvh image and reinstalling and also a fresh 2nd tvh install and sitll no cards. Thanks for helping debug
  7. I've just noticed it doesn't say 'DVB' in the top right - didn't it used to?
  8. Hi mate upgraded last night to the TBS Open source build and wife just told me tv not working. I've checked and in TVH there are no cards showing - checked docker all still seems ok and the card is still in unraid, so don't think this is RC1 unraid's end: IOMMU group 34: [544d:6178] 07:00.0 Multimedia controller: TBS Technologies DVB-S2 4 Tuner PCIe Card diagnostics attached if they help - I know you don't have a DVB card anymore to check yourself :-( highlander-diagnostics-20180302-1027.zipKeep up the good work!
  9. I've created a script to install the latest rclone beta - essentially I've converted the excellent plugin. I was having problems with the rclone plugin as it was failing to re-install rclone at boot, when my PC didn't have connectivity because I have a pfsense VM. Running as a script solves this, but I've also added a connectivity check at the start just to make sure: if ping -q -c 1 -W 1 google.com >/dev/null; then echo "The network is up - proceeding" else echo "The network is down - pausing" sleep 1m fi The script also installs the latest beta version each time - whereas the plugin (currently) installs a version that is around 4 months old. #!/bin/bash # optional sleep to give pfsense VM time to setup connectivity if ping -q -c 1 -W 1 google.com >/dev/null; then echo "The network is up - proceeding" else echo "The network is down - pausing" sleep 4m fi # make supporting directory structure on flash drive mkdir -p /boot/config/plugins/rclone-beta mkdir -p /boot/config/plugins/rclone-beta/install mkdir -p /boot/config/plugins/rclone-beta/scripts mkdir -p /boot/config/plugins/rclone-beta/logs #download dependencies to /boot/config/plugins/rclone-beta/install wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/ap/man-1.6g-x86_64-3.txz -O //boot/config/plugins/rclone-beta/install/man-1.6g-x86_64-3.txz wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/a/infozip-6.0-x86_64-3.txz -O //boot/config/plugins/rclone-beta/install/infozip-6.0-x86_64-3.txz curl -o /boot/config/plugins/rclone-beta/install/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt #Install dependencies installpkg /boot/config/plugins/rclone-beta/install/man-1.6g-x86_64-3.txz installpkg /boot/config/plugins/rclone-beta/install/infozip-6.0-x86_64-3.txz # Check if stable is installed. if [ -d /usr/local/emhttp/plugins/rclone ]; then echo "" echo "" echo "----------Stable Branch installed----------" echo "Uninstall Stable branch to install Beta!" echo "" echo "" exit 1 fi #Download fresh version of rclone wget https://beta.rclone.org/rclone-beta-latest-linux-amd64.zip -O //boot/config/plugins/rclone-beta/install/rclone-beta.zip #Download package wget https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/archive/rclone-beta-2016.11.14-x86_64-1.txz -O //boot/config/plugins/rclone-beta/install/rclone-bundle.txz # install package upgradepkg --install-new /boot/config/plugins/rclone-beta/install/rclone-bundle.txz # remove old cert and re-download if [ -f /boot/config/plugins/rclone-beta/install/ca-certificates.crt ]; then rm -f /boot/config/plugins/rclone-beta/install/ca-certificates.crt fi; curl -o /boot/config/plugins/rclone-beta/install/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt # remove old rclone version if exists if [ -d /boot/config/plugins/rclone-beta/install/rclone-v*/ ]; then rm -rf /boot/config/plugins/rclone-beta/install/rclone-v*/ fi; # install unzip /boot/config/plugins/rclone-beta/install/rclone-beta.zip -d /boot/config/plugins/rclone-beta/install/ cp /boot/config/plugins/rclone-beta/install/rclone-v*/rclone /usr/sbin/ chown root:root /usr/sbin/rclone chmod 755 /usr/sbin/rclone mkdir -p /etc/ssl/certs/ cp /boot/config/plugins/rclone-beta/install/ca-certificates.crt /etc/ssl/certs/ if [ ! -f /boot/config/plugins/rclone-beta/.rclone.conf ]; then touch /boot/config/plugins/rclone-beta/.rclone.conf; fi; mkdir -p /boot/config/plugins/rclone-beta/logs; mkdir -p /boot/config/plugins/rclone-beta/scripts; cp /boot/config/plugins/rclone-beta/install/scripts/* /boot/config/plugins/rclone-beta/scripts/ -R -n; echo "" echo "-----------------------------------------------------------" echo " rclone-beta has been installed." echo "-----------------------------------------------------------" echo ""
  10. ok, after a bit of jiggery I've managed to convert the plugin into a script that always installs the latest beta (the one in the plugin is about 4 months old). I've added a check at the start for connectivity, just in case my pfsense VM hasn't fully booted in time: if ping -q -c 1 -W 1 google.com >/dev/null; then echo "The network is up - proceeding" else echo "The network is down - pausing" sleep 1m fi Full code below if anyone wants to give it a try. I'm not sure it's creating the rclone.conf in the right place - on my PC it's using /root/.config/rclone/rclone.conf - if any problems, just copy your config file there #!/bin/bash # optional sleep to give pfsense VM time to setup connectivity if ping -q -c 1 -W 1 google.com >/dev/null; then echo "The network is up - proceeding" else echo "The network is down - pausing" sleep 1m fi # make supporting directory structure on flash drive mkdir -p /boot/config/plugins/rclone-beta mkdir -p /boot/config/plugins/rclone-beta/install mkdir -p /boot/config/plugins/rclone-beta/scripts mkdir -p /boot/config/plugins/rclone-beta/logs #download dependencies to /boot/config/plugins/rclone-beta/install wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/ap/man-1.6g-x86_64-3.txz -O //boot/config/plugins/rclone-beta/install/man-1.6g-x86_64-3.txz wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/a/infozip-6.0-x86_64-3.txz -O //boot/config/plugins/rclone-beta/install/infozip-6.0-x86_64-3.txz curl -o /boot/config/plugins/rclone-beta/install/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt #Install dependencies installpkg /boot/config/plugins/rclone-beta/install/man-1.6g-x86_64-3.txz installpkg /boot/config/plugins/rclone-beta/install/infozip-6.0-x86_64-3.txz # Check if stable is installed. if [ -d /usr/local/emhttp/plugins/rclone ]; then echo "" echo "" echo "----------Stable Branch installed----------" echo "Uninstall Stable branch to install Beta!" echo "" echo "" exit 1 fi #Download latest version of rclone beta wget https://beta.rclone.org/rclone-beta-latest-linux-amd64.zip -O //boot/config/plugins/rclone-beta/install/rclone-beta.zip #Download package wget https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/archive/rclone-beta-2016.11.14-x86_64-1.txz -O //boot/config/plugins/rclone-beta/install/rclone-bundle.txz # install package upgradepkg --install-new /boot/config/plugins/rclone-beta/install/rclone-bundle.txz # remove old cert and re-download if [ -f /boot/config/plugins/rclone-beta/install/ca-certificates.crt ]; then rm -f /boot/config/plugins/rclone-beta/install/ca-certificates.crt fi; curl -o /boot/config/plugins/rclone-beta/install/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt # remove old rclone version if exists if [ -d /boot/config/plugins/rclone-beta/install/rclone-v*/ ]; then rm -rf /boot/config/plugins/rclone-beta/install/rclone-v*/ fi; # install unzip /boot/config/plugins/rclone-beta/install/rclone-beta.zip -d /boot/config/plugins/rclone-beta/install/ cp /boot/config/plugins/rclone-beta/install/rclone-v*/rclone /usr/sbin/ chown root:root /usr/sbin/rclone chmod 755 /usr/sbin/rclone mkdir -p /etc/ssl/certs/ cp /boot/config/plugins/rclone-beta/install/ca-certificates.crt /etc/ssl/certs/ if [ ! -f /boot/config/plugins/rclone-beta/.rclone.conf ]; then touch /boot/config/plugins/rclone-beta/.rclone.conf; fi; mkdir -p /boot/config/plugins/rclone-beta/logs; mkdir -p /boot/config/plugins/rclone-beta/scripts; cp /boot/config/plugins/rclone-beta/install/scripts/* /boot/config/plugins/rclone-beta/scripts/ -R -n; echo "" echo "-----------------------------------------------------------" echo " rclone-beta has been installed." echo "-----------------------------------------------------------" echo "" ########################################################################################## ###### rclone mount ###### ########################################################################################## #!/bin/bash # make supporting directory structure on flash drive mkdir -p /boot/config/plugins/rclone-beta mkdir -p /boot/config/plugins/rclone-beta/install mkdir -p /boot/config/plugins/rclone-beta/scripts mkdir -p /boot/config/plugins/rclone-beta/logs #download dependencies to /boot/config/plugins/rclone-beta/install wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/ap/man-1.6g-x86_64-3.txz -O //boot/config/plugins/rclone-beta/install/man-1.6g-x86_64-3.txz wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/a/infozip-6.0-x86_64-3.txz -O //boot/config/plugins/rclone-beta/install/infozip-6.0-x86_64-3.txz curl -o /boot/config/plugins/rclone-beta/install/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt #Install dependencies installpkg /boot/config/plugins/rclone-beta/install/man-1.6g-x86_64-3.txz installpkg /boot/config/plugins/rclone-beta/install/infozip-6.0-x86_64-3.txz # Check if stable is installed. if [ -d /usr/local/emhttp/plugins/rclone ]; then echo "" echo "" echo "----------Stable Branch installed----------" echo "Uninstall Stable branch to install Beta!" echo "" echo "" exit 1 fi #Download fresh version of rclone wget https://beta.rclone.org/rclone-beta-latest-linux-amd64.zip -O //boot/config/plugins/rclone-beta/install/rclone-beta.zip #Download package wget https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/archive/rclone-beta-2016.11.14-x86_64-1.txz -O //boot/config/plugins/rclone-beta/install/rclone-bundle.txz # install package upgradepkg --install-new /boot/config/plugins/rclone-beta/install/rclone-bundle.txz # remove old cert and re-download if [ -f /boot/config/plugins/rclone-beta/install/ca-certificates.crt ]; then rm -f /boot/config/plugins/rclone-beta/install/ca-certificates.crt fi; curl -o /boot/config/plugins/rclone-beta/install/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt # remove old rclone version if exists if [ -d /boot/config/plugins/rclone-beta/install/rclone-v*/ ]; then rm -rf /boot/config/plugins/rclone-beta/install/rclone-v*/ fi; # install unzip /boot/config/plugins/rclone-beta/install/rclone-beta.zip -d /boot/config/plugins/rclone-beta/install/ cp /boot/config/plugins/rclone-beta/install/rclone-v*/rclone /usr/sbin/ chown root:root /usr/sbin/rclone chmod 755 /usr/sbin/rclone mkdir -p /etc/ssl/certs/ cp /boot/config/plugins/rclone-beta/install/ca-certificates.crt /etc/ssl/certs/ # create new conf file if none if [ ! -f /boot/config/plugins/rclone-beta/.rclone.conf ]; then touch /boot/config/plugins/rclone-beta/.rclone.conf; fi; mkdir -p /boot/config/plugins/rclone-beta/logs; mkdir -p /boot/config/plugins/rclone-beta/scripts; cp /boot/config/plugins/rclone-beta/install/scripts/* /boot/config/plugins/rclone-beta/scripts/ -R -n; echo "" echo "-----------------------------------------------------------" echo " rclone-beta has been installed." echo "-----------------------------------------------------------" echo ""
  11. I've just started using rclone again because I setup plexdrive yesterday. I've just rebooted for the first time in a while and I think I've run into problems because I have a pfsense VM i.e. during boot my unraid server doesn't have any connectivity, so when the plugin tries to download the latest version of rclone it fails and I have to manually install it again after boot. Is there anyway to modify the plugin so that if there's no connectivity, the last version of the plugin is available? I think I fixed this before when I used the plugin by doing the following - I'll test if it still works when i reboot next time. Ammended code below <?xml version='1.0' standalone='yes'?> <!DOCTYPE PLUGIN [ <!ENTITY name "rclone-beta"> <!ENTITY author "Waseh"> <!ENTITY version "2017.09.23"> <!ENTITY bundleversion "2016.11.19"> <!ENTITY launch "Settings/rclone-beta"> <!ENTITY pluginURL "https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/plugin/rclone.plg"> <!ENTITY bundleURL "https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/archive/rclone-beta-&bundleversion;-x86_64-1.txz"> <!ENTITY rcloneversion "beta-latest"> <!ENTITY rclonefile "rclone-&rcloneversion;-linux-amd64"> <!ENTITY rcloneurl "http://beta.rclone.org/&rclonefile;.zip"> <!ENTITY md5bundle "d0e08a44127b71580fadeb903087080b"> ]> <PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;"> <CHANGES> ##&name; ###2017.09.23 - Always pull latest beta on install ###2017.08.16 - New beta version of rclone (v1.37-093-gb510c70c) ###2017.03.19 - New beta version of rclone (v1.36-05-g216499d) ###2017.03.02 - New beta version of rclone (v1.35-151-g1d42a34) with buffer support. See: https://forum.rclone.org/t/new-feature-buffer-size/1083 ###2017.02.19a - New beta version of rclone (v1.35-123-g6e0e1ad) ###2017.01.17a - New beta version of rclone (v1.35-33-g47ebd07) - Reverting previous patch ###2017.01.17 - New beta version of rclone (v1.35-33-g47ebd07) - Wrapper removed ###2017.01.05 - New beta version of rclone (v1.35-13-ge1a49ca) ###2017.01.03 - New beta version of rclone (v1.35-10-g3b0f944) ###2016.12.05 - New beta version of rclone (v1.34-49-ge79a5de) ###2016.11.28 - New beta version of rclone (v1.34-38-g7929b6e) ###2016.11.21 - New beta version of rclone (v1.34-23-gc41b67e) - /mnt/disks folder now created on install ###2016.11.19 - New beta version of rclone (v1.34-22-g0b562bc) - Default button in GUI to return scripts to default state ###2016.11.15 - New beta version of rclone (v1.34-11-gbf243f3) ###2016.11.14a - Go to webgui from plugin page ###2016.11.14 - Beta version of webgui - Beta version of included template scripts - New beta version of rclone (v1.34-11-gbf243f3) ###2016.11.08 - Fixed update routine ###2016.11.07 - New beta version of rclone (v1.34-04-g4105da2) ###2016.11.06 - New beta version of rclone (v1.34-02-g5f320cc) - Check to see if stable branch installed ###2016.11.05a - New beta version of rclone (v1.33-107-gff41b0d) ###2016.11.05 - New beta version of rclone (v1.33-106-ge162377) - MD5 check of rclone zip ###2016.11.04 - New beta version of rclone (v1.33-99-g452c681) ###2016.11.03 - First official release - New beta version of rclone ###2016.11.02 - More intuitive calling of rclone - Use rclone instead of myrclone - More minor changes in preperation of official release ###2016.10.31 - New beta version of rclone - Other minor improvements ###2016.10.27 - Changed version to latest beta - Small modifications to make the plugin work again, and updateable from unraid interface </CHANGES> <!-- This plugin installs Rclone on unRAID systems. This work is entirely based upon the plugin created by aschamberger: https://lime-technology.com/forum/index.php?topic=46663.msg501372 Thanks to stignz for his great guide: https://lime-technology.com/forum/index.php?topic=46663.0 --> <!-- Check if stable is installed. --> <FILE Run="/bin/bash"> <INLINE> if [ -d /usr/local/emhttp/plugins/rclone ]; then echo "" echo "" echo "----------Stable Branch installed----------" echo "Uninstall Stable branch to install Beta!" echo "" echo "" exit 1 fi </INLINE> </FILE> <!-- Get the rclone zip. --> <FILE Name="/boot/config/plugins/&name;/install/rclone-&rcloneversion;.zip"> <URL>&rcloneurl;</URL> </FILE> <!-- Get bundle. --> <FILE Name="/boot/config/plugins/&name;/install/rclone-&bundleversion;-bundle.txz" Run="upgradepkg --install-new"> <URL>&bundleURL;</URL> <MD5>&md5bundle;</MD5> </FILE> <!-- Install script. --> <FILE Run="/bin/bash" Method="install"> <INLINE> if [ -f /boot/config/plugins/&name;/install/ca-certificates.crt ]; then rm -f /boot/config/plugins/&name;/install/ca-certificates.crt fi; curl -o /boot/config/plugins/&name;/install/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt if [ -d /boot/config/plugins/&name;/install/rclone-v*/ ]; then rm -rf /boot/config/plugins/&name;/install/rclone-v*/ fi; unzip /boot/config/plugins/&name;/install/rclone-&rcloneversion;.zip -d /boot/config/plugins/&name;/install/ rm -f $(ls /boot/config/plugins/&name;/install/rclone*.zip 2>/dev/null) rm -f $(ls /boot/config/plugins/&name;/install/rclone*.txz 2>/dev/null | grep -v '&bundleversion;') cp /boot/config/plugins/&name;/install/rclone-v*/rclone /usr/sbin/rcloneorig if [ "$?" -ne "0" ]; then echo "Copy failed - rclone running" exit 1 fi chown root:root /usr/sbin/rcloneorig chmod 755 /usr/sbin/rcloneorig mkdir -p /etc/ssl/certs/ cp /boot/config/plugins/&name;/install/ca-certificates.crt /etc/ssl/certs/ if [ ! -f /boot/config/plugins/&name;/.rclone.conf ]; then touch /boot/config/plugins/&name;/.rclone.conf; fi; cp /boot/config/plugins/rclone-beta/.rclone.conf /root/; mkdir -p /boot/config/plugins/&name;/logs; mkdir -p /boot/config/plugins/rclone-beta/scripts; cp /boot/config/plugins/rclone-beta/install/scripts/* /boot/config/plugins/rclone-beta/scripts/ -R -n; mkdir -p /mnt/disks/; echo "" echo "-----------------------------------------------------------" echo " &name; has been installed." echo "-----------------------------------------------------------" echo "" </INLINE> </FILE> <FILE Run="/bin/bash" Method="remove"> <INLINE> rm -rf /boot/config/plugins/&name;/install rm -f /usr/sbin/rcloneorig; rm -f /usr/sbin/rclone; rm -f /etc/ssl/certs/ca-certificates.crt removepkg rclone-&bundleversion;-bundle >/dev/null # we keep config and logs #rm -f /boot/config/plugins/&name;/.rclone.conf; #rm -f /boot/config/plugins/&name;/logs; echo "" echo "-----------------------------------------------------------" echo " &name; has been uninstalled." echo "-----------------------------------------------------------" echo "" </INLINE> </FILE> <FILE Name="/usr/sbin/rclone" Mode="0755"> <INLINE> #!/bin/bash log=false args=() for i in "$@" ; do if [[ $i = "--log" ]] ; then log=true continue fi if [[ $i = "-l" ]] ; then log=true continue fi args+=($i) done config=/boot/config/plugins/&name;/.rclone.conf logfile=/boot/config/plugins/&name;/logs/rclone-$(date "+%Y%m%d").log if [ "$log" = true ] &amp;&amp; [ ${#args[@]} -ge 1 ]; then rcloneorig --config $config "${args[@]}" &gt;&gt; $logfile 2&gt;&amp;1 else rcloneorig --config $config "$@"; fi; </INLINE> </FILE> </PLUGIN>
  12. Yep, just double-checked by putting my phone on cellular and pinging home-assistant and my owntracks works with the MQTT docker by ensuring the outgoing ports are open, not the incoming. I have for my appdata\MQTT\conf.d\myphone_mqtt.conf: connection cloudmqtt address mXX.cloudmqtt.com:non-ssl port remote_username MAIN CLOUDMQTT USERNAME remote_password MAIN CLOUDMQTT PASSWORD clientid cloudmqtt try_private false start_type automatic topic # in topic owntracks out and I've allowed outgoing the non-ssl and websockets port from the cloudmqtt instance in my router (running this ports using selective routing over my vpn for more peace of mind) . 'owntracks out' is so that cloudmqtt doesn't get flooded with my smartthings messages, or anything else I add in the future.
  13. I haven't opened up port 1883 to get owntracks to work. It's been a while since i setup, but I think owntracks responds to 'polls' from the local instance so you don't need to open up a port.
  14. DZMM

    Plexdrive

    ok, I've got it all working - it helped that I finally worked out how plexdrive works @starbix your uploadscript on https://blog.laubacher.io/blog/unlimited-plex-server-on-unraid is using the wrong crypt - it should be uploadcrypt not gdrivecrypt. @Sparkum can I get some pointers on how you added a temp folder please. Here's my mount script - I'm not sure how to modify it: mkdir -p /mnt/disks/pd mkdir -p /mnt/disks/crypt #This section mounts the various cloud storage into the folders that were created above. if [[ -f "/mnt/disks/crypt/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check successful, crypt mounted." exit else echo "$(date "+%d.%m.%Y %T") ERROR: Drive not mounted, remount in progress." # Unmount before remounting fusermount -uz /mnt/disks/crypt fusermount -uz /mnt/disks/pd /mnt/cache/appdata/plexdrive/plexdrive mount /mnt/disks/pd -c "/mnt/user/appdata/plexdrive" -o allow_other -v 2 & rclone mount --max-read-ahead 512M --allow-other --allow-non-empty -v --buffer-size 1G gdrivecrypt: /mnt/disks/crypt & if [[ -f "/mnt/disks/crypt/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Remount successful." else echo "$(date "+%d.%m.%Y %T") CRITICAL: Remount failed." fi fi exit Edit: just seen in an earlier post that -t is depreciated now
  15. DZMM

    Plexdrive

    Hi I just tried installing this for the first time and I'm getting this error when I try to install: plugin: installing: https://raw.githubusercontent.com/Starbix/unRAID-plugins/master/plugins/plexdrive.plg plugin: downloading https://raw.githubusercontent.com/Starbix/unRAID-plugins/master/plugins/plexdrive.plg plugin: downloading: https://raw.githubusercontent.com/Starbix/unRAID-plugins/master/plugins/plexdrive.plg ... done Warning: simplexml_load_file(): I/O warning : failed to load external entity "/boot/config/plugins/plexdrive.plg" in /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin on line 216 plugin: xml parse error Help please. Great guide here btw - I'm working my way through it now https://blog.laubacher.io/blog/unlimited-plex-server-on-unraid
  16. I use Kodi V18 latest builds on Mibox 3 and Fire TVs i.e. Android devices - the Kodi android problems with live tv have been solved in the latest V18 builds, but recorded tv is still a problem for me and I was wondering if that's because I'm recording using pass, when I should be using htsp or mkv.... I've read that mkv has problems with skipping when you watch a recording that's in progress, so I was wondering what other users were doing. I've asked on the TVH forums, but it's fairly dead over there so trying here as I knew I'd get responses.
  17. lol helpful! I'm going to do a default install in another container now to see what they are
  18. What stream settings do people use for kodi? My live TV works fine, but my recorded TV can be temperamental particularly if I skip
  19. Could you share your modified script please as my 3 of my 4 VMs use the VirtIO-SCSI driver as well.
  20. I kind of do this with my VMs - my kids VMs are on the lower cores, and mine and the pfsense VM are on the highest cores. I don't know if it helps, but when I'm bored and watching the cores activity the higher cores do seem to get less use.
  21. Thanks - thought so, but I thought I'd check just in case. I've been playing with my ratios today, and at the moment I'm at 10%/40% for vm.dirty_background_ratio/vm.dirty_ratio as my thinking is that 10% of 64GB of RAM is a good amount of space which will cover the majority of my files and 40% will cover a large movie file. My hope is that writing it to ram first will give the impression of faster writes, while the background job gets completed at a later time Edit: going to drop both as just realised I don't want to sit around and wait for potentially 25GB to be written when I shutdown, or lose 25GB if I crash.
  22. question re vm.dirty_ratio - if I set it high to say 40%, does unraid ensure all writes that are still in memory get written before it shuts down? Thanks
  23. I guess 'Sandbox' browsing - docker is isolated from rest of PC, so if browser is compromised your PC isn't touched.
×
×
  • Create New...