Jump to content

pyrater

Members
  • Posts

    604
  • Joined

  • Last visited

Everything posted by pyrater

  1. Kode any update on this since the release of Sererus?
  2. Gotca this is the final list of parts that i ordered. I will post a full build log with photos. Thank you for the input guys! CASE: NSC-800 MB: ASUS|H87I-PLUS LGA 1150 RAID CARD: SYBA| SI-PEX40057 R SERVER_PSU: ATHENA|AP-U1ATX50 R CPU: INTEL|CORE I7 4770 3.4G 8M R MEM: 4Gx2|TEAM TLAD38G1600HC9DC01 CPU COOLING NOCTUA | NH-L9i
  3. Good advice. But please correct me if I'm wrong any pci X card will work in a 16 slot. The only difference is the number of lanes available to push data. I.E. 1x 2x 4x 8x 16X All work in a 16x slot
  4. http://www.monoprice.com/Product?c_id=104&cp_id=10407&cs_id=1040702&p_id=2667&seq=1&format=2 4 ports assuming just as good? I think this is the one ill pull the trigger on. TY!
  5. thank you for the reply. any suggestions on the raid card? I normally with go with anything i think would work but since this is for a friend i wanted input from other users.
  6. Would love your guys input on this. Going to be running XEN with 1-2 VMs running the following apps: plex, sickbeard, coachpotato, utorrent, and headphones. 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 i5-4330 194.99 http://www.newegg.com/Product/Product.aspx?Item=N82E16819116942 Memory: DDR3 1600 (PC3 12800) 3x4GB = 8GB Total 64.99 http://www.newegg.com/Product/Product.aspx?Item=N82E16820104262 Exp Card: 4 Port SATA Serial ATA PCI RAID Controller Card - Silicon Image8 17.74 http://www.monoprice.com/Product?c_id=104&cp_id=10407&cs_id=1040702&p_id=2667&seq=1&format=2 PWR: Athena Power AP-U1ATX40P8 20+4Pin 400W Single 1U 74.99 http://www.newegg.com/Product/Product.aspx?Item=N82E16817338059 Total: $687.2
  7. You should add the option to have serverus be the zen manager in cerberus =). Keep cerberus the way it is just add a tab for the VM's managed by serverus and themed accordingly.
  8. Kode: Any update on progress? Still shelved due to higher priority?
  9. If you cant figure that part out when i get moved into my new house tommorrow and get my rack set back up ill write it for you in php and post the code here.
  10. what about something to the effect of: <?php $output = shell_exec('cat /etc/network/interfaces'); (i forget the right file its like tx_network or something) ?> But put it in a loop to subtract i from i+1 with a wait of 1 between them so in effect you would get 1990392 kb and 1991000 kb to equal 608 KB/s may be easier to have $output = shell_exec run a .sh script with the output but just thinking of a possible solution with php + bash to avoid addons. Edit: this would be in bytes unless you convert it
  11. I put a call in .bash_profile ie: ./boot/config/plugins/gui.sh which runs at every log in / prompt
  12. who do you need help with i can start pushing it and send you the results. What is htf?
  13. neat gonna have to look into tmux, not sure how/if i will implement it.
  14. of the script? minimal / none? The entire rack is around 300watts
  15. http://unraid.fanart.tv/index3.php is sexy and if ever completed should be the unraid default!
  16. Its running a script i wrote inside .bash_profile see my post here for the code. http://lime-technology.com/forum/index.php?topic=31973.0 I would love to get your input and any additions / changes if you dont mind sharing it.
  17. I like your setup, can you go into detail on your WAP and reverse proxy setup?
  18. Link to gist: https://gist.github.com/Pyrater/9022562
  19. Thank you, working on adding txt message support but the script isnt firing correct. curl http://192.168.2.11:8081 -s -f -m 2 -o /dev/null && sb='\e[42;30mUP\e[0m' || sb='\e[41;30mDN\e[0m' && curl "http://textbelt.com/text" -d number=XXXXXXXXXX -d "message=SickBeard is Down" The problem is that it fires off a text whether Sickbeard is up or down...... the issue is something here || sb='\e[41;30mDN\e[0m' &&. aka If the website is null than change the variable to DN and fire off a text...
  20. Do you know how to have this run and print to the console on boot and whenever i login via telnet? /etc/rc.local isnt there.... Well on login its .bash_profile just need at boot now...
  21. Warning noob stuff contained within. Looking to you guys for input on this, i know the script can be improved upon and was trying to see if i can get some feedback from you guys as to what to change / add etc... Added ability to monitor Plex, Sb, CP, unRAID, Mumble, Minecraft, uTorrent and sends a txt if down. edit .bash_profile to run the following script. Link to gist: https://gist.github.com/Pyrater/9022562 (latest code) #!/bin/bash while : do hdspacetot=$(df -h /mnt/user/ ~ | awk 'NR==2 {print $2}') hdspacefree=$(df -h /mnt/user/ ~ | awk 'NR==2 {print $4}') curl http://192.168.2.4 -s -m 4 -f -o /dev/null && ur='\e[42;30mUP\e[0m' || ur='\e[41;30mUP\e[0m' curl http://192.168.2.11:8080/gui -s -m 2 -f -o /dev/null && ut='\e[42;30mUP\e[0m' || ut='\e[41;30mDN\e[0m' curl http://192.168.2.11:8081 -s -f -m 2 -o /dev/null && sb='\e[42;30mUP\e[0m' || sb='\e[41;30mDN\e[0m' curl http://192.168.2.11:8082 -s -f -m 2 -o /dev/null && ch='\e[42;30mUP\e[0m' || ch='\e[41;30mDN\e[0m' curl http://192.168.2.12:32400/web -s -f -m 2 -o /dev/null && px='\e[42;30mUP\e[0m' || px='\e[41;30mDN\e[0m' curl http://192.168.2.12:32400/web -s -f -m 2 -o /dev/null && px='\e[42;30mUP\e[0m' || px='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.12/64738 && mb='\e[42;30mUP\e[0m' || mb='\e[41;30mDN\e[0m' exec 6<>/dev/tcp/192.168.2.105/25565 && mc='\e[42;30mUP\e[0m' || mc='\e[41;30mDN\e[0m' 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 / 2698 MEM | | unRAID: $ur | =" echo -e "= | Arch vCPU 2 / 2045 MEM | | Plex: $px | =" echo -e "= | Windows7 vCPU 8 / 3072 MEM | | SickBeard: $sb | =" echo -e "= *------------------------------* | CouchPotato: $ch | =" echo -e "= | uTorrent: $ut | =" echo -e "= Raid Space | Mumble $mb | =" echo -e "= *------------------------------* | MC Server $mc | =" echo -e "= | $hdspacefree TB Free / $hdspacetot TB Total | *-------------------* =" echo -e "= *------------------------------* =" echo -e "= =" echo -e "= IP 192.168.2.4 / 255.255.255.0 / 192.168.2.1 =" echo -e "+==============================================================================+" sleep 60 done # add temp? CPU type info? unraid Version?
×
×
  • Create New...