Importing Legacy Windows XP or Windows 2003 from Virtualbox to Proxmox Rumi, December 28, 2023 Problem Statement: I have an old Windows 2003 32 bit server running in Virtualbox. Since Virtualbox is under decommissioned, it is intended to be migrated to Proxmox VE Before Migration or export of VM from Virtualbox, following .reg file is required to be installed on Windows 2003 server to avoid… Continue Reading
Remove VirtualBox from Linux Rumi, September 3, 2023 Step 1: Check the VirtualBox Version (Optional) First, check out the Virtualbox installed version by specifying the application package name as “vboxmange” name with the “version” flag: $ vboxmanage –version The Virtualbox installed version is “6.1.38”. Step 2: Uninstall Virtual Box Use the default package manager alongside the “–remove” and… Continue Reading
Convert VirtualBox VM to ProxMox VE Rumi, June 24, 2022June 24, 2022 On the VirtualBox host, launch VirtualBox Right click the VM to convert > Settings Select Storage from the left navigation Click the virtual hard disk and copy the Location value for the full path of the disk to the clipboard Right click on the Start menu > Run > type… Continue Reading
Install VirtualBox legacy version 5.x on CentOS 7 Rumi, June 11, 2022 Install Dependencies Install Extra Packages for Enterprise Linux (EPEL) # sudo yum install epel-release wget -y Install Dynamic Kernel Module Support (DKMS) # sudo yum –enablerepo=epel install dkms -y This will install quite a few packages: Install Development Tools # sudo yum groupinstall “Development Tools” -y Continue Reading
Install Virtualbox 5.2/6.1 on Ubuntu 16 headless mode Rumi, May 21, 2021 Install Prerequisites Before installing VirtualBox 5.2/6.1, please install these packages below if your systems don’t already have them installed…. sudo apt update sudo apt-get install gcc make linux-headers-$(uname -r) dkms Add VirtualBox Repository If you want to always get the latest versions of VirtualBox when they become available, you’ll want… Continue Reading
How to remove Virtualbox extpack Rumi, May 19, 2021 The following commands show examples how to list extension packs and remove one: $ VBoxManage list extpacks Extension Packs: 1 Pack no. 0: Oracle Virtual Machine VirtualBox Extension Pack Version: 4.1.12 Revision: 77218 Edition: Description: USB 2.0 Host Controller, VirtualBox RDP, PXE ROM with E1000 support. VRDE Module: VBoxVRDP Usable:… Continue Reading
Reinstall VirtualBox on Ubuntu & CentOS Rumi, January 8, 2020 For Ubuntu To remove virtualbox sudo dpkg –list virtualbox-* sudo apt autoremove –purge virtualbox* dpkg -l virtualbox* | grep ^i Remove all PPAs from sources.list and source.list.d directory mkdir ~/apt-tmp sudo mv /etc/apt/sources.list.d/* ~/apt-tmp Make sure there is nothing except official repositories sources in /etc/sources.list. And update your sources: sudo apt… Continue Reading
Install VirtualBox on Centos 6 / 7 Rumi, September 6, 2019 Step 1 – Add Required Yum Repositories Firstly you are required to add VirtualBox yum repository in your system. Download repository file from its official site and place it under at /etc/yum.repos.d/virtualbox.repo .First navigate to /etc/yum.repos.d/ directory and use one of below commands as per your operating system. cd /etc/yum.repos.d/ wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo… Continue Reading
Convert .ova and import it on Proxmox KVM virtualization Rumi, January 8, 2018 Let’s start uploading the exported ova file to the proxmox server. Extract the OVA file: tar -xvf *.ova This should output a couple of files from the OVA container, it should include an OVF file, which is the VM Defenition file, and a VMDK file, which is the actual hard… Continue Reading
Phpvirtualbox fix on 5.1 using 5.0 Rumi, October 12, 2017October 12, 2017 I was able to get v5.0-5 working with vbox 5.1 by commenting out the version check line and replacing it with a static value in the endpoints/api.php file: // $response[‘data’][‘responseData’][‘phpvboxver’] = @constant(‘PHPVBOX_VER’); $response[‘data’][‘responseData’][‘phpvboxver’] = “5.1-0”; Src: https://sourceforge.net/p/phpvirtualbox/discussion/general/thread/565b7f31/ Continue Reading