:orphan: ======================== Creating a FactoryTX VM ======================== FactoryTX VM images are created with the `Balena `_ platform, which helps build, deploy, and manage code running on remote devices. .. contents:: :local: Set up a Balena Application =========================== With a web browser, navigate to the `Balena dashboard `_ and create a new application by selecting the *Create application* button. .. image:: img/balena_dashboard.png :scale: 75% :alt: Balena dashboard The *Application Name* should be the name of the customer that will be using the VM (e.g. *ESXiSanFran*) and the *Default Device Type* should be **QEMU X86 64bit**. .. image:: img/balena_create_application.png :scale: 75% :alt: Balena create application window After creating the application, select the *Add device* button. .. image:: img/balena_application_add_device.png :scale: 75% :alt: Balena application view To add a device to a Balena application, we'll need to download a `BalenaOS image `_ to run on the remote device. Please select the **QEMU X86 64bit** device type, the latest BalenaOS version, and the **Production** edition. .. image:: img/balena_add_new_device.png :scale: 75% :alt: Balena add new device window Create FactoryTX OS and Data Disks ================================== After downloading the zipped BalenaOS image, we'll need to modify it so that the operating system runs on one virtual machine disk and FactoryTX data is stored on a separate virtual machine disk. In order to accomplish this task, please have the following tools installed: * `QEMU `_: Used for converting an IMG file into VMDK * `VirtualBox `_: Used for virtualizing a Linux virtual machine to mount and configure the OS and data disks **Convert Raw BalenaOS IMG** With ``qemu-img``, convert the raw BalenaOS IMG file to a VMDK file. .. code-block:: bash qemu-img convert -f raw balena-cloud-ESXi-1-qemux86-64-2.29.2+rev1-v9.0.1.img -O vmdk factorytx-os.vmdk **Create the FactoryTX data disk** To create the FactoryTX data disk, we'll use VirtualBox to create a new virtual machine, **factorytx-data**, with a 10.00 GB hard disk. .. image:: img/virtualbox_new_vm_1_factorytx-data.png We want to create a new virtual hard disk. .. image:: img/virtualbox_new_vm_2_hard-disk.png For the type of hard disk file, we specify **VMDK** for ESXi servers. .. image:: img/virtualbox_new_vm_3_hard-disk-type.png Use *dynamically allocated* for the hard disk file, instead of *fixed size*, for a slimmer initial size. .. image:: img/virtualbox_new_vm_4_storage_on_hd.png **Modify BalenaOS and FactoryTX data disk files** Using a Linux virtual machine (e.g. Ubuntu 64-bit), add the BalenaOS and FactoryTX VMDK files as additional storage disks, and start up the VM. .. image:: img/virtualbox_linux_vm_add_os+data-disks.png Example settings for Ubuntu VM: .. image:: img/virtualbox_linux_vm_settings.png Open a Terminal window and run ``fdisk -l`` (``sudo`` may need to be prepended) to see the disk partitions available. .. code-block:: none uc@uc-VirtualBox:~$ sudo fdisk -l ... Disk /dev/sdb: 1.7 GiB, 1807745024 bytes, 3530752 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x00000000 Device Boot Start End Sectors Size Id Type /dev/sdb1 * 8192 90111 81920 40M e W95 FAT16 (LBA) /dev/sdb2 90112 729087 638976 312M 83 Linux /dev/sdb3 729088 1368063 638976 312M 83 Linux /dev/sdb4 1368064 3530751 2162688 1G f W95 Ext'd (LBA) /dev/sdb5 1376256 1417215 40960 20M 83 Linux /dev/sdb6 1425408 3530751 2105344 1G 83 Linux Disk /dev/sdc: 10 GiB, 10737418240 bytes, 20971520 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes In this example, the ``/dev/sdb`` disk correlates to the BalenaOS disk (``factorytx-os.vmdk``), and the ``/dev/sdc`` disk correlates to the FactoryTX data disk (``factorytx-data.vmdk``). Before we can use the FactoryTX data disk, we'll need to partition it with `fdisk `_ and format it with `mkfs `_. .. code-block:: none uc@uc-VirtualBox:~$ sudo fdisk /dev/sdc Welcome to fdisk (util-linux 2.31.1). ... Command (m for help): p Disk /dev/sdc: 10 GiB, 10737418240 bytes, 20971520 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0xfcfcedea Command (m for help): n Partition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions) Select (default p): p Partition number (1-4, default 1): 1 First sector (2048-20971519, default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-20971519, default 20971519): Created a new partition 1 of type 'Linux' and of size 10 GiB. Command (m for help): w The partition table has been altered. Calling ioctl() to re-read partition table. Syncing disks. .. code-block:: bash uc@uc-VirtualBox:~$ sudo mkfs.ext4 /dev/sdc mke2fs 1.44.1 (24-Mar-2018) Found a dos partition table in /dev/sdc Proceed anyway? (y,N) y Creating filesystem with 2621440 4k blocks and 655360 inodes Filesystem UUID: b14b8d40-9bc4-470d-9076-8f64357eb563 Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632 Allocating group tables: done Writing inode tables: done Creating journal (16384 blocks): done Writing superblocks and filesystem accounting information: done To configure BalenaOS (and the FactoryTX process) to use the FactoryTX data disk, we use `e2label `_ to change the label for the data disk to ``resin-data`` and rename the ``resin-data`` partition of the BalenaOS disk to something else (e.g. ``old-resin-data``). .. code-block:: bash uc@uc-VirtualBox:~$ sudo e2label /dev/sdc resin-data uc@uc-VirtualBox:~$ sudo e2label /dev/sdb6 old-resin-data Shut down the VM and remove its references to the OS and data disks. The VMDK files are now ready to be tested and/or deployed to and run in a hypervisor: * :ref:`Testing FactoryTX VM` * :ref:`Running FactoryTX VM in ESXi` Note on VMX Files ================= A VMX file is not automatically generated through the process above. A VMX file is the primary configuration file of a virtual machine, detailing virtual hardware settings and power management options. It should be automatically created when you create a new virtual machine and updated when setting changes are made. For reference, this is what a VMX file looks like for a FactoryTX VM configured in our ESXi test lab. .. literalinclude:: ./factorytx.vmx :caption: factorytx.vmx :linenos: