Jump to content

theone

Community Developer
  • Posts

    1,376
  • Joined

  • Last visited

Everything posted by theone

  1. What length of slides do you need. I used some 9.84" rails in my custom case which were quite short http://lime-technology.com/forum/index.php?topic=27485.0 Here is an example of shorter rails - only 6" http://www.ebay.com/itm/6-Long-Soft-Close-Side-Mount-Metal-Ball-Bearing-Drawer-Slides-2pcs-/390854782680?pt=LH_DefaultDomain_0&hash=item5b00c2aed8 Intended for side mounting but I use them for bottom mounting.
  2. I have 3 plugins I wrote that I want to migrate to he new plugin system. You can see the plugins in my signature. What are the requirements and changes needed?
  3. I have installed the ownCloud docker and am able to reach the WEBUI login page. What do I enter in the create account login area? What do I enter in the Storage and Database login area? Do I need to install the MariaDB docker as well?
  4. I found the problem. As you can see in (4) you postedd there are no "new line" which means my "while do" command only does the first and only line existing. I need to figure out how to fix this and fix it !
  5. jonathanm, Can you post the following (in this order) for the "MoveVMs" instance you showed above: 1. Existing vms_session.cfg file content. 2. Output of /opt/VirtualBox/VBoxManage list runningvms from terminal. Press STOP button in VirtualBox Plugin WEBUI 3. Syslog 4. vms_session.cfg file content (again).
  6. I stop all running VMs by doing a SAVESTATE. At the same time I also update the vms_session.cfg file with the save running vms list. # Get running Virtual Machines and save session VBOX_RUNNING_VMS=$(/opt/VirtualBox/VBoxManage list runningvms) # Check if any Virtual Machines are running if [ "$VBOX_RUNNING_VMS" != "" ] ; then # If some Virtual Machines are running save new session - otherwise keep previous session - this is to avoid erasing of session upon unRAID unmounting if VirtualBox has already stopped echo $VBOX_RUNNING_VMS > ${VBOX_PLUGIN_PATH}/vms_session.cfg # Stop and savestate of all running VMs echo $VBOX_RUNNING_VMS | cut -d\" -f2 | while read VM; do logit "Saving state of Virtual Machine: $VM ..." /opt/VirtualBox/VBoxManage controlvm "$VM" savestate done logit "All running Virtual Machines were saved" else logit "No Virtual Machines running - nothing to save" fi The above command command is invoked upon WEBUI stop button: <form name="stop" method="POST" action="/update.htm" target="progressFrame"> <input type="hidden" name="cmd" value="/etc/rc.d/rc.virtualbox stop"> <input type="submit" name="runCmd" value="Stop"> </form> or during array stop automatically: <FILE Name="/usr/local/emhttp/plugins/virtualbox/event/unmounting_disks" Mode="0770"> <INLINE> <![CDATA[ #!/bin/bash /etc/rc.d/rc.virtualbox stop ]]> </INLINE> </FILE>
  7. Please post a screenshot of the WEBUI when you have virtualbox running and some VMs are shown as in session and others aren't but are running.
  8. A list of all running VMs is saved to vms_session.cfg when: Any VM is started Any VM is SAVESTATEd When VirtualBox is stopped via the WEBUI
  9. How are you trying to access it? What address? address is VirtualBox WEBUI should be 127.0.0.1:18083 as you stated. What is the address set-up on your web server?
  10. Under files. Unzip it to your websetver folder.
  11. Download the newer 4.3.1 phpvirtualbox
  12. I have already compiled the version for the new kernel ~1 week ago. Make sure you get it (can be downloaded via the plugin UI).
  13. Did you install a webserver? Did you install phpvirtualbox? They are not part of virtualbox and the plugin but are needed for a UI
  14. 4GB (maxed out my board) Running Windows 7 on Virtualbox
  15. Please add screenshot of second half (bottom) of WEBUI.
  16. Can you post a list of running processes "ps -aux" and screenshot of the Virtualbox plugin WEBUI.
  17. Check and make sure your logfile location exists - as defined in WEBUI.
  18. First show your syslog. Can you restart the server?
  19. The symbolic link is not for that. You should have imported the vms. And yes i think you are screwed unless someone knows how to undelete under linux?
  20. Are there any features you would like added to the plugin?
  21. Doing some plugin optimizations. New plugin version posted 0.5.7 - Reduced plugin load time by reducing network accessing when checking online versions
  22. New plugin versions posted 0.5.5 and 0.5.6: 0.5.6 - Added MD5 checksum verification for all downloaded packages immediately after download - delete download if MD5 cannot be verified or fails verification 0.5.5 - Fixed kernel version number extraction from online package
×
×
  • Create New...