Install SDK on Linux

asked 2016-05-30 20:53:31 +0300

Luca gravatar image

updated 2016-05-30 20:56:30 +0300

Hi all, I just installed SDK on my Slackware Linux 64 bit.

The installed stopped with the following message:

/usr/bin/VBoxManage modifyvm SailfishOS Emulator --ostype Linux26 --memory 1024 --vram 128 --ioapic on --pae on --audio pulse --audiocontroller ac97 --nic1 nat --nictype1 virtio --natpf1 guestssh,tcp,127.0.0.1,2223,,22 --nic2 intnet --intnet2 sailfishsdk --nictype2 virtio --macaddress2 08005A110001 --bioslogodisplaytime 1

The problem was the "space" between in the vm name: SailfishOS Emulator

I solved by simply executing in a terminal the same command with quotes:

/usr/bin/VBoxManage modifyvm "SailfishOS Emulator" --ostype Linux26 --memory 1024 --vram 128 --ioapic on --pae on --audio pulse --audiocontroller ac97 --nic1 nat --nictype1 virtio --natpf1 guestssh,tcp,127.0.0.1,2223,,22 --nic2 intnet --intnet2 sailfishsdk --nictype2 virtio --macaddress2 08005A110001 --bioslogodisplaytime 1

then "ignore" on the installer.

I think it should be easy to solve... :-D .

edit retag flag offensive close delete

Comments

never had that problem on my ubuntus from 14.04 to 16.04 maybe the problem in your shell?

coderus ( 2016-05-30 21:13:39 +0300 )edit
1

I have never had this issue on kali linux rolling or debian 8, could it be caused by a different shell configuration?

SeñorMaligno ( 2016-05-30 21:32:32 +0300 )edit

If I try the command in a console without quotes I get:

/usr/bin/VBoxManage modifyvm SailfishOS Emulator --ostype Linux26 --memory 1024 --vram 128 --ioapic on --pae on --audio pulse --audiocontroller ac97 --nic1 nat --nictype1 virtio --natpf1 guestssh,tcp,127.0.0.1,2223,,22 --nic2 intnet --intnet2 sailfishsdk --nictype2 virtio --macaddress2 08005A110001 --bioslogodisplaytime 1

VBoxManage: error: Could not find a registered machine named 'SailfishOS' VBoxManage: error: Details: code VBOX_E_OBJECT_NOT_FOUND (0x80bb0001), component VirtualBox, interface IVirtualBox, callee nsISupports VBoxManage: error: Context: "FindMachine(Bstr(a->argv[0]).raw(), machine.asOutParam())" at line 464 of file VBoxManageModifyVM.cpp

Luca ( 2016-05-31 13:26:47 +0300 )edit

When executing the same command i get the same error, reinstalling seems not to have this issue. Since the version installed was an older version (1511) and then upgraded the problem might be in the newest version

Edit: on a fresh ubuntu installation with latest version it does not happen

SeñorMaligno ( 2016-05-31 19:34:03 +0300 )edit

I'm using the latest version (1602). Maybe it depend on VirtualBox version.... I'm using 4.3.24 .

Luca ( 2016-06-01 09:43:21 +0300 )edit