Jump to content

Reynald

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by Reynald

  1. Hello all, I had a smart reported issue on a drive, that has been nicely reported, but now, I'd like to acknowledge it instead of ignoring it so if the error triggers again it will show: Any tips please? Thank you
  2. I probably misconfigured something, because it not seems to work:
  3. Hello all, I'm just trying it Very simple to use! Scanning in progress. I think @NLS remark about host mount point may allow a feature: storing TMDB API key and Plex Token. Anyway, that tool isn't meant to be used very frequently in my opinion, not as frequent as radarr suggestions in example. I will come back with the result of my test I started the scan of 687 movies accros 4 libraries At the moment, log is full of "Result not fount"
  4. Hello all, I just set a similar thing up, but unraid is slave of a "keyserver" that is a pi on my network. Here is the script used on the pi. It can be called every minute by a cron task: #!/bin/bash server_adress="192.168.1.234" server_mac="00:A1:B2:3C:4D:EF" ssh_key="/root/.ssh/id_rsa" decryption_key="/root/.ssh/keyfile" decrypted_testfile="/mnt/disk4/.decrypted" boot_time="140s" echo "" echo "Checking connectivity:" if ping -c1 $server_adress >/dev/null; then echo "- Server online" else echo "- Oups, server offline" echo "- Waking up server on lan" wakeonlan -i $server_adress $server_mac echo "- Waiting $boot_time for server to start" sleep $boot_time fi echo"" if ssh -q -i $ssh_key root@$server_adress [[ -f $decrypted_testfile ]]; then echo "- Decrypted" if ssh -q -i $ssh_key root@$server_adress [[ -f /root/keyfile ]]; then echo "- Deleting decryption key" ssh -i $ssh_key root@$server_adress 'rm /root/keyfile' fi else echo "- Encrypted" echo "- Sending decryption key.." scp -i $ssh_key $decryption_key root@$server_adress:/root/keyfile echo "- Starting emhttp.." echo "- Waiting for array.." ssh -i $ssh_key root@$server_adress '/usr/local/sbin/emhttp &' while ! ssh -q -i $ssh_key root@$server_adress [[ -f $decrypted_testfile ]]; do sleep 5 done echo "- Array mounted and decrypted" echo "- Deleting decryption key" ssh -i $ssh_key root@$server_adress 'rm /root/keyfile' echo "" echo "All done!" fi echo "" note: to be adapted according to your need. server.local to be replaced by unraid IP if not resolved. If you have any comment/question, please tell/ask
  5. Hello all, @limetech We are several users using Unraid with home automation or other hobbyist using arduinos. Me it will be to use a USB Watchdog, very usefull on an unRaid server when system hangout and you're not at home. I will do a writeup when got it working. Please, may you include the driver in next kernel compile? Here is the official driver from ch340/ch341 chip manufacturer: http://www.wch.cn/downloads/CH341SER_LINUX_ZIP.html Also, maybe modules are already available in kernel source also: http://manpages.ubuntu.com/manpages/xenial/man4/uchcom.4freebsd.html Unfortunatly, IDK how to compile unraid kernel and documentation is outdated
  6. Thank you! I was facing the same issue
×
×
  • Create New...