Cannot install DSX Desktop on Mac - Siera - data-science-experience

Cannot install DSX Desktop on Mac - Siera
It is stuck at this
I have docker running

I figured this out from
Problems installing DSx Desktop
i needed to do two things:-
Update kitematic on my Mac to latest which updated my docker version
I also had Oracle virtual machine installed, so for some reason, docker image for dsx-desktop needed to be started manually from oracle virtual machine.
When i started it manually the installation proceeded.
Thanks,
Charles.

Related

Oracle Virtual Box not starting on Mac

Host: Mac OS Ventura
Guest: Oracle VirutalBox 6.1
After the recent OS upgrade to the Ventura on Mac, I am not able to start my virtual box. It used to work perfectly before the upgrade. I have tried other versions of virtual box, such as 7.0, but I am still getting the following error.
Any help would be appreciated .
Thanks.
===================
The virtual machine 'Oracle Linux 9' has terminated unexpectedly during startup with exit code 1 (0x1).
Result Code:
NS_ERROR_FAILURE (0x80004005)
Component:
MachineWrap
Interface:
IMachine {85632c68-b5bb-4316-a900-5eb28d3413df}
=======================
Mac OSX Ventura doesn't work with VirtualBox 6.X
download latest 6.X and unpack virtual box 6.X
run the uninstall virtual box tool (you need to approve in System > Privacy and Security > allow run the uninstall tool.
Now You need to download the last version VirtualBox 7.x
after download unpack it
run installer
you need to authorize Oracle kernel extensions System > Privacy and Security > allow Oracle Kernel Extension
Restart
Now Run VirtualBox from Application folder.
Probably you will need to recreate your network adapter in VirtualBox > File > Tools > Network manager

Dockerize a Visual Studio C++ project on Windows home

I am new to Docker, using windows 10 home edition, and want to create a docker image for my C++ project developed with visual studio. As far as I understand, the image I need to create is going to be a windows image, and therefore I need to install “Docker for windows” and enable the Hyper-V feature. This is not possible with my windows home edition, as Hyper-V is available for windows 10 pro only. The other alternative, using “Docker toolbox” and a virtualbox linux VM, does not support creating or pulling windows containers. Did I miss something? Is there a workaround?
You could use the Windows Linux Subsystem: https://medium.com/#sebagomez/installing-the-docker-client-on-ubuntus-windows-subsystem-for-linux-612b392a44c4
EDIT: On second read of your question you probably want to have a windows-container for visual studio. This solutions makes Linux-containers possible, but doesn't help with windows images...
As you know, you are unable to install Docker for Windows Home edition, as it requires Hyper V virtualization.
So these are your options:
You will need to install Docker Toolbox which uses VirtualBox instead.
Docs and setup info available here:
https://docs.docker.com/toolbox/toolbox_install_windows/
Release downloads available here:
https://github.com/docker/toolbox/releases
Toolbox will install everything you need including VirtualBox.
You may also need to enable virtualization in your computer's BIOS settings. This will be different for each manufacturer, please refer to their documentation on which keys to use to access these settings on reboot.
After Toolbox is finished installing, open the Docker Quickstart Terminal. This will complete the setup and provision your VirtualBox machine.
Check your install:
Launch the Docker QuickStart terminal and type the command:
docker run hello-world
This should pull down the test container and print hello-world to your screen.

Genymotion requires VirtualBox to be installed on your computer

How do I fix this error? The latest version of the software is installed
Do u run it in Windows 10?
If yes, That is because of Oracle VM VirtualBox is not support Windows 10 yet. I tried with the same steps in win7x64 machine, it works fine.

Multiple Versions of Virtualbox on Yosemite

I am interested in running multiple versions of virtual box on Yosemite for my dev needs as follows:
- (installed) 4.3.30 for running Genymotion Android emulators since there is a bug with newer versions of Virtualbox
- Latest version of Virtualbox for VMs being managed by Vagrant
How can I install and isolate the virtual box instances?

Vagrant, VirtualBox built-in or no?

Trying to get set up with Vagrant but getting the error:
The "VBoxManage" command or one of its dependencies could not be found.
Please verify VirtualBox is properly installed. You can verify everything
is okay by running "VBoxManage --version" and verifying that the VirtualBox
version is outputted.
Just confused because the Vagrant documentation states:
"The getting started guide will use Vagrant with VirtualBox, since it is free, available on every major platform, and built-in to Vagrant."
Don't want to install VirtualBox separately if its supposed to be included when I installed Vagrant. Running OSX 10.8 if it's relevant, guessing I just need to install VirtualBox? If that's the case, what do they mean in the documentation when they say it's "built-in"?
Installing VirtualBox is required if you plan on using VirtualBox with Vagrant. I'm guessing they meant that the VirtualBox integration is built-in?
Recently, they've abstracted out the VirtualBox specific code and are working on allowing for multiple providers. I believe VMWare is now supported in addition to VirtualBox.
I had this message but my problem was different. I use Vmware_fusion as the provider. Vagrant was not able to detect what provider I am using.It assumed that I am using VirtualBox. Had this issue fixed by calling vagrant up provider flag. Here is the full command
vagrant up --provider vmware_fusion