leeism

Members
  • Posts

    65
  • Joined

  • Last visited

Everything posted by leeism

  1. Ok Downloading Xubuntu now, will check it out. Cant remember the exact issue I had with Lubuntu, will see how Xubuntu goes and if I prefer Lubunutu I will give that a shot again! I am running on a HP Micorserver N36L so I wanted a low resourse OS. Thanks for your help, appreciated.
  2. Did try Lubuntu but I was having some sort of issue with that, will give it another shot. Is Xubuntu any good?
  3. ahh ok, now I come to think of it I did read through some of this thread a while back, should have realised. Sorry Now to find another solution!
  4. Hi All I currently have phpvirtualbox running with the dyanmix webserver plugin but I cannot install Linux Mint as it requires "3D acceleration enabled" to be turned on, unfortunately phpvirtualbox doesnt have this option. I was hoping someone could tell me if lunux mint 16 will run within VMware on my unraid 5.0? If so is it as simple as droping the plugin in the folder and installing it? Obviously then I would need to setup a VM for Linux Mint. Thanks all
  5. Great thanks I will do Got one other question for you, I have downloaded guest additions through the plugin but I seem to having issues with the resolution on the Lubuntu VM I have. I am wondering if I need to install guest additions for this specific VM, are you able to tell me how to do this? Thanks Lee
  6. Ihave played around a little more and with your help I have managed to get it sorted! Thanks ijuarez!
  7. Ok, so now I have moved the vboxwebsrv log file to mnt/config/plugins/virtualbox and also moved the symbolic link to /mnt/cache/vbox and that folder now has files in it which it didnt before on my cache drive But I still have the screen I attached a few posts ago. Going to try a restart
  8. So you are saying the vboxwebsrv log file needs to be on the flash drive? Doesnt that get written to all of the time?
  9. Cleared my cache virtualbox config as below: # VirtualBox plugin configuration INSTALL_ON_BOOT="true" UPGRADE_ON_BOOT="false" UPGRADE_PLG_ON_BOOT="false" START_ON_ARRAY_MOUNT="true" START_VMS_ON_START="false" VBOX_SYMLINK_LOCATION="mnt/cache/appdata/virtualbox/vbox" VBOXWEBSRV_HOST_IP="127.0.0.1" VBOXWEBSRV_HOST_PORT="18083" VBOXWEBSRV_LOGFILE="mnt/cache/appdata/virtualbox/vboxwebsrv.log" VBOXWEBSRV_VERBOSE="true" VBOXWEBSRV_LOGROTATE="0" VBOXWEBSRV_LOGSIZE="50000" VBOXWEBSRV_LOGINTERVAL="604800" Is that what you are looking for? In the mnt/cache/appdata/virtualbox/vbox there is no files at all, is that normal?
  10. Thanks for that, allowed SOAP.so and still the same screen as above. Restarted vbox and the webserver same issue. Driving me insane, anything else you can think of?
  11. I have attached a screenshot of what I see when I try access
  12. cool ok will check that out. Below is my config.php. My unraid server has the ip of 192.168.1.33. I seem to get a screen now with a couple of bars across it but not writing on it what so ever. <?php /** * phpVirtualBox example configuration. * @version $Id: config.php-example 452 2012-10-17 12:22:12Z [email protected] $ * * rename to config.php and edit as needed. * */ class phpVBoxConfig { /* Username / Password for system user that runs VirtualBox */ var $username = 'vbox'; var $password = 'pass'; /* SOAP URL of vboxwebsrv (not phpVirtualBox's URL) */ var $location = 'http://192.168.1.33:18083/'; /* Default language. See languages folder for more language options. * Can also be changed in File -> Preferences -> Language in * phpVirtualBox. */ var $language = 'en'; /* Set the standard VRDE Port Number / Range, e.g. 1010-1020 or 1027 */ var $vrdeports = '9000-9100'; /* * * Not-so-common options / tweaking * */ // Multiple servers example config. Uncomment (remove /* and */) to use. // Add ALL the servers you want to use. Even if you have the server set // above. The default server will be the first one in the list. /* var $servers = array( array( 'name' => 'London', 'username' => 'user', 'password' => 'pass', 'location' => 'http://192.168.1.1:18083/', 'authMaster' => true // Use this server for authentication ), array( 'name' => 'New York', 'username' => 'user2', 'password' => 'pass2', 'location' => 'http://192.168.1.2:18083/' ), ); */ // Disable authentication var $noAuth = true; // Host / ip to use for console connections var $consoleHost = '192.168.1.33’; // Disable "preview" box #var $noPreview = true; // Default preview box update interval in seconds #var $previewUpdateInterval = 30; // Preview box pixel width #var $previewWidth = 180; // Max number of progress operations to keep in list var $maxProgressList = 5; // Change default preview aspect ratio to 1. // http://www.wikipedia.org/wiki/Aspect_ratio_%28image%29#Previous_and_presently_used_aspect_ratios #var $previewAspectRatio = 1.6; // Enable custom VM icons #var $enableCustomIcons = true; /* Exclusively use phpVirtualBox's groups configuration rather than VirtualBox groups. This has the following effects: *) Group changes made in phpVirtualBox will not be reflected in VirtualBox programs such as VirtualBox and VBoxManage *) Group changes will not affect which folder a VM is placed in *) You can rename groups that contain running VMs and move / copy running VMs to groups */ #var $phpVboxGroups = true; /* Allow to prompt deletion hard disk files on removal from Virtual Media Manager. If this is not set, files are always kept. If this is set, you will be PROMPTED to decide whether or not you would like to delete the hard disk file(s) when you remove a hard disk from virtual media manager. You may still choose not to delete the file when prompted. */ var $deleteOnRemove = true; /* * File / Folder browser settings */ // Restrict file types var $browserRestrictFiles = array('.iso','.vdi','.vmdk','.img','.bin','.vhd','.hdd','.ovf','.ova','.xml','.vbox','.cdr','.dmg','.ima','.dsk','.vfd'); // Restrict locations / folders #var $browserRestrictFolders = array('D:\\','C:\\Users\\Ian'); // Or something like array('/home/vbox','/var/ISOs') // Force use of local, web server based file browser instead of going through vboxwebsrv #var $browserLocal = true; // Disable file / folder browser. #var $browserDisable = true; // Disable Windows drive detection #var $noWindowsDriveList = true; // Just list all drives from C:\ - Z:\ without checking if they exist or not. // This may be required on older Windows systems with more than one drive. #var $forceWindowsAllDriveList = true; /* * Misc */ /* * Auto-refresh interval in seconds for VirtualBox host memory usage information. * Any value below 3 will be ignored. */ var $hostMemInfoRefreshInterval = 5; /* Show % of free host memory instead of % used */ #var $hostMemInfoShowFreePct = true; /* * VM Memory warnings. * * If $vmMemoryStartLimitWarn is enabled, each time a VM is started through * phpVirtualBox, it will check that the available host memory is greater than * the base and video memory of the VM + 50MB (a little bit of overhead). If it * is not, a confirmation dialog will be presented to confirm that you want to * start the VM. * * If $vmMemoryOffset is set (and $vmMemoryStartLimitWarn), $vmMemoryOffset * megabytes is subtracted from the available host memory before the check is * performed by $vmMemoryStartLimitWarn logic. For instance it may be a good * idea to always have VM memory requirements + 100MB free. 100 is the default. */ #var $vmMemoryStartLimitWarn = true; #var $vmMemoryOffset = 100; /* * Display guest additions version of a running VM on its Details tab */ #var $enableGuestAdditionsVersionDisplay = true; /* Disable any of phpVirtualBox's main tabs */ #var $disableTabVMSnapshots = true; // Snapshots tab #var $disableTabVMConsole = true; // Console tab /* Screen resolutions for console tab */ var $consoleResolutions = array('640x480','800x600','1024x768','1280x720','1440x900'); /* Console tab keyboard layout. Currently Oracle's RDP client only supports EN and DE. */ var $consoleKeyboardLayout = 'EN'; /* Max number of network cards per VM. Do not set above VirtualBox's limit (typically or below 1 */ var $nicMax = 4; /* Enable advanced configuration items (normally hidden in the VirtualBox GUI) * Note that some of these items may not be translated to languages other than English. */ #var $enableAdvancedConfig = true; /* Enable startup / shutdown configuration. * This only works in linux and you must add the vboxinit file to * your startup scripts list. */ #var $startStopConfig = true; // Authentication library. var $authLib = 'Builtin'; // VM ownership #var $enforceVMOwnership = true; // Per-user VM quota #var $vmQuotaPerUser = 2; // Allow VDE network configuration. This must be supported by the underlying VirtualBox installation! // If you do not know what VDE networking is - you do not need it, it is probably not supported by your // VirtualBox installation and will cause errors if enabled. #var $enableVDE = true; // Disable setting SATA controllers port count to the max port number found when saving VMs. #var $disableSataPortCount = true; /* Enable Parallel Port configuration - EXPERIMENTAL LPT support may or may not work for you. !!! VirtualBox LPT support only works in Linux. !!! */ #var $enableLPTConfig = true; /* Enable HardDisk IgnoreFlush configuration. This controls the "ExtraData" setting * in "VBoxInternal/Devices/[controller type]/0/LUN#[x]/Config/IgnoreFlush". See * Responding to guest IDE/SATA flush requests at: * http://www.virtualbox.org/manual/ch12.html#idp12757424 */ #var $enableHDFlushConfig = true; /* END SETTINGS */ }
  13. ok, can only find phpvirtualbox 4.3.2. Still cannot seem to get virtualbox up and running. vboxwebserv is up but for some reason I cannot get it to connect. Anyone help my with the config.php please?
  14. do you guys keep you webserver config on cache? Also how do I get phpvirtualbox?
  15. Dynamix has replaced SimpleFeatures and it has a webserver for unRAID v5. have installed the dynamix webgui but now I cannot see sab or sickbeard plugins, but they are running how do I find them? used installplg just started a reboot about 2 minutes ago did you reboot? that was too easy, thanks
  16. Dynamix has replaced SimpleFeatures and it has a webserver for unRAID v5. have installed the dynamix webgui but now I cannot see sab or sickbeard plugins, but they are running how do I find them? used installplg just started a reboot about 2 minutes ago did you reboot?
  17. Dynamix has replaced SimpleFeatures and it has a webserver for unRAID v5. have installed the dynamix webgui but now I cannot see sab or sickbeard plugins, but they are running how do I find them?
  18. Stupid question but what are you all using for a webserver now?
  19. VboxSVC.log is below VirtualBox XPCOM Server 4.3.4 r91027 linux.x86 (Nov 29 2013 16:39:43) release log 00:00:00.000900 main Log opened 2013-12-23T08:03:42.048005000Z 00:00:00.000904 main Build Type: release 00:00:00.000909 main OS Product: Linux 00:00:00.000912 main OS Release: 3.9.11p-unRAID 00:00:00.000914 main OS Version: #4 SMP Sat Nov 23 11:30:35 PST 2013 00:00:00.001017 main Host RAM: 7988MB total, 7777MB available 00:00:00.001025 main Executable: /opt/VirtualBox/VBoxSVC 00:00:00.001027 main Process ID: 6551 00:00:00.001029 main Package type: LINUX_32BITS_GENERIC 00:00:00.116242 nspr-2 Loading settings file "/root/.VirtualBox/VirtualBox.xml" with version "1.12-linux" 00:00:00.118476 nspr-2 Failed to open "/dev/vboxdrvu", errno=2, rc=VERR_VM_DRIVER_NOT_INSTALLED 00:00:00.118984 nspr-2 VDInit finished 00:00:08.482317 Watcher ERROR [COM]: aRC=E_ACCESSDENIED (0x80070005) aIID={fafa4e17-1ee2-4905-a10e-fe7c18bf5554} aComponent={VirtualBox} aText={The object is not ready}, preserve=false
  20. Hi All I seem to have run into a problem getting vboxwebsrv to start, when I hit the "start vboxwebsrv" button in the gui it seems to pause for a bit and then come back and the start button is still visible. I am running a cache drive so I have changed the symbolic link to /mnt/cache/VMHDD/vbox. I have also change the vboxwebsrv.log location to /mnt/cache/VMHDD/vboxwebsrv.log. I noticed there was no log fill in this location so I created one and nothing is written to it at all. I did have this plugin working a while back but removed it now I at trying to add it again. In php I get an error: Exception Object ( [message:protected] => Could not connect to host (http://192.168.1.33:18083/) [string:Exception:private] => [code:protected] => 64 [file:protected] => /mnt/cache/WebServer/lib/vboxconnector.php [line:protected] => 213 [trace:Exception:private] => Array Have you guys got any tips so I can see why vboxwebsrv is not starting? Thanks Lee
  21. Thanks for the response theone, does that mean running virtualbox and tvheadend is not going to be possible unless I use a real old version of virtual box?
  22. Hi All I installed the TVHeadend plugin and then noticed that in the Virtualbox plugin page that it says Package Online Version Local Version Installed Version VirtualBox No online package No local package Not Installed VirtualBox Extension v4.2.16 No local package Not Installed VirtualBox Guest Additions v4.2.16 No local package VirtualBox Plugin v0.5.2 v0.5.2 Does anyone know why my Virtualbox plugin would say there is no online package? There is also no way to start webserv on the plugin page. The Kernel version seems to have changed as well to v3.0.33 I am sure it was something like 3.9.X.X I uninstalled TVheadend same issue, uninstalled virtualbox plugin and reinstall same issue. Anyone had this problem? Any help would be appreciated. Lee
  23. Hi Guys I really would appreciate a hand with this, not sure why the artwork will not come across but all music comes across fine and streams fine. Can anyone help me out with what I should be looking or searching for to see why the artwork wont come across please?
  24. I remember having an issue like this myself but cannot remmeber how I resolved it. Are you able to RDP to the vm from a windows machine? Yes I can RDP for a Win7 machine. Cursor display is off by about 4 inches. I was able to complete the Zorin OS install. to be honest I may have just deleted the vm in virtualbox (not the image just the vm) and created it again. Have you tried this?
  25. No album art still seems to be an issue, is there any specific art I should be using? This is abot the only thing holding me up the rest of unraid seems to be working pretty well! Any help would be greatly appreciated!