Questions tagged [virtualbox]

[Notice: Only programming-related questions are on-topic] Oracle VM VirtualBox is an x86 virtualization software package, now developed by Oracle Corporation

Oracle VM VirtualBox

Oracle VM VirtualBox is an x86 virtualization software package. It was created by software company innotek GmbH, purchased by Sun Microsystems, and is now developed by Oracle Corporation as part of its family of virtualization products.

VirtualBox is installed on an existing host operating system; within this application, additional guest operating systems can be loaded and run. Each guest OS operates within its own virtual environment.

Presently, VirtualBox runs on Windows, Linux, Macintosh, and Solaris hosts. It supports a large number of guest operating systems including but not limited to:

  • Windows (NT 4.0, 2000, XP, Server 2003, Vista, Windows 7)
  • DOS/Windows 3.x,
  • Linux (2.4 and 2.6)
  • Solaris and OpenSolaris
  • OS/2
  • OpenBSD

See also:

5682 questions
2
votes
0 answers

How to create bridged connections in Virtualbox (Windows 10)

I am trying to create a Linux virtual machine hosted in Windows 10 that has a unique IP address from the host. I understand that a bridged connection is required for this but can not find simple instructions for how to accomplish this. When I change…
dopeydoe
  • 21
  • 2
2
votes
1 answer

Unable to install Vagrant + VirtualBox on MacOSX

I am using MacOSX High Sierra. I have installed Virtual Box using VirtualBox-5.2.10-122088-OSX.dmg and Vagrant using vagrant_2.0.4_x86_64 vagrant init hashicorp/precise64 A Vagrantfile has been placed in this directory. You are now ready to…
Lame Duck
  • 21
  • 2
2
votes
1 answer

Windows/Vagrant:There was an error while executing `VBoxManage`,

I vagrant box file that was packaged on a Macbook. I transferred the file into Windows on my Surface Book and getting some permission error. To fix this, other people suggested to enable virtualization and disable Hyper-V, which I have done…
user1187968
  • 7,154
  • 16
  • 81
  • 152
2
votes
1 answer

Sending http request to server running on a VirtualBox linux machine from the host machine

I currently am developing a REST server using Microsoft's cpprestsdk called Casablanca. I have the server running on a linux virtual machine using Oracle's VirtualBox. I have the VM set up to use bridged adapter networking, and can successfully SSH…
Biggytiny
  • 519
  • 10
  • 29
2
votes
0 answers

VirtualBox port forwarding preventing port binding on host

I have a NodeJS server running within a Docker container. I'm using Docker Toolbox for this, therefore I have a VirtualBox VM that I'm running my container in. My server needs to use a dgram websocket to bind to 0.0.0.0:3000 on the host and listen…
shannong
  • 21
  • 2
2
votes
1 answer

Developing on VM

I'm currently using a VirtualBox VM for development. It's a CENTOS box with Apache and PHP installed using the instructions at: http://tuline.com/wp-content/uploads/2015/11/A-Centos-Web-Development-Environment.pdf I set the web folder on the server…
Russell
  • 476
  • 2
  • 10
2
votes
2 answers

Maven `mvn -PautoInstallPackage clean install` fail from VM guest to host

TLDR; The following command fails to run in Virtual Box guest OS to build and install an artifact onto an AEM 6.3 Author instance running on the host OS. mvn -PautoInstallPackage clean install The host machine is behind a corporate proxy and guest…
Nadee
  • 97
  • 2
  • 9
2
votes
1 answer

Execute Spark job on Hortonworks Sandbox from outside

I'm running Hortonworks Sandbox as a virtual machine using VirtualBox. Using an IDE in my local machine (IntelliJ Idea), I try to execute a Spark Job at the sandbox virtual machine from my local machine but without success. This is the spark job…
2
votes
2 answers

Access local Kubernetes cluster running in Virtualbox

I have configured a Kubernetes cluster using kubeadm, by creating 3 Virtualbox nodes, each node running CentOS (master, node1, node2). Each virtualbox virtual machine is configured using 'Bridge' networking. As a result, I have the following…
Salvatore
  • 1,145
  • 3
  • 21
  • 42
2
votes
2 answers

How do you start a debug mode in Virtualbox GUI tool?

I've been playing with VirtualBox implementations of Xubuntu. I'm learning provisioning test boxes with content using both VBoxManage and Vagrant. Unfortunately my boxes work very erratically. I'd like to enable the debug mode in VirtualBox to…
zipzit
  • 3,778
  • 4
  • 35
  • 63
2
votes
1 answer

Running `docker stack deploy` on a local VM results in "No such image" error even though the image is on the public registry

I'm trying to follow the Docker Get Started guide. Currently I'm at part 4. Everything up until the point docker stack deploy -c docker-compose.yml getstartedlab worked well. However, after trying to deploy the services, when I run docker stack ps…
xji
  • 7,341
  • 4
  • 40
  • 61
2
votes
1 answer

Cannot access USB UART in VirtualBox Guest on macos Host

I've created a virtualbox via docker-machine: $ docker-machine create --driver virtualbox default Within the Guest-OS I'd like to access my USB-Serial device, which is a Nordic nRF52840 DevKit, which is listed in macos as…
martin
  • 591
  • 1
  • 8
  • 17
2
votes
0 answers

OpenStack IP address not found

I'm trying to deploy OpenStack via DevStack on a Ubuntu Server LTS distribution with Virtual Box. After follow all this steps I am unable to access to Horizon on a web browser on my Host Machine Distribution (Windows10). I have checked with ifconfig…
VCM
  • 51
  • 9
2
votes
1 answer

Error executing action `install` on resource 'apt_package[ntp]'

I am trying to install the package 'ntp' on a vagrant instance using chef. This is my chef recipe: package 'ntp' do action :install end I have also tried using this as my recipe: package 'ntp' What is wrong with these scripts? Also what…
izzzi
  • 35
  • 5
2
votes
1 answer

I have a vmlinux which is build using arm cross compiler. Can I use virtual box to boot this vmlinux?

I want to crash the vmlinux I have and then debug it. But I do not have arm processor. Can I use virtual box to boot this vmlinux and then I can use debugfs interface to make my vmlinux crash?