Hi, I'm using Virtual box and the following script to configure Nemo Mobile virtual machine:
OS_NAME="Nemo Mobile 2012-07-02" LIVECD_FILE=nemo-handset-i586-vm-0.20120614.1.NEMO.2012-07-02.1.iso LIVECD_NAME="Nemo Live CD" HDD_FILE="~/VirtualBox VMs/$OS_NAME/Nemo Mobile.vdi" HDD_NAME="Nemo HDD" VBoxManage createvm -name "$OS_NAME" --register VBoxManage modifyvm "$OS_NAME" --ostype Linux26 --memory 512 --pae on \ --mouse usbtablet --usb on --audio pulse --vram 9 \ --nic1 hostonly --hostonlyadapter1 vboxnet0 VBoxManage storagectl "$OS_NAME" --name "$LIVECD_NAME" --add ide VBoxManage storageattach "$OS_NAME" --storagectl "$LIVECD_NAME" \ --port 0 --device 0 --type dvddrive --medium "$LIVECD_FILE" VBoxManage createhd --filename "$HDD_FILE" --size 4096 VBoxManage storagectl "$OS_NAME" --name "$HDD_NAME" --add sata --sataportcount 1 VBoxManage storageattach "$OS_NAME" --storagectl "$HDD_NAME" \ --port 0 --device 0 --type hdd --medium "$HDD_FILE" However, I have a problem with black screen instead of MeeGo terminal (so I had to use ssh instead). I didn't manage to find an issue about that in bugzilla (unless it's related to bug https://bugs.nemomobile.org/show_bug.cgi?id=104) the only one mention here: http://talk.maemo.org/showpost.php?p=1166114&postcount=117 Is there any known workaround? Thanks, Daniil
