Everything posted by theone
-
Project unRAIDIO
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.
-
How does the plugin system work? Documentation Added - WIP
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?
-
VirtualBox Plugin for unRAID v5 and v6
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 !
-
VirtualBox Plugin for unRAID v5 and v6
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).
-
VirtualBox Plugin for unRAID v5 and v6
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>
-
VirtualBox Plugin for unRAID v5 and v6
Simplefeatures
-
VirtualBox Plugin for unRAID v5 and v6
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.
-
VirtualBox Plugin for unRAID v5 and v6
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
-
VirtualBox Plugin for unRAID v5 and v6
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?
-
VirtualBox Plugin for unRAID v5 and v6
Under files. Unzip it to your websetver folder.
-
VirtualBox Plugin for unRAID v5 and v6
Download the newer 4.3.1 phpvirtualbox
-
VirtualBox Plugin for unRAID v5 and v6
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).
-
VirtualBox Plugin for unRAID v5 and v6
Think you left out the NOT. Correct
-
VirtualBox Plugin for unRAID v5 and v6
Did you install a webserver? Did you install phpvirtualbox? They are not part of virtualbox and the plugin but are needed for a UI
-
How much RAM do you have installed in your unRAID server?
4GB (maxed out my board) Running Windows 7 on Virtualbox
-
VirtualBox Plugin for unRAID v5 and v6
Please add screenshot of second half (bottom) of WEBUI.
-
VirtualBox Plugin for unRAID v5 and v6
Can you post a list of running processes "ps -aux" and screenshot of the Virtualbox plugin WEBUI.
-
VirtualBox Plugin for unRAID v5 and v6
Check and make sure your logfile location exists - as defined in WEBUI.
-
VirtualBox Plugin for unRAID v5 and v6
First show your syslog. Can you restart the server?
-
VirtualBox Plugin for unRAID v5 and v6
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?
-
VirtualBox Plugin for unRAID v5 and v6
NOT ;D
-
VirtualBox Plugin for unRAID v5 and v6
Are there any features you would like added to the plugin?
-
VirtualBox Plugin for unRAID v5 and v6
Doing some plugin optimizations. New plugin version posted 0.5.7 - Reduced plugin load time by reducing network accessing when checking online versions
-
VirtualBox Plugin for unRAID v5 and v6
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
-
VirtualBox Plugin for unRAID v5 and v6
New plugin version posted 0.5.4: - Changed unRAID compiled VirtualBox version availability and presentation in WEBUI (compatible and latest) - Changed timeout to 10 seconds (instead of 60) - Added plugin forum link to WEBUI - Automatic support for 32/64bit packages depending on OS Updated OP and screenshot