Everything posted by stormense
-
[Support] binhex - DelugeVPN
Not here, no new ssl generated. Unraid: /mnt/user/appdata/binhex-delugevpn/ no new ssl folder But downloaded a new ovpn file from Air VPN and then it worked with the old sll folder I backed up .
-
[Support] binhex - rTorrentVPN
- [Support] binhex - rTorrentVPN
Answer my self : On Air VPN website go to The Client Arena and generate ovpn-file, in my case AirVPN_Sweden_UDP-443.ovpn, and put it here: /mnt/user/appdata/binhex-rtorrentvpn/openvpn The client start but not the WebUI: ERR_CONNECTION_REFUSED- [Support] binhex - rTorrentVPN
Cant get air vpn to work with Unraid. I think is the port forwarding and how I put it in editing.- ***GUIDE*** Plex Hardware Acceleration using Intel Quick Sync
cd dev/drils was not working for med but cd /dev/dri # ls by-path/ card0 renderD128 works and rest of the guide help me. Now I have HW transcoding on my I5 6500. Take two days to figure out what was wrong.- [Support] binhex - Plex
No server find on Apple TV, Samsung TV and Shield. Works in Web Browser and Xbox One. The problem was I linked my Plex account to my Google account. Now I have log out from all and log in on my Google account instead and it works on all devices except Apple TV 4.- Too many wrong and/or missing disks! [SOLVED]
Thanks here too- [Plugin] CA User Scripts
Ops, find this in other forum an if I download a file and save it in a specific directory the directory is first with the -P flag. wget -P /mnt/user/appdata/tvheadend/data/ webblink/epg/guide-sweden.xml.gz- [Plugin] CA User Scripts
Want to use CA to download a gz file, extract it to TVheadend and change name. I try this Linux command but it fail: The first string execute this error: wget webblink /mnt/user/appdata/tvheadend/data/: Scheme missing.- [Support] binhex - rTorrentVPN
Maybe the username and password to web UI here? admin rutorrent- [Support] Linuxserver.io - TVHeadend
Hm, some ting is wrong with the latest update. And on my machine. First I lost the connection to TvHeadOn when sanning channels then after some our Unraid crash and must do a cold reboot. Motherboard:Gigabyte B85M-DS3H Processor:Intel® Core™ i5-4690K Memory:16 GB- [Support] Linuxserver.io - TVHeadend
I don't now why but after last update it takes about 5-20 minutes to log in and everything is slow. I must have done something wrong. But I fix it, delete and reinstall but takes one day to scan iptv channels again. How do I get EPG to work. Searching in three days now but the info I get is not a step to step. I grab my epg from: epg.SOME-SITE.com/epg/epg.xml.gz. Can't get TVheadend to reed it.- rsync to Synology NAS
I fix it with the plugin User Scripts (A plugin to act as a simple front end for any user scripts to allow you to run them without entering the command line) I gonna update my first post.- rsync to Synology NAS
Ok @Squid: move the crone job to dynamix folder and fix the syntax. But I can't run my test job in terminal and its fine but not with crone. 55 * * * * rsync -a /mnt/user/UBU/test_bakup_2/ /mnt/disks/192.168.0.50_NetBackup/test_bakup_2/ 57 * * * * rsync -a /mnt/user/UBU/test_bakup_1/ /mnt/disks/192.168.0.50_NetBackup/test_bakup_1/ (Yes I try with: /usr/bin/rsync -a)- rsync to Synology NAS
Done some test with two test folders and no luck. Make the file with Nano in: /boot/config/plugins/cronjobs and call it backup.cron and then wrote update_cron in terminal. 55 * * * * * rsync -av /mnt/user/UBU/test_bakup_2/ /mnt/disks/192.168.0.50_NetBackup/test_bakup_2/ /dev/null 58 * * * * * rsync -av /mnt/user/UBU/test_bakup_1/ /mnt/disks/192.168.0.50_NetBackup/test_bakup_1/ /dev/null 4 our from scratch and no succés. I think I do it from Windows because I cant find a simple guide to do this for a beginner.- rsync to Synology NAS
I search for it but only find people how talk about the rsync plugin. Here some easy step in command line: First I mounted my Synology rsync share to Unraid (NFS or SMB don't matter) Here the Synology NFS premissions settings: And here the Unraid mounting settings (/mnt/disks/ip to Synology_NetBackup: Then the command window in Unraid an wrote: rsync OPTIONS (-av) SOURCE (my Unraid Shared folder to sync) DESTINATION (my shared rsync folder on Synology + the name of the shared folder at the end) rsync -av /mnt/user/UBU/my_WWW/ /mnt/disks/192.168.0.50_NetBackup/my_WWW/ Done! But how can a make a crone job (newer done a crone job) to do it with multiple shared maps an on every night? I can do this but I don't now where to put the file och what else... # * 1 * * * rsync -av /mnt/user/UBU/MapInShare/ /mnt/disks/192.168.0.50_NetBackup/MapOnSynology/ # ┌───────────── minute (0 - 59) # │ ┌───────────── hour (0 - 23) # │ │ ┌───────────── day of month (1 - 31) # │ │ │ ┌───────────── month (1 - 12) # │ │ │ │ ┌───────────── day of week (0 - 6) (Sunday to Saturday; # │ │ │ │ │ 7 is also Sunday on some systems) # │ │ │ │ │ # │ │ │ │ │ # * * * * * # Run dayly cron jobs at 0:30: 30 0 * * 0 rsync -av /mnt/user/UBU/s-Dokument/ /mnt/disks/192.168.0.50_NetBackup/s-Dokument/ # # Run dayly cron jobs at 1:00: * 1 * * * rsync -av /mnt/user/UBU/my_WWW/ /mnt/disks/192.168.0.50_NetBackup/my_WWW/ # # Run dayly cron jobs at 1:30: 30 1 * * * rsync -av /mnt/user/UBU/Android_OnePlus/ /mnt/disks/192.168.0.50_NetBackup/Android_OnePlus/ # # Run dayly cron jobs at 2:00: * 2 * * * rsync -av /mnt/user/UBU/s-Andra_Dokument/ /mnt/disks/192.168.0.50_NetBackup/s-Andra_Dokument/ # # Run dayly cron jobs at 2:30: 30 2 * * * rsync -av /mnt/user/UBU/s-photo/ /mnt/disks/192.168.0.50_NetBackup/s-photo/ # # Run dayly cron jobs at 3:00: * 3 * * * rsync -av /mnt/user/UBU/video/ /mnt/disks/192.168.0.50_NetBackup/video/ # # Run dayly cron jobs at 3:30: 30 3 * * * rsync -av /mnt/user/UBU/TV-Share/ /mnt/disks/192.168.0.50_NetBackup/TV-Share/ # # Run dayly cron jobs at 4:00: 0 4 * * * rsync -av /mnt/user/UBU/Annso/ /mnt/disks/192.168.0.50_NetBackup/Annso/ Then I got a tips from #Squid to do it with a plugin called Userscript. Here what I do: Yes, it work an no need to read the rest below Thank you !!!- [Support] Linuxserver.io - MariaDB
In Unraid no problem with no password but if I put in one in key 3 I got this: # mysql -u root -p Enter password: mypassword ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) # And when try to create a database with root user with no password I get this error: MariaDB [(none)]> CREATE USER 'kodi' IDENTIFIED BY 'kodi'; ERROR 1396 (HY000): Operation CREATE USER failed for 'kodi'@'%'- [Support] Linuxserver.io - MariaDB
Thanks!- [Support] Linuxserver.io - MariaDB
How to connect? Try putty an ip+port but no luck. Look at Video and there was a console window but not in my setup. I'm confuse.- [Support] binhex - rTorrentVPN
Yes, change from Holland to Sweden in /mnt/user/appdata/binhex-rtorrentvpn/openvpn works.- [Support] binhex - rTorrentVPN
Unraid user Is it more people with PIA VPN how not get any WebUi after latest update of this container? If I understand other answer in this thread - it's something wrong with the port forward. Deleted the docker and reinstall but cant get the WebUi .- Folders in Share gone after system freeze
CA Cleanup Appdata plugin and the system freeze. Power of and power on, Parity-Check. started. Then som folders missing. Even folders in folders on my Share. When Parity-Check. done I stop the array and started it. Parity-Check started. Still missing folders. I reboot the machine and still missing folders. System Devices unRaid.txt- [support] dlandon - Zoneminder 1.36
Yes I use dlandon Zoneminder: Tanks, it works, was hide under advance settings. Now the cash disk don't run out of space. Here a video on my success- [support] dlandon - Zoneminder 1.36
Where are the records store? Can I give zm a parth in edit and change to store my record in example Share/ZoneMiner/events/ on my Array? EDIT - /mnt/user/ZoneMinder is a share I create in the Array. But if the records now are store on the array the problem solved- Notification - SMTP Settings
No help here. Try Google with 2 factor and account without. Test Yahoo mail, no luck. Try same settings the abow member has: https://forums.lime-technology.com/applications/core/interface/imageproxy/imageproxy.php?img=http://i.imgur.com/Rj36JEy.png&key=1047afc403d3d37508c696b60debb0343e11912fd0ded00b1738c18fa0142040 Hm, i succes when I change the settings in IE Explorer instead of Google Chrome. In Chrome the new settings with the app password don't have effect. - [Support] binhex - rTorrentVPN