climbx5
climbx5

Reputation: 85

Advice for running Linux Virtual Machine on Windows

I have a python application that I am currently operating in Windows (because I need to be able to send TCP commands to a 3rd party Windows application which is running on the same machine). However, I want to be able to use libgphoto2, which generally only runs on Linux machines. Is it possible to set up a virtual machine and run everything from a single computer? My Python scripts can currently be run from either Linux or Windows. An easy way to do this would be to have one computer with Windows which I control over TCP from a secondary computer running Linux...but this means that I will need 2 computers.

Any advice?

Upvotes: 0

Views: 775

Answers (2)

Marat
Marat

Reputation: 15738

Light solutions, just a Linux compatibility layer:

If it doesn't work, you can resort to a real virtualization, e.g. VirtualBox.

Upvotes: 2

wpcoder
wpcoder

Reputation: 447

Try VM Player.

Where you can setup linux over windows and communicate between virtual linux and windows host.

VM Player

Upvotes: 0

Related Questions