Jump to content

pyrater

Members
  • Posts

    604
  • Joined

  • Last visited

Everything posted by pyrater

  1. Roger, no issues Beta 4 works fine for me ATM so ill use that and try next release =)
  2. FYI two issues with beta6 no logs, rolling back to beta4. 1. Both my VM's would boot fine then after about 5 minutes they would drop inet connections. 2. When doing a shutdown on my VM's they hang at a black screen in TightVNC and XL List outputs: root@Icarus:~# xl list Name ID Mem VCPUs State Time(s) Domain-0 0 1921 1 r----- 739.8 (null) 1 0 1 --ps-d 26.7 (null) 2 0 3 --p--d 1464.7 (null) 3 0 7 --p--d 488.8 root@Icarus:~# xl destroy 1 libxl: error: libxl_dm.c:1467:kill_device_model: unable to find device model pid in /local/domain/1/image/device-model-pid libxl: error: libxl.c:1421:libxl__destroy_domid: libxl__destroy_device_model fai led for 1 root@Icarus:~# xl destroy 3 libxl: error: libxl_device.c:934:device_backend_callback: unable to remove devic e with path /local/domain/0/backend/vif/3/0 libxl: error: libxl.c:1457:devices_destroy_cb: libxl__devices_destroy failed for 3 During server unmount the console outputs a ton of "vif vif-1-0-vif1.0: draining TX queue" and hangs not looking for a "fix" just a heads up to others if they have a problem like mine.
  3. Yes that answered my question thank you. It really boils down to PIA VPN app with the kill switch so i can run utorrent without worrying about complex IP rules or the VPN dropping off. Just easier to toss it in a windows VM (and keep the encrypted traffic separate) and go. AKA 6.0 and future will have both DOCKER and XEN or KVM Thanks for the reply.
  4. Thank you for the massive upgrade, one question ( if this has been addressed before please let me know) With the current release it feels as if docker is being pushed on us, which is fine docker is great. However, the question i have is going forward is will we continue to have xen support as i feel docker and xen are in essence paralleling the same solution. IE I prefer zen and do not want to use docker, is the road map to phase in docker and out xen?
  5. Heres mine Sync Seedbox #!/bin/bash login=xxxxxxx pass=xxxxxx host=xxxxxx remote_dir=/torrents/hardlinked local_dir=/mnt/user/Data/Misc/Downloading/Downloaded trap "rm -f /tmp/synctorrent.lock" SIGINT SIGTERM if [ -e /tmp/synctorrent.lock ] then echo "Synctorrent is running already." exit 1 else touch /tmp/synctorrent.lock lftp << EOF set ftp:ssl-protect-data yes set ftp:ssl-protect-list yes set mirror:use-pget-n 2 lftp -u $login,$pass $host mirror -c -P5 --Remove-source-files $remote_dir $local_dir quit EOF rm -f /tmp/synctorrent.lock chown -hR nobody /mnt/user/Data/Misc/Downloading/Downloaded/* chmod -R 777 /mnt/user/Data/Misc/Downloading/Downloaded/* /boot/extra/Scripts/unrarall -s --clean=all /mnt/user/Data/Misc/Downloading/Downloaded/ exit 0 fi sort.sh #!/bin/bash chown -hR nobody /mnt/user/Data/Misc/Downloading/Downloaded/* chmod -R 777 /mnt/user/Data/Misc/Downloading/Downloaded/* /boot/config/plugins/Scripts/unrarall -s --clean=all /mnt/user/Data/Misc/Downloading/Downloaded/ tgui.sh #!/bin/bash nospamphone=0 while : do pnumber=$"1111111111" time=$(date +"%m-%d-%y %I:%M") hdspacetot=$(df -h /mnt/user/ ~ | awk 'NR==2 {print $2}') hdspacefree=$(df -h /mnt/user/ ~ | awk 'NR==2 {print $4}') uptime=$((w ~ | awk 'NR==1 {print $3}') | cut -d "," -f 1) exec 6<>/dev/tcp/192.168.2.4/80 && ur='\e[42;30mUP\e[0m' || ur='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.11/8080 && ut='\e[42;30mUP\e[0m' || ut='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.11/8081 && sb='\e[42;30mUP\e[0m' || sb='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.11/8082 && ch='\e[42;30mUP\e[0m' || ch='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.12/32400 && px='\e[42;30mUP\e[0m' || px='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.14/64738 && mb='\e[42;30mUP\e[0m' || mb='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.14/25565 && mc='\e[42;30mUP\e[0m' || mc='\e[41;30mDN\e[0m' # mc='\e[41;30mOF\e[0m' exec 6<>/dev/tcp/192.168.2.13/80 && ws='\e[42;30mUP\e[0m' || ws='\e[41;30mDN\e[0m' cleanur=$(echo $ur | sed 's/^.........\(.*\).....$/\1/') cleanut=$(echo $ut | sed 's/^.........\(.*\).....$/\1/') cleansb=$(echo $sb | sed 's/^.........\(.*\).....$/\1/') cleanch=$(echo $ch | sed 's/^.........\(.*\).....$/\1/') cleanpx=$(echo $px | sed 's/^.........\(.*\).....$/\1/') cleanmb=$(echo $mb | sed 's/^.........\(.*\).....$/\1/') cleanmc=$(echo $mc | sed 's/^.........\(.*\).....$/\1/') cleanws=$(echo $ws | sed 's/^.........\(.*\).....$/\1/') if [ $ur = "\e[41;30mDN\e[0m" ] || [ $ut = "\e[41;30mDN\e[0m" ] || [ $sb = "\e[41;30mDN\e[0m" ] || [ $ch = "\e[41;30mDN\e[0m" ] || [ $px = "\e[41;30mDN\e[0m" ] || [ $mb = "\e[41;30mDN\e[0m" ] || [ $mc = "\e[41;30mDN\e[0m" ] || [ $ws = "\e[41;30mDN\e[0m" ] && [ $nospamphone -lt "1" ]; then nospamphone=$(($nospamphone + 1)) && curl "http://textbelt.com/text" -d number=$pnumber -d "message=Server Status Update \ unRAID=$cleanur ~~ uTorrent=$cleanut SickBeard=$cleansb ~~ CouchPotato=$cleanch Plex=$cleanpx ~~ Mumble=$cleanmb MineCraft=$cleanmc ~~ WebServer=$cleanws" echo "i sent one" sleep 5 fi if [ $ur = "\e[42;30mUP\e[0m" ] && [ $ut = "\e[42;30mUP\e[0m" ] && [ $sb = "\e[42;30mUP\e[0m" ] && [ $ch = "\e[42;30mUP\e[0m" ] && [ $px = "\e[42;30mUP\e[0m" ] && [ $mb = "\e[42;30mUP\e[0m" ] && [ $mc = "\e[42;30mUP\e[0m" ] && [ $ws = "\e[42;30mUP\e[0m" ] && [ $nospamphone -gt "0" ]; then nospamphone=0 && curl "http://textbelt.com/text" -d number=$pnumber -d "message=Server Status Update \ Back Online and Operational" fi clear echo -e "+==============================================================================+" echo -e "= =" echo -e "= \e[1;34m:\e[0m\e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;31m=====\e[0m \e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;37m:\e[0m\e[1;31m====\e[0m \e[1;34m:\e[0m\e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;31m====\e[0m \e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;37m:\e[0m\e[1;31m====\e[0m \e[1;34m:\e[0m\e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;31m===\e[0m =" echo -e "= \e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;37m:\e[0m \e[1;34m:\e[0m\e[1;37m:\e[1;34m:\e[0m \e[1;37m===\e[0m \e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;37m:\e[0m \e[1;37m===\e[0m \e[1;34m:\e[0m\e[1;37m:\e[0m\e[1;34m:\e[0m \e[1;37m===\e[0m \e[1;37m:\e[0m\e[1;34m:\e[0m\e[1;37m:\e[0m =" echo -e "= \e[1;31m=== === === ======= ======= =====\e[0m =" echo -e "= \e[1;37m=== === === === === === ===\e[0m =" echo -e "= \e[1;31m=======\e[0m \e[1;32m=\e[0m \e[1;31m======\e[0m \e[1;32m=\e[0m \e[1;31m=== ===\e[0m \e[1;32m=\e[0m \e[1;31m===\e[0m \e[1;32m=\e[0m \e[1;31m======\e[0m =" echo -e "= =" echo -e "= Combined Operations in Rack Portable Storage =" echo -e "= =" echo -e "= VM Resource Pool Application Status =" echo -e "= *------------------------------* *-------------------* =" echo -e "= | unRaid vCPU 1 / 1810 MEM | | unRAID: $ur | =" echo -e "= | Windows8_R vCPU 7 / 2045 MEM | | Plex: $px | =" echo -e "= | Windows8_G vCPU 3 / 3072 MEM | | SickBeard: $sb | =" echo -e "= | Tkey vCPU 1 / 768 MEM | | CouchPotato: $ch | =" echo -e "= *------------------------------* | uTorrent: $ut | =" echo -e "= Raid Space | Mumble $mb | =" echo -e "= *------------------------------* | MC Server $mc | =" echo -e "= | $hdspacefree Free / $hdspacetot Total | | WebServer $ws | =" echo -e "= *------------------------------* *-------------------* =" echo -e "= $time =" echo -e "= IP 192.168.2.4 / 255.255.255.0 / 192.168.2.1 uptime: $uptime Day(s) =" echo -e "+==============================================================================+" sleep 60 done
  6. haha I see drnackers and i used a very similar setup, though his only needs one script so i would use his to keep it simple.
  7. Heres how i did mine and automated it. On your unraid box add the following scripts "putfileswatched.sh" (add this to a cron 1 per hr) This uploads all of the .torrent files on your unraid machine to the seedbox. #!/bin/bash login=pyrater pass=****** host=*********** remote_dir=/torrents/watch local_dir=/mnt/user/Data/Misc/Downloading/Blackhole trap "rm -f /tmp/syncwatched.lock" SIGINT SIGTERM if [ -e /tmp/syncwatched.lock ] then echo "syncwatched is running already." exit 1 else touch /tmp/syncwatched.lock lftp << EOF set ftp:ssl-protect-data yes set ftp:ssl-protect-list yes set mirror:use-pget-n 2 lftp -u $login,$pass $host mirror -c -P5 --Remove-source-files $remote_dir $local_dir quit EOF rm -f /tmp/syncwatched.lock rm -f /mnt/user/Data/Misc/Downloading/Blackhole/*.torrent exit 0 fi synctorrents.sh - this downloads all of the completed torrents from your seedbox. (using Deluge hardlinked for completed downloads) #!/bin/bash login=pyrater pass=******* host=******* remote_dir=/torrents/hardlinked local_dir=/mnt/user/Data/Misc/Downloading/Downloaded trap "rm -f /tmp/synctorrent.lock" SIGINT SIGTERM if [ -e /tmp/synctorrent.lock ] then echo "Synctorrent is running already." exit 1 else touch /tmp/synctorrent.lock lftp << EOF set ftp:ssl-protect-data yes set ftp:ssl-protect-list yes set mirror:use-pget-n 2 lftp -u $login,$pass $host mirror -c -P5 --Remove-source-files $remote_dir $local_dir quit EOF rm -f /tmp/synctorrent.lock chown -hR nobody /mnt/user/Data/Misc/Downloading/Downloaded/* chmod -R 777 /mnt/user/Data/Misc/Downloading/Downloaded/* /boot/extra/Scripts/unrarall -s --clean=all /mnt/user/Data/Misc/Downloading/Downloaded/ exit 0 fi End result = A copy of the media at both locations, one for you on your unraid machine for viewing, one on your seedbox for seeding. unrarall.zip
  8. Significantly lower temps than my other server (Supermicro SC486). These temps are from being under heavy load for 5+hours (copying 2+ TB from one server to the other while running all my VM's to include plex) Link: http://i.imgur.com/ectGUYA.png
  9. Im using the stock fans in this build the CPU is using the Noctua NH-L9i 95mm mostly for the size.
  10. awesome ty i will be using your reverse proxy script =)
  11. Anyone have advice on how to get Arch to show up on windows networks IE. Windows explorer -> Network -> ArchVM
  12. Case: U-NAS NSC-800 225.00 http://www.u-nas.com/xcart/product.php?productid=17617 MB: ASUS H87I-PLUS LGA 1150 109.49 http://www.newegg.com/Product/Product.aspx?Item=N82E16813132032 CPU: Intel Core i7-4770 Haswell 3.4GHz LGA 309.99 http://www.newegg.com/Product/Product.aspx?Item=N82E16819116900 CPU Cooler: Noctua NH-L9i 95mm SSO2 39.99 http://www.newegg.com/Product/Product.aspx?Item=N82E16835608029 Memory: Team Vulcan 8GB (2 x 4GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) 64.99 http://www.newegg.com/Product/Product.aspx?Item=N82E16820313344 Exp Card: SYBA SI-PEX40057 PCI-Express 2.0 x2 Low Profile SATA III (6.0Gb/s) 4-ports RAID Card 17.74 http://www.newegg.com/Product/Product.aspx?Item=N82E16816124060 PWR: Athena Power AP-U1ATX50 20+4Pin 500W Single 1U EPS 94.99 http://www.newegg.com/Product/Product.aspx?Item=N82E16817338054 Harddrives: 3TB - TOSHIBA_DT01ACA300_13B3RP8AS (sdg) 2930266532 3TB - ST3000DM001-1CH166_W1F435F9 (sdc) 2930266532 3TB - ST3000DM001-1CH166_Z1F3ZL6P (sdb) 2930266532 1TB - ST31000528AS_5VP771WL (sdd) 976762552 2TB - ST2000DL001-9VT156_5YD0KZ47 (sde) 1953514584 3TB - WDC_WD30EZRX-00DC0B0_WD-WCC1T0791103 (sdf) 2930266584 15TB Total Build Notes: This power supply is a TIGHT FIT! The default connectors that come with the case ate 4 SATA to 1 SAS. Which can be replaced by standard sata cables. Highly Recommend putting grills on the fans inside to prevent cables from hitting the fans. Recommend going with the noctua fan for this case!!! Pic album:
  13. Assuming that the answer to Eroz's question is 'yes', then it may be that you're suffering with the problem of .plg files loading before the network is up. Try installing your plugins with the installplg command - after that they should auto-start at boot time. I do each time which worked for VFS_recycle but snap does not want to auto load...
  14. just installed B4 today, any reason the plg files dont auto start in the directory /boot/config/plugins/
  15. 503 Service Unavailable No server is available to handle this request.
  16. Correct me if I'm wrong but isn't pre clear a add on and not a requirement? If it was a requirement it would be in the base install?
  17. With the release of 6.0 I no longer use this setup. I have utorrent running on a windows cm and using the private Internet access kills witch vpn software.
×
×
  • Create New...