jangjong

Members
  • Posts

    365
  • Joined

  • Last visited

Everything posted by jangjong

  1. You might want to take a look at this. http://lime-technology.com/wiki/index.php/FAQ#What_is_the_difference_between_the_unRAID_licenses.3F Do you have the free license? Free license only let you use 3 disks total.
  2. Ah ha! Good.. Well I don't really need this vbox anymore anyway lol moved to an esxi box..
  3. AND another thing to think about is.. does 64 bit OS work on this vbox package? unRAID is 32 bit machine... I don't know too much about linux system so i can't say for sure, but is it possible to run 64bit Guest OS under 32 bit Host OS?
  4. A strong single rail PSU on sale... This is the best price I've seen for this PSU.. Today only. http://www.newegg.com/Product/Product.aspx?Item=N82E16817151087 $45 off w/ promo code EMCYTZT2857
  5. SO I looked back at a few of your prior posts and actually learned (somewhat) what this does. Since I just copied this: # User customizations # Add your own settings here. These won't get overwritten upon reboot # $SERVER["socket"] == "192.168.1.3:8333" { server.document-root = "/mnt/cache/www/phpvirtualbox-4.2-4/"} To my lightpd file and saved it I noticed that since my web root dir is currently /mnt/cache/appdata/webroot/main that it why I got the 404 error as the lightpd file is looking for it at /mnt/cache/www/phpvirtualbox-4.2-4/. So I changed the lightpd file to match the web root dir that you had me change it to earlier and now I am looking at the login prompt for the phpVB. Finally got it working! Thank you very much for all your help on this one, and to lainie as well for putting it all together and hosting the site. Hopefully other nOOB's like me will benefit from my issues and get it working. oh oops, i had that wrong lighttpd.cfg.. lol sorry about that. shouldn't be /mnt/cache/www.... well anyway, glad you got it to work!
  6. Did you follow every steps I listed? Creating a main folder, changing the web root directory and changing the port on webserver config? Is the port number 85 getting used by anything ? or is the port number 8333 getting used by anything? We don't need to worry about that log. That log is not relevant the webserver won't start if there is a conflicting port number. the webserver also won't start if the web root directory you have set is invalid. before we do anything with virtualbox, we need to figure out what the problem is with the webserver.. So. First of all, delete all settings in lighttpd.cfg (Located at /boot/config/plugins/simpleFeatures). DO NOT DELETE THE FILE. just make it an empty file. then start the server. Does the server start? If it doesn't, then you have some wrong setting in the web server setting. a listening port number that is getting used by some other web app, or incorrect web root directory in this case, make sure you don't have any typo for for the web root directory setting, and make sure that path exist. if the path looks correct, try changing ports to see if you can start the server. DO NOT USE 81 OR 8333. These will get used by newznab and phpvirtualbox. if it does start, there must be something wrong with lighttpd.cfg in this case..take a screen shot of the web server setting in web gui so i know exact setting you have. now. try use this for your lighttpd.cfg: # User customizations # Add your own settings here. These won't get overwritten upon reboot # $SERVER["socket"] == "192.168.1.3:8333" { server.document-root = "/mnt/cache/www/phpvirtualbox-4.2-4/" } if this starts, then it must mean that you didnt change the port number in the webserver setting and still have it as 81 If this doesn't start..make sure this path (/mnt/cache/www/phpvirtualbox-4.2-4/) is valid. phpvirtualbox-4.2-4 must be a folder, not the zip file. it has to be the content of what you extracted from phpvirtualbox-4.2-4.zip also look at lighttpd.cfg. You will see this line $SERVER["socket"] == "192.168.1.3:8333" { change that 8333 to some other number (random number like 28437) Also, please make sure you can access unraid with http://192.168.1.3.. When we got everything working and find out what was wrong, then I can try to explain what lighttpd.cfg is doing you will learn better that way
  7. Okay.. try to follow this step: [*]Move /config/plugins/phpvirtualbox-4.2-4 to /mnt/cache/appdata/webroot/ so it will be /mnt/cache/appdata/webroot/phpvirtualbox-4.2-4 [*]Create a folder called 'main' in webroot so it will be /mnt/cache/appdata/webroot/main [*]Open up the setting page for Simplefeature Webserver [*]Change Web root directory to /mnt/cache/appdata/webroot/main [*]Change Listening port to 85 [*] Use this for your lighttpd.cfg # User customizations # Add your own settings here. These won't get overwritten upon reboot ## Abdd your own settings here. These won't get overwritten upon reboot # $SERVER["socket"] == "192.168.1.3:81" { server.document-root = "/mnt/cache/appdata/webroot/newznab/www/" url.rewrite-once = ( "^/.*\.(css|jpg|jpeg|gif|png|js|ico)" => "$0", "^/(admin|install).*$" => "$0", "^/([^/\.]+)/?(?:\?(.*))$" => "index.php?page=$1&$2", "^/([^/\.]+)/?$" => "index.php?page=$1", "^/([^/\.]+)/([^/]+)/?(?:\?(.*))$" => "index.php?page=$1&id=$2&$3", "^/([^/\.]+)/([^/]+)/?$" => "index.php?page=$1&id=$2", "^/([^/\.]+)/([^/]+)/([^/]+)/?$" => "index.php?page=$1&id=$2&subpage=$3" ) } $SERVER["socket"] == "192.168.1.3:8333" { server.document-root = "/mnt/cache/appdata/webroot/phpvirtualbox-4.2-4/" } This should enable you to have your newznab at http://192.168.1.3:81 and phpvirtualbox at http://192.168.1.3:8333 If you want to use a different port other than 8333, just change it in the lighttpd.cfg file. It's simple as that. but we are NOT DONE yet. It is VERY IMPORTANT that you follow these steps to install and set up VirtualBox. It won't work correctly if you don't run these commands in this order: [*]installpkg vbox-4.2.6-unRAID-3.4.24.tgz [*]VBoxManage setproperty websrvauthlibrary null [*]vboxwebsrv -b -H 192.168.1.3 --logfile /var/log/vbox.log [*]VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.2.6-82870.vbox-extpack After you have done above, navigate to /mnt/cache/appdata/webroot/phpvirtualbox-4.2-4 If you haven't already, change config.php-example to config.php.. Open up config.php Find this line: var $location = 'http://127.0.0.1:18083/'; Change it to this var $location = 'http://192.168.1.3:18083/'; NOW, you should be all done. open up http://192.168.1.3:8333 The default username is admin, and the password is admin If you want to skip this authentication, find this line in config.php #var $noAuth = true; remove # (uncomment it), it will look like this: var $noAuth = true; This will skip the authentication process Let me know how this works out for you
  8. Okay, to help you out i will need these from you: [*]Path of where Newznab is located [*]Path of where phpvirtualbox is located [*]Your local IP address of your unraid machine [*]Your "Web root directory:" path under the web sever setting in WebGUI [*]Your "Listening port:" setting under the web sever setting in WebGUI I can help you write lighttpd.cfg if you need. You weren't supposed to copy exactly what i have. You were supposed to use my lighttd.cfg as a guide line.
  9. have a question about this.. How does 'VMWare tools' benefit unRAID? I have a separate NIC that is getting pass through unRAID VM.. and all my hdd's are connected to the MV8 card which is also using hardware pass through. So those main things aren't virtualized so im wondering what would be the benefit of installing VMWare tools for the situation I am in.
  10. [*]poweroff unraid machine [*]remove the flash drive and plug it in to another machine [*]move plg files to another location.. I recommend removing couchpotato specifically for now. Just the plg file. The new update that automatically got installed broke couchpotato. Edit: I meant the new update for couchpotato that automatically got installed broke couch potato.. actually known issue http://lime-technology.com/forum/index.php?topic=21260.msg221953#msg221953
  11. Oh.. and another thing i want to mention.. if you've read my post before in this thread, i found a problem where vboxwebsrv -b -H 192.168.0.199 --logfile /dev/null >/dev/null This line of the command causes the permission for "/dev/null" to be changed.. and this cause some other plug-ins to function incorrectly. so instead of setting the logfile to /dev/null, I recommend creating a folder somewhere.. make a folder like /mnt/cache/vbox/log or something. Then run it like this.. vboxwebsrv -b -H 192.168.0.199 --logfile /mnt/cache/vbox/log >/dev/null
  12. Just to make sure you're doing it in correct order.. [*]installpkg vbox-4.2.6-unRAID-3.4.24.tgz [*]VBoxManage setproperty websrvauthlibrary null [*]vboxwebsrv -b -H 192.168.0.199 --logfile /dev/null >/dev/null [*]VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.2.6-82870.vbox-extpack You need to set websrvauthlibrary to null BEFORE you run vboxwebsrv.. If you set it after you ran vboxwebsrv command, you need to kill the process and rerun it. OH and the default log in for phpvirtualbox is "admin/admin", not the one shown in the config file. That's actually for the local user that is running vboxwebsrv... which we don't need since we are setting that authentication to null
  13. oh hello. so many people are using my lighttpd.cfg lol peter_sm, First of all, you DON'T NEED this line for every sockets: url.rewrite-once = ( "^/api\?(.*)" => "/index.php?page=newznabapi&$1" ) It's only required for spotweb, so you can remove that line from other sockets except for spotweb. Now.. Instead of running vboxwebsrv -b -H 127.0.0.1 --logfile /dev/null >/dev/null I recommend running vboxwebsrv -b -H 192.168.0.199 --logfile /dev/null >/dev/null For you. so instead of 127.0.0.1, it will have the ip address of your unraid machine. AND, here is the important part. Navigate to /mnt/cache/www/phpvirtualbox-4.2-4/ If you haven't already, change config.php-example to config.php.. open up config.php, Change var $location = 'http://127.0.0.1:18083/'; this line to var $location = 'http://192.168.0.199:18083/'; Also, I know lainie mentioned in the instruction not to do this yet.. but I did it anyway just to by pass it. Uncomment this line from config.php var $noAuth = true; This should bypass the authentication.. Sometime I was actually having a problem with logging in to phpvirtualbox itself, so this helped me to just pass that problem. Then access phpvirtualbox with "http://192.168.0.199:8091" instead of "http://Tower:8091" Let me know how this works.
  14. Oh I'm not saying it's bad lol. I use it all the time too. It's just that I haven't been able to get it to work with Sickbeard. It'll say it found a show from SpotWeb, but the nzb won't be added to sabnzbd for some reason. but then SpotWeb to sabnzbd worked fine from SpotWeb interface... I didn't look too close to it since i have another nzb indexer.
  15. Many of us have.. but it doesnt work too well with sickbeard/couchpotato for some refer to this thread: http://lime-technology.com/forum/index.php?topic=24804.0
  16. The coupon is still there to be printed. (as of this posting) -- Coupon has 1/27 expiration on it. But yea, your link shows lots of problems with the promo... shall see. Yea.. i've been following that thread since yesterday. what's going on is that they say they apparently made a mistake, and the coupon is supposed to be only good for one day (1/21/2013). and the manager would bring out the actual coupon that says 1/21/2013 only and scan them. but then i didnt try it out myself so who am i to say anything haha.
  17. I don't know about this deal. I hear it was only for one day. Probably made it just one day because best buy was losing too much money. http://slickdeals.net/f/5810572-Best-Buy-Coupon-50-off-100-In-Store-Purchases-via-Printable-Coupon-MasterCard-Required
  18. I think this case gets used a lot for building a small unraid server.. Anyway, this is the cheapest I've seen for this case.. so here it is. LIAN LI PC-Q25B Code: EMCXWVV34 $79.99 After $20.00 MIR http://www.newegg.com/Product/Product.aspx?Item=N82E16811112339
  19. http://www.newegg.com/Product/Product.aspx?Item=N82E16811112339 Today's your lucky day. $79.99 After $20.00 MIR
  20. WeeboTech, That command has been mentioned already: http://lime-technology.com/forum/index.php?topic=22675.msg213845#msg213845 Also, there is still write speed issue even with that command. see this post: http://lime-technology.com/forum/index.php?topic=22675.msg219647#msg219647 The problem is that even with that, if you were copying a large file (say 10GB fille) over the network, it seems to work okay for first few gigs, then the problem comes back. The real fix we are trying to say is.. the parameter (I think something like mem=4095). it's the one you mentioned earlier thread. This seems like more of a 'solid fix'
  21. You should take a look at this thread http://lime-technology.com/forum/index.php?topic=22675.0 How much ram you have? People with more than 4GB ram have been getting real slow writes
  22. http://www.amazon.com/WD-Red-NAS-Hard-Drive/dp/B008JJLW4M/ Amazon price matched it.
  23. does anyone read my posts? look at my board.. it's some cheap intel board.. and i have this problem too well fixed it by using my old 4gb ram.. but still i really don't think it's specific to the board or the processor.