VirtualBox auf der DS

Status
Für weitere Antworten geschlossen.

utzoff

Benutzer
Mitglied seit
05. Okt 2013
Beiträge
235
Punkte für Reaktionen
1
Punkte
16
Hi,
nur mal so zur Info.
Windows 10 32Bit erfolgreich installiert.
 

DKeppi

Benutzer
Mitglied seit
01. Apr 2011
Beiträge
3.218
Punkte für Reaktionen
74
Punkte
114
@dodo-dk

Vermute ich richtig, dass phpvirtualbox für 5.0 nach dem Fix gestern jetzt läuft? :)
 

dodo-dk

Benutzer
Mitglied seit
28. Feb 2015
Beiträge
176
Punkte für Reaktionen
2
Punkte
18
Hi, ja es funktioniert. Werde in den nächsten 4 Stunden ein Package machen.
Ist gerade etwas stressig. Heute Abend muss ich los, 1500km zurücklegen.

Gruß Dodo
 

DKeppi

Benutzer
Mitglied seit
01. Apr 2011
Beiträge
3.218
Punkte für Reaktionen
74
Punkte
114
Das ist schön zu hören.
Stress dich aber wegen uns nicht, wir haben ja eine funktionierende 4.3.30 Version :)

Ohh ok, dann wünsch ich schon mal eine gute und sichere Fahrt!
 

dodo-dk

Benutzer
Mitglied seit
28. Feb 2015
Beiträge
176
Punkte für Reaktionen
2
Punkte
18
Hi, habe das Package gemacht, aber als ich das Package auf meinem realen System installiert habe sind mit noch Fehler aufgefallen.
Es werden keine angeschlossenen USB Geräte erkannt, phpVirtualBox hat noch Probleme, z.B. beim ACPI Shutdown, oder Gasterweiterung installieren...
Ich habe jetzt leider keine Zeit mehr die Probleme auf dem Grund zu gehen, darum uploade ich das Package falls jemand experimentieren will.

Diese Version hat Fehler ! Bitte beachten ! UNSTABLE !
Download: http://gofile.io/?id=4NrTHK
Diese Version hat Fehler ! Bitte beachten ! UNSTABLE !

Gruß Dodo
 

DKeppi

Benutzer
Mitglied seit
01. Apr 2011
Beiträge
3.218
Punkte für Reaktionen
74
Punkte
114
Ich glaube es traut sich keiner - ich ehrlich gesagt auch nicht :)
Werde es mal auf der xpenology installieren ;)

EDIT:
Kann die Probleme bestätigen, wie man das löst weiß ich allerdings auch nicht. Liegts an virtualbox selbst oder an phpvirtualbox?
 
Zuletzt bearbeitet:

TheGardner

Benutzer
Mitglied seit
30. Nov 2012
Beiträge
1.845
Punkte für Reaktionen
56
Punkte
74
Glaube das macht Dodo dann wenn er ausm Urlaub zurück ist! Ist sonst keiner weiter hier, der den Fehlern auf den Grund gehen will (oder kann). Habs zur Zeit deinstalliert, da ich außer an Windows10 in den letzten Monaten nicht weiter an irgendwas rumgefrickelt hab!
 

Bordi

Benutzer
Mitglied seit
24. Jan 2010
Beiträge
3.198
Punkte für Reaktionen
3
Punkte
0
Seit gestern 2. August ist phpVirtualBox-5-0 nun auch auf SourceForge zu haben. Ich hab das gleich mal auf meine Debian-Kiste gezogen. Keine grosse Sache, Nginix und VirtualBox 5.0 waren eh schon drauf. Hat auch gut geklappt.
Ich passe im übrigen immer die config.php an, wer mal abschreiben möchte..

Rich (BBCode):
<?php
/**
 * phpVirtualBox example configuration. 
 * @version $Id: config.php-example 585 2015-04-04 11:39:31Z imoore76 $
 *
 * 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://127.0.0.1:18083/';

/* Default language. See languages folder for more language options.
 * Can also be changed in File -> Preferences -> Language in
 * phpVirtualBox.
 */
var $language = 'de';

/* 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/'
        ),
        array(
                'name' => 'Paris',
                'username' => 'user3',
                'password' => 'pass3',
                'location' => 'http://192.168.0.1:18083/'
        ),
        array(
                'name' => 'Beijing',
                'username' => 'user4',
                'password' => 'pass4',
                'location' => 'http://192.168.0.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 = 'DE';

/* 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;

/*
 * Event listener timeout in seconds. This is an advanced option that most people will
 * probably not need to change.
 */
#var $eventListenerTimeout = 20;

/* END SETTINGS  */


}

Gröbere Schnitzer habe ich keine Endecken können. ACPI Shutdown funktioniert. Einziges was nicht funktioniert, und beim Start Probleme bereitet ist 3D. Doch das liegt ganz klar an phpVirtualBox. Über den VirtualBox Client klapt's einwandfrei.
 
Zuletzt bearbeitet:

Bordi

Benutzer
Mitglied seit
24. Jan 2010
Beiträge
3.198
Punkte für Reaktionen
3
Punkte
0

Stephan296

Benutzer
Mitglied seit
04. Aug 2015
Beiträge
9
Punkte für Reaktionen
0
Punkte
0
When i use windows 10 remote desktop i cant connect to any vm in virtualbox
When i use windows 8 remote desktop it works perfect!
 
Zuletzt bearbeitet:

Benares

Benutzer
Sehr erfahren
Mitglied seit
27. Sep 2008
Beiträge
13.803
Punkte für Reaktionen
3.761
Punkte
468
Remote desktop to a Win10 VM works here. Is remote desktop enabled in Win10? Is the software firewall open for RDP (tcp/3398)?
 

Stephan296

Benutzer
Mitglied seit
04. Aug 2015
Beiträge
9
Punkte für Reaktionen
0
Punkte
0
i mean my laptop has windows 10, at my synology i have phpvirtualbox with a couple of vm's. For example Ubuntu.
When i go to the phpvirtualbox i can click at the portnumber at my vm for remote desktop (it's blue)
Windows download the file/shortcut.
When i open the file at a laptop with windows 8 with remote desktop it works perfect, but when i use my windows 10 laptop i cant make a connection.
The connection will be refused.
 

Benares

Benutzer
Sehr erfahren
Mitglied seit
27. Sep 2008
Beiträge
13.803
Punkte für Reaktionen
3.761
Punkte
468
Ah ok. Same here. The downloaded rdp-File tries to connect the DS with port 3389/tcp, not to the virtual machine. I always used mstsc.exe directly to connect to the VM (which is Win10 too).
Don't know, why remote desktop to the DS itself doesn't work under Win10. Does it really work under Win8?

Nevertheless, simply use mstsc.exe and connect directly to the VM.
 
Zuletzt bearbeitet:

Stephan296

Benutzer
Mitglied seit
04. Aug 2015
Beiträge
9
Punkte für Reaktionen
0
Punkte
0
I understand what you mean but this was very easy and maybe there is a kind of protocol or security change or something in windows 10.
Maybe could the developer something with this?
 

Benares

Benutzer
Sehr erfahren
Mitglied seit
27. Sep 2008
Beiträge
13.803
Punkte für Reaktionen
3.761
Punkte
468
Maybe, but Win10 is new. I'm sure the developers will find a way to easy your life.
 

svenpbg87

Benutzer
Mitglied seit
04. Aug 2015
Beiträge
2
Punkte für Reaktionen
0
Punkte
1
A quick fix for Windows 10 clients not connecting to a VRDP Session do following.
It works perfect for me. No other issues are caused by doing this,

Shutdown running VM's
Stop Virtualbox in Packetmanager
SSH to your DS


Rich (BBCode):
cd /opt/VirtualBox
wget https://www.virtualbox.org/download/testcase/Oracle_VM_VirtualBox_Extension_Pack-4.3.31-101730.vbox-extpack
./VBoxManage extpack install --replace Oracle_VM_VirtualBox_Extension_Pack-4.3.31-101730.vbox-extpack

Start Virtualbox in Packetmanager.

Now you should be able to connect to your VM's from Windows 10.
 

Stephan296

Benutzer
Mitglied seit
04. Aug 2015
Beiträge
9
Punkte für Reaktionen
0
Punkte
0
A quick fix for Windows 10 clients not connecting to a VRDP Session do following.
It works perfect for me. No other issues are caused by doing this,

Shutdown running VM's
Stop Virtualbox in Packetmanager
SSH to your DS


Rich (BBCode):
cd /opt/VirtualBox
wget https://www.virtualbox.org/download/testcase/Oracle_VM_VirtualBox_Extension_Pack-4.3.31-101730.vbox-extpack
./VBoxManage extpack install --replace Oracle_VM_VirtualBox_Extension_Pack-4.3.31-101730.vbox-extpack

Start Virtualbox in Packetmanager.

Now you should be able to connect to your VM's from Windows 10.

Can i use this also for the 5.0 version of have i use the extension pack from 5.0?

Thanks a lot!
 

DKeppi

Benutzer
Mitglied seit
01. Apr 2011
Beiträge
3.218
Punkte für Reaktionen
74
Punkte
114
Status
Für weitere Antworten geschlossen.
 

Kaffeautomat

Wenn du das Forum hilfreich findest oder uns unterstützen möchtest, dann gib uns doch einfach einen Kaffee aus.

Als Dankeschön schalten wir deinen Account werbefrei.

:coffee:

Hier gehts zum Kaffeeautomat