Jump to content

Alexandro

Members
  • Posts

    321
  • Joined

  • Last visited

Posts posted by Alexandro

  1. I need some help with Virtualbox.

    Installed the latest version. No problems here:

     

    sZFD2Wvl.png

     

    Here is my config.php in the webserver:

    <?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 = 'administrator';

    var $password = 'administrator';

     

    /* SOAP URL of vboxwebsrv (not phpVirtualBox's URL) */

    var $location = 'http://192.168.1.78:2222/';

     

    /* 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.40';

     

    // 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 8) 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  */

     

     

    }

     

     

     

    Restarted the webserver as well as virtualbox plugin.

    When I try to connect via browser I receive the following:

     

    VpRNfPdl.png

     

    gTrcbeil.png

     

    I am really not an expert and cant debug the problem so will need a hand to solve this.

    What is also strange that virtualbox plugin is not creating a log file at all.

    Please help.

     

     

     

  2. Obviously one needs to stay away from higher end Corsair (RM) series as well.

    I was using CX series (430) when the HDDs in my system were less. Then upgraded the power supply to a RM. it is deadly silent, that's true, but the extensive tests are showing poor results.

    Here is the review I've read today:

    http://m.hardocp.com/article/2013/11/13/corsair_rm750_750w_power_supply_review/1#.U-fFlmthiK0

     

    The price of this model in my country is not low and all we need to be aware that nowadays the price is not always a proof for a quality.

     

    The CX series was working great for my setup last three years with a total of 9 disks in the system without a single issue. Moreover it is still in the recommendation list. Probably it is high time to revise it.

  3. Thank you garycase,

     

    My floor is completely leveled. The vibrations were due to the single aluminum sheet LianLi manufactured the side panels of the case.

    I glued 5 mm rubber sheets on every panel and this way managed to slake the vibrations. Most probably my expectations were a bit higher than needed regarding the build quality and maybe I overreacted initially. I am happy with the case in general. Moreover there are not so many cases (excluding server class cases) offering space for 30 HDDs. I am just waiting for Tom to invent 60 HDDs support in Unraid with triple parity and will purchase a second case ;)

    My other hobby is connected with high-end audio and what I've learned during the years was that every single audio component need to stand on 3 points in order to ensure the best footing. Probably need to apply this policy here as well.

  4. Thank you Gary for your reply. Helpful as always. iOS spellcheck is not educated enough, hence the "visualization";)

     

    I also know that ver.5 and "working extremely well" is an oxymoron, but haven't had any serious issues except the usual web interface disappearance which is obviously an Incurable illness of ver.5. ;)

     

    1. Obviously esxi is the way to go and according to you the speeds and the general behavior of unraid should stay as it is.

    2. It is still a question of time. Version 6 as I read is far from a stable release and I don't want to wait and rely on a still non existing software.

    3. There will be no need of another hardware as there are already two presented and want to aggregate them in one.

     

    Thanks again for your input. Yours and others experts additional elaboration, especially on the USB questions would be highly appreciated.

  5. Dear All,

    Please excuse my ignorance but feel very green in the virtualization world. Have read a lot around but still have some questions. Before asking them would like to give you some additional information helping to understand my situation.

    Currently I have Unraid 5.0 final (32bit) running extremely well. Along with the user shares I successfully managed to install Plex, MySQL, AirVideo, Transmission and some other plugins living their life on the cache drive. As I am feeling nervous to start from scratch with the 64 bit version as everything is working smooth now, I would like to try virtualization, running Unraid as a guest and not touching anything in its current configuration. It must stay in secret for Unraid that "he" is not alone in his house anymore. The aim is to have Ubuntu based server environment in parallel where I can run various specialized software not available for unraid or docker at the moment. This way I will get rid of one more server to take care in my house and utilize the power of my current one where unraid is.

    So here are my questions:

    1. Obviously I can run a Hypervisor from a flash drive (not sacrificing a precious sata port). Are there any known problems with this idea except that probably it will boot slower which is not such a problem especially if it is stable enough and not needed to reboot more then once in 3-4 years :)

    2. Am I right saying that having in mind there will be two flash sticks (the hypervisor and unraid) there is not going to be a problem with the boot priority which I am going to setup in the bios of the MB.

    3. If all goes well obviously I will need to pass-through the sata controllers to Unraid. I have 2 Supermicro SASLP-MV8 and one Dell Perc H310 (IT mode). What I read was that the Supermicro controllers are not the best choice. This was some years ago. Are there any changes in this case? If not I can replace them with H310 (I have 2 more).

    4. Once unraid is up and running as a host practically I shouldn't notice any difference in terms of performance or am I not right in this statement? Currently the parity checks are going with app 95 MB/sec (app. 9 hrs).

    5. What is the most stable hypervisor and easiest to manage? Xen, KVM, Esxi or something else? I am a lawyer and not an IT guru ;)

    6. I will need to install Ubuntu on a Sata port HDD. Ideally I would like to use the sata port from the Mainboard. This means the sata port from the MB have to be passed-through to the VM running Ubuntu? Is this possible or I will need additional controller just for 1 HDD hosting Ubuntu.

    7. Once Ubuntu is working I will need to have access to 5 USB ports. There are not so many on my Mainboard so obviously I will need to use a hub. May I passthrough them to Ubuntu and be sure that their address is not going to be changed once the VM is restarted. This is important as the USB ports are needed to serve a bunch of card-readers and their address must stay the same all the time in order to prevent a mess with their settings.

     

    I know I can use ver.6 and make things easier but I learned during the years that often the easiest option is not the best one. I do not want to ruin my current unraid configuration as it is working stable enough and the plugins I use are working great. Docker is just not for me. Just don't have the time and expertise to build my own containers for the software I need and in general don't feel comfortable with this. So what you guys can recommend me.

    My hardware details are in my signature.

     

    Thanks for reading this boring stuff. :)

  6. My server is full of movies, tv shows and pictures of my family.

    You all are right saying that collecting video becomes an addictive hobby. Me personally haven't had the time needed to watch more than one movie a week. But this doesn't mean that I don't get my hands on 10 newvideos a week. This means that we are just investing in the future when we get retired and will enjoy our media library :)

     

    Currently my server hosts around 500 1080p movies, 120 full tv shows (720p) and 2tb digital pictures.

    Every 4-5 months I need additional 3tb of space to feel I am on the safe side storage wise.

     

    I am not good in Mathematics, but I don't know what will be better- to buy the hard copies of the movie/show or to store them digitally. Currently I broke the 2000 Eur threshold for the unraid hardware/upgrades and can imagine that I am rather on the lower level when it comes to the hardware investments compared to other folks around.

  7. Dear all,

    Does someone have an experience with this controller?

    I have a chance to buy it on a very good price and was wondering if it will be unraid compatible. It is a hardware raid controller and I don't know if it will be IT mode flashable so that I can use it in the future as an expander...

     

    Please find the link to the PDF specification of the controller from LSI website.

    http://www.lsi.com/downloads/Public/RAID%20Controllers/RAID%20Controllers%20Common%20Files/MR_SAS_8888ELP_PB_081809.pdf

     

    LSI-MegaRAID-8888ELP-top.jpg

    Thank you in advance.

×
×
  • Create New...