Search found 9 matches

by Adam_Ullrich56
12. Oct 2021, 03:09
Forum: Using VirtualBox
Topic: How can I see the unattended installation options in the GUI?
Replies: 2
Views: 5814

How can I see the unattended installation options in the GUI?

I was reading this article and found this image in section 3.1. I have VirtualBox on Windows 10 and I don't see anywhere the "Skip Unattended Installation" checkbox anywhere. Where is it? https://blogs.oracle.com/content/published/api/v1.1/assets/CONT14768E43DEA44B789C361CC071F71854/native...
by Adam_Ullrich56
11. Oct 2021, 20:35
Forum: Using VirtualBox
Topic: What is SDL?
Replies: 1
Views: 5380

What is SDL?

https://www.virtualbox.org/manual/ch08.html#vboxmanage-cmd-overview startvm <uuid|vmname>... [--type gui|sdl|headless|separate] [-E|--putenv <NAME>[=<VALUE>]] I have been searching in Google for the term "What is SDL in virtualbox" but couldn't find anything useful, and the linked VirtualB...
by Adam_Ullrich56
5. Jun 2020, 01:06
Forum: VirtualBox OSE
Topic: Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED
Replies: 11
Views: 113315

Re: Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED

I am going to paste here all commands in order that I had to execute in my Ubuntu 20.04 LTS 64 bits to make life of other developers easier: Tip: copy and paste all the commands in a script.sh file, make it executable with chmod u+x script.sh and then execute it with sudo. In total it takes around 1...
by Adam_Ullrich56
5. Jun 2020, 01:01
Forum: VirtualBox OSE
Topic: Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED
Replies: 11
Views: 113315

Re: Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED

Fixed.

Basically I had to recompile the kernel with this:

Code: Select all

sudo ./vboxdrv.sh setup
Note: If you get an error like "UICommon.so not found" afterwards try changing current directory to the root folder of VirtualBox source code and execute this:

Code: Select all

sudo chmod -R 777 ./
by Adam_Ullrich56
4. Jun 2020, 23:27
Forum: VirtualBox OSE
Topic: /usr/lib/virtualbox/check_module_dependencies.sh: not found
Replies: 1
Views: 74762

Re: /usr/lib/virtualbox/check_module_dependencies.sh: not found

I figured it out. All I had to do is this:

Code: Select all

source ./env.sh
by Adam_Ullrich56
4. Jun 2020, 21:39
Forum: VirtualBox OSE
Topic: /usr/lib/virtualbox/check_module_dependencies.sh: not found
Replies: 1
Views: 74762

/usr/lib/virtualbox/check_module_dependencies.sh: not found

Hello, I've been trying to compile VirtualBox from source code, but when I tried to rebuild VirtualBox kernel modules I get this error: $ cd VirtualBox-6.1.8 $ ./out/linux.amd64/debug/bin/vboxdrv.sh setup vboxdrv.sh: Stopping VirtualBox services. vboxdrv.sh: Starting VirtualBox services. vboxdrv.sh:...
by Adam_Ullrich56
4. Jun 2020, 10:31
Forum: VirtualBox OSE
Topic: Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED
Replies: 11
Views: 113315

Re: Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED

I just tried to compile VirtualBox without debug information (I need VirtualBox compiled with debug information, but I tried this just to see if I have any problems): source ./env.sh kmk all cd out/linux.amd64/release/bin/src/ make sudo make install cd .. modprobe vboxdrv sudo /sbin/vboxconfig Now I...
by Adam_Ullrich56
1. Jun 2020, 02:35
Forum: VirtualBox OSE
Topic: Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED
Replies: 11
Views: 113315

Building VirtualBox 6.1.8 on Linux: VERR_VM_DRIVER_NOT_INSTALLED

I just downloaded the VirtualBox source code and built it using these instructions: https://www.virtualbox.org/wiki/Linux%20build%20instructions I want to build the source code with debug information, so I execute this: kmk BUILD_TYPE=debug I am using a fresh Ubuntu installation as host operating sy...
by Adam_Ullrich56
14. Mar 2020, 19:46
Forum: VirtualBox on Windows Hosts
Topic: Virtualbox debugging -- g: error: The VM is already running
Replies: 1
Views: 1098

Virtualbox debugging -- g: error: The VM is already running

I'm trying to debug an operating system that I am developing. When I start up the VM machine with VirtualBoxVM --startvm "X" --debug the VM starts paused, but when I execute the 'g' command to continue execution I get this error: g: error: The VM is already running But when I start my virt...