RDK Emulator

Bringing up the Emulator on Virtual Box


Install Virtual Box and follow the following steps to bring up RDK Emulator on Virtual Box:

In the following steps, it is recommended to review the description and screenshot completely before proceeding with steps.

STEP 1: Create your new VM Instance:


STEP 2: Configure your new VM Instance:

STEP 3: Create an external hard drive:

Your VM has been built with very limited hard drive space. In order to run emulator and play video files, you need to copy your video files into the file system for playback. For this, you will need to setup a virtual external hard drive.


STEP 4: Formatting and partitioning your new external hard drive:

$ ssh root@x.x.x.x
$ mount

$ fdisk -l

$ fdisk /dev/hdb

Review the description of the steps during fdisk operation below and the following screenshot for reference before proceeding.

$ Command (m for help): n

$ Partition type:

p primary (0 primary, 0 extended, 4 free)

e extended

Select (default p): p

$ Partition number (1-4, default 1): 1
$ Command (m for help): p
$ Command (m for help): w
$ mkfs.ext3 /dev/hdb1

$ mkdir /ext_hdd

$ mount /dev/hdb1 /ext_hdd

Logging into your VM

As described in the previous section, you can log in to your emulator VM from your Host Machine using the ssh command.

$ ssh root@x.x.x.x