Given a Balena app that can be downloaded as an image and flashed to a device using a USB stick, how can it be used to create a virtual machine? The idea is that it could be distributed to others as an alternative to shipping a physical device.
How do I create VMware or VirtualBox virtual machine from Balena app image?
1.3k Views Asked by James Gentes At
1
There are 1 best solutions below
Related Questions in VIRTUALBOX
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Related Questions in VMWARE
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Related Questions in BALENA
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are two main parts to achieving this:
Download an Intel-NUC based Balena device image
Install a very specific version of Docker that still supports AUFS
Windows: https://docs.docker.com/docker-for-windows/release-notes/#docker-community-edition-18061-ce-win73-2018-08-29
Mac: https://docs.docker.com/docker-for-mac/release-notes/#docker-community-edition-18061-ce-mac73-2018-08-29
Open the Docker Desktop settings panel and tick the checkbox
Expose daemon on tcp://localhost:2375 without TLS
. Also go to the Shared Drives settings and be sure to share the C drive else you'll get adrive not shared
error when runningbalena preload
.Pre-load the Balena image with your app (optional)
Docker must be running properly for the next step to work.
balena preload <img name>.img --app <app #> --splash-image logo.png
Convert the .IMG file to .VMDK
The image needs to be mounted in the virtual machine, similar to plugging in a USB drive, however you can't mount the .img file directly. Unfortunately VMware doesn't have a utility for this (please comment if so) but VirtualBox does.
It must be converted to a .vmdk (virtual disk) using the
VBoxManage convertdd
command.VBoxManage convertdd <img name>.img <img name>.vmdk --format VMDK
Create a VMware virtual machine image
Note: This appears to require VMware Workstation 15 for VMDK compatibility, however there could be ways to get it working with earlier versions if you're ambitious.. perhaps changing the VMDK file type?
You have to modify the VMDK file type from 5 (streamOptimized) to 2 (monolithicFlat). It doesn't matter here, but types 0, 1, and 3 would also work. This is not needed for VirtualBox.
vmware-vdiskmanager -r <source>.vmdk -t 2 <target>.vmdk
This creates a
-flat.vmdk
file that's 4x the size of the original. Note: We're going to attach the 1kb .vmdk file that references that -flat file, not the -flat file itself.Open VMware Workstation (you'll need a license or trial version) and create a new Virtual Machine. Use Custom (advanced) otherwise you won't get the option to specify disk controller type or select an existing disk.
Select a Disk Type
- choose SATA as SCSI doesn't support AHCI and it will not boot properly.Select a Disk
- choose 'Use an existing virtual disk'Click finish, then edit the virtual machine settings. You need to add a Click
Add
on the Hardware tab and selectHard Disk
.Note: It is critical that the original Balena VMDK is set to SATA 0:0 otherwise it will not boot properly. It should be already configured as such, but you can click the Advanced button to double check.
If the virtual machine does not boot (ie. gets stuck at a network boot prompt) go to the Settings of the virtual machine > Options tab > Advanced > Firmware type and make sure it is set for UEFI (not BIOS). This should fix the problem.
Click the
Options
tab and go toAdvanced
- change the Firmware type fromBIOS
toUEFI
. If this is not done it will not boot to the Balena VMDK.Skip the next section.
Create a VirtualBox virtual machine image
You should now have a virtual machine created. Edit the settings:
Enable I/O APIC
(will not boot otherwise)Enable EFI
Controller: SATA
Controller: SATA
and add a new hard diskController: SATA
NAT
which is what you wantProvision the virtual machine with the Balena image
Now you should have the original VMDK attached for boot and a new virtual disk to provision with the Balena image. Start the virtual machine and open up the Balena dashboard to see it come online (https://dashboard.balena-cloud.com) Once it appears, you should name it something meaningful.
Note: If you see Network PXE as the bootloader and it just hangs, it means you likely haven't changed BIOS setting to UEFI.
The device will enter a Post-Provisioning state. Do not interrupt this process - it will take a few minutes and the virtual machine will power off. Be sure to let it power off on it's own. If it does not turn off, or if you accidentally turn it off, delete the device from Balena and start the virtual machine again - it should provision a new device.
Important: Once it is powered off, go to the virtual machine settings and remove the Balena VMDK disk, otherwise you will re-flash a new image every time you boot. This is the equivalent of removing the USB stick from the device. You should only have one virtual disk attached to
Controller: SATA
.At this point you have a virtual machine image that is the equivalent of a physical device. Now the image can be packaged as a virtual appliance so that it can be easily distributed (and users can just double click on and load into VirtualBox or VMware).
Create a virtual appliance from a Balena image
Open VirtualBox or VMware (the process is the same):
File > Export
Click
Export
and that's it!One thing to note: If you send this appliance to 10 people, there will still only be 1 device in Balena, so you may want to create 10 separate appliances instead, which then provision 10 separate devices in Balena.