Everything posted by cinereus
-
Guide: Setting up a Time Machine Share on your Unraid 6.7 Server
There's nothing in the log after changing the smb.service file. How do you make avahi reload and what should it look like in the log?
-
Speedtest.net for unRAID 6.1+
Can you see what the javascript error is? Uncaught TypeError: Cannot read property 'arrayToDataTable' of undefined at drawChart (SpeedtestTools:1110) at SpeedtestTools:1275 The n to infinity options don't seem to work. Better to just call it ">n" anyway?
-
Speedtest.net for unRAID 6.1+
Table sort also doesn't work.
-
[DEPRECATED] Linuxserver.io - Rutorrent
I've asked this many places and not received any good answers to be honest. I ruled out transmission because it doesn't seem to have any features. Haven't gone too far into deluge. Rtorrent seems to be okay if you run multiple instances with 5k max per instance. The issue is running as a docker it seems impossible to get auto watch to work and automove is very flaky. Nobody seems to know how to mount multiple shares either.
-
Speedtest.net for unRAID 6.1+
One issue is that the graph isn't displaying for me any more even though the xml table data seems fine.
-
Speedtest.net for unRAID 6.1+
I think the issue is with python. The githib version requires python3 to be manually specified whereas the plugin version requires python 2.x
-
Time Machine Shares / Avahi
Sorry. To be clear does this file "timemachine.service" go in /etc/avahi or /etc/avahi/services? And is the filename always timemachine.service regardless of what the share name is (I will change the txt-record)?
-
Time Machine Shares / Avahi
Unfortunately this does not work for me adding the "_adisk._tcp" service
-
Guide: Setting up a Time Machine Share on your Unraid 6.7 Server
Thanks for this. I edited my smb.service in /etc/avahi/services to be as follows: <?xml version='1.0' standalone='no'?><!--*-nxml-*--> <!DOCTYPE service-group SYSTEM 'avahi-service.dtd'> <!-- Generated settings: --> <service-group> <name replace-wildcards='yes'>%h</name> <service> <type>_smb._tcp</type> <port>445</port> </service> <service> <type>_device-info._tcp</type> <port>0</port> <txt-record>model=Xserve</txt-record> </service> <service> <type>_adisk._tcp</type> <port>0</port> <txt-record>dk0=adVN=timemachine,adVF=0x82</txt-record> </service> </service-group> (my Time Machine share is called "timemachine"). I then mounted the share on my Mac and still can't see it from Time Machine
-
[Plugin] IPMI for unRAID 6.1+
You're very welcome. Hopefully it can be merged into the next version (as well as a CSS fix).
-
Guide: Setting up a Time Machine Share on your Unraid 6.7 Server
Is anyone aware what could have changed in macOS 10.12 with regards to Time Machine functionality? I wouldn't have thought the client could make such a difference.
-
[SOLVED] How to stop Mover
Oh god damn. Just spent an hour trying to work out why the limetech suggestions at the start of this thread didn't work Good to know! Would be great to have this in the UI if only to save time googling dozens of threads!
-
Mover % bar or information
Could people not do exactly what the mover does with unBALANCE instead?
-
[DEPRECATED] Linuxserver.io - Rutorrent
Thanks I found it. What was hard is all the plugins are in a completely different directory root. Even if you get past that, I'm having a lot of issues with watch folders not working correctly and inability to change the listen port. It's also really hard to map folders from two different shares as I keep getting very inconsistent results.
-
Mover % bar or information
I have it enabled but nothing is showing in System Log.
-
Mover % bar or information
A couple of threads have mentioned this but there's no information about mover displayed in the log other than the start of the script.
-
Guide: Setting up a Time Machine Share on your Unraid 6.7 Server
Dang, still can't get it to be seen by any of my macOS systems
-
[Plugin] IPMI for unRAID 6.1+
It's a javascript script for greasemonkey/tampermonkey. You install it on your webbrowser not the unraid server.
-
Guide: Setting up a Time Machine Share on your Unraid 6.7 Server
Should it be active immediately after editing the file or do you need to reboot to reload the cfg?
-
[Plugin] IPMI for unRAID 6.1+
You need to go into web BMC > Configuration > Fan Mode at http://IP/cgi/url_redirect.cgi?url_name=mainmenu There you can change back to Optimal:
-
[Plugin] Advanced Copy and Move for unRAID v6.8.3 and later
You might also choose different command names. The repo suggests cpg/mvg or advcp/advmv it seems. gcp clashes with the ohmyzsh alias for "git cherry-pick"
-
Speedtest.net for unRAID 6.1+
Seems to not run most days for some reason: If I go to the plugin settings and begin test it says "Internet bandwidth test started" and then does nothing. However, I can run the sivel/speedtest-cli script manually perfectly fine and it completes in a few moments: root@fs # speedtest-cli Retrieving speedtest.net configuration... Testing from Virgin Media (x.x.x.x)... Retrieving speedtest.net server list... Selecting best server based on ping... Hosted by Hey! Broadband (Horsham) [28.19 km]: 29.707 ms Testing download speed................................................................................ Download: 169.30 Mbit/s Testing upload speed...................................................................................................... Upload: 16.91 Mbit/s
-
Guide: Setting up a Time Machine Share on your Unraid 6.7 Server
I changed it and rebooted and it was changed back to no again. How do you get it to survive a reboot?
-
Guide: Setting up a Time Machine Share on your Unraid 6.7 Server
Just curious — why do you say this is specific to Catalina? Do you know anything about earlier versions of macOS? I read the link you provided and it's not clear why that doesn't work either.
-
[Plugin] IPMI for unRAID 6.1+
I just wrote a basic greasemonkey script to do this: // ==UserScript== // @name Move IMPI elements to bottom of unRAID dashboard // @include http://YOURHOSTNAMEORIP/Dashboard // @grant none // ==/UserScript== var container = document.querySelector ("div.content.shift"); var title = container.querySelector ("div#title"); var table = container.querySelector ("table#tblIPMIDash"); //-- Move IMPI elements to bottom container.appendChild (title); container.appendChild (table);