- find out your virtual box media using:
- on virtual box: click File - Media Manager
- you'll find list of (virtual) hardisks used
- click the (virtual) hardisk that you want to move
- look at the bottom, note the location of the file
- copy your file
- copy/cut virtual box file (file with extension .vdi)
- paste the file in new folder
- set virtual box to open the new location
- open virtual box application
- click on File - Virtual Media Manager, look at the Hardisk tab
- if the recent hardisk still exists:
- right click on the list you want to change the destination
- click release, answer 'YES' for the confirmation
- click 'ADD'
- locate to your .vdi file in your new location
- exit virtual media manager
- add your virtual machine
- in the main display of VirtualBox, click Machine - New
- click 'NEXT' when welcome screen displayed
- name your new virtual machine, you can type anything here, and will be displayed on list of virtual machine
- choose the OS Type and Version related
- adjust the virtual memory
- click 'Use existing hardisk', choose your virtual hardisk that has been set in step 3.5
- click Finish
- That's all, you can use your virtual machine now
-
| Artikel Personal |
| Windows |
| Berbagi Catatan |
| Artikel Umum |
| Album Pribadi |
| Script Collection |
Sunday, May 27, 2012
Moving VirtualBox Files to Other Computer/Folder
to move a virtual box file to other folder or computer:
Friday, May 25, 2012
PHPMyAdmin: Cannot start session without errors
sometimes we found this error when logging into PHP MyAdmin:
"Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly."
this because the sessions folder has been removed or restricted, do this steps:
1. check whether the folder /var/lib/php/sessions exists
2. if exists, then you need to run sudo chmod 0777 /var/lib/php/sessions from terminal
3. if the folder doesn't exist, then you need to create the folder manually:
- cd /var/lib
- sudo mkdir php
- sudo chmod 0777 php
- sudo mkdir sessions
- sudo chmod 0777 sessions
then try to login via PHP MyAdmin again
"Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly."
this because the sessions folder has been removed or restricted, do this steps:
1. check whether the folder /var/lib/php/sessions exists
2. if exists, then you need to run sudo chmod 0777 /var/lib/php/sessions from terminal
3. if the folder doesn't exist, then you need to create the folder manually:
- cd /var/lib
- sudo mkdir php
- sudo chmod 0777 php
- sudo mkdir sessions
- sudo chmod 0777 sessions
then try to login via PHP MyAdmin again
VirtualBox can’t operate in VMX root mode. Please disable the KVM kernel extension, recompile your kernel and reboot (VERR_VMX_IN_VMX_ROOT_MODE).
when we start our virtual machine on VirtualBox VMs, if we found this error message:
VirtualBox can’t operate in VMX root mode. Please disable the KVM kernel extension, recompile your kernel and reboot (VERR_VMX_IN_VMX_ROOT_MODE)
do this steps from terminal:
1. sudo lsmod |grep kvm
2. sudo modprobe -r kvm_intel
check whether your virtual machine has normally function
VirtualBox can’t operate in VMX root mode. Please disable the KVM kernel extension, recompile your kernel and reboot (VERR_VMX_IN_VMX_ROOT_MODE)
do this steps from terminal:
1. sudo lsmod |grep kvm
2. sudo modprobe -r kvm_intel
check whether your virtual machine has normally function
Subscribe to:
Posts (Atom)