Virtualbox crashes while booting Ubuntu

I am trying to install ubuntu on my virtualbox but as soon as ubuntu tries to boot it crashes. My report shows some problem with com.apple.tcc so it crashed due to privacy vionlation (line 55).

Code Block Process:               VirtualBoxVM [1848]Path:                  /Applications/VirtualBox.app/Contents/Resources/VirtualBoxVM.app/Contents/MacOS/VirtualBoxVMIdentifier:            org.virtualbox.app.VirtualBoxVMVersion:               6.1.14 (6.1.14)Code Type:             X86-64 (Native)Parent Process:        VBoxSVC [1847]Responsible:           VirtualBox [1843]User ID:               501Date/Time:             2020-09-09 11:28:15.774 +0200OS Version:            Mac OS X 10.15.6 (19G2021)Report Version:        12Anonymous UUID:        79C37049-B551-08D5-2CF2-C25F2DB0935ESleep/Wake UUID:       70CBD89F-7625-4063-9602-704FABC91B34Time Awake Since Boot: 7100 secondsTime Since Wake:       4600 secondsSystem Integrity Protection: enabledCrashed Thread:        2  Dispatch queue: com.apple.root.default-qosException Type:        EXC_CRASH (SIGABRT)Exception Codes:       0x0000000000000000, 0x0000000000000000Exception Note:        EXC_CORPSE_NOTIFYTermination Reason:    Namespace TCC, Code 0x0Thread 0:: Dispatch queue: com.apple.main-thread0   libsystem_kernel.dylib        	0x00007fff69bbedfa mach_msg_trap + 101   libsystem_kernel.dylib        	0x00007fff69bbf170 mach_msg + 602   com.apple.CoreFoundation      	0x00007fff2fa12ef5 CFRunLoopServiceMachPort + 2473   com.apple.CoreFoundation      	0x00007fff2fa119c2 CFRunLoopRun + 13194   com.apple.CoreFoundation      	0x00007fff2fa10e3e CFRunLoopRunSpecific + 4625   com.apple.HIToolbox           	0x00007fff2e63dabd RunCurrentEventLoopInMode + 2926   com.apple.HIToolbox           	0x00007fff2e63d7d5 ReceiveNextEventCommon + 5847   com.apple.HIToolbox           	0x00007fff2e63d579 _BlockUntilNextEventMatchingListInModeWithFilter + 648   com.apple.AppKit              	0x00007fff2cc83039 _DPSNextEvent + 8839   com.apple.AppKit              	0x00007fff2cc81880 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 135210  com.apple.AppKit              	0x00007fff2cc7358e -[NSApplication run] + 65811  libqcocoa.dylib               	0x000000010fa80eed QCocoaEventDispatcher::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 220512  org.qt-project.QtCoreVBox     	0x00000001093ad791 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 40113  org.qt-project.QtCoreVBox     	0x00000001093b1b4a QCoreApplication::exec() + 34614  VirtualBoxVM.dylib            	0x0000000109030d0e TrustedMain + 150215  org.virtualbox.app.VirtualBoxVM	0x0000000108968951 0x108965000 + 1467316  libdyld.dylib                 	0x00007fff69a7dcc9 start + 1Thread 1:0   libsystem_pthread.dylib       	0x00007fff69c7db68 start_wqthread + 0Thread 2 Crashed:: Dispatch queue: com.apple.root.default-qos0   libsystem_kernel.dylib        	0x00007fff69bdead6 abort_with_payload + 101   libsystem_kernel.dylib        	0x00007fff69be03df abort_with_payload_wrapper_internal + 802   libsystem_kernel.dylib        	0x00007fff69be0411 abort_with_payload + 93   com.apple.TCC                 	0x00007fff602b159f CRASHING_DUE_TO_PRIVACY_VIOLATION + 1634   com.apple.TCC                 	0x00007fff602af531 TCCAccessRequest_block_invoke.114 + 5005   com.apple.TCC                 	0x00007fff602afa58 __tccd_send_message_block_invoke + 2316   libxpc.dylib                  	0x00007fff69cc31ff _xpc_connection_reply_callout + 367   libxpc.dylib                  	0x00007fff69cc3187 _xpc_connection_call_reply_async + 698   libdispatch.dylib             	0x00007fff69a246c2 _dispatch_client_callout3 + 89   libdispatch.dylib             	0x00007fff69a3b15d _dispatch_mach_msg_async_reply_invoke + 36910  libdispatch.dylib             	0x00007fff69a335f9 _dispatch_kevent_worker_thread + 131611  libsystem_pthread.dylib       	0x00007fff69c7ea85 _pthread_wqthread + 36212  libsystem_pthread.dylib       	0x00007fff69c7db77 start_wqthread + 15


Answered by freddy_ in 631654022
Solved by opening virtualbox in terminal via:
Code Block languagesudo virtualbox



Accepted Answer
Solved by opening virtualbox in terminal via:
Code Block languagesudo virtualbox



sudo virtualbox worked for me after experiencing the same problem
it worked using sudo virtualbox. Thank you Freddy!

What is the reason behind sudo virtualbox?


Yes, sudo virtualbox works but what is the issue for not working normally, is it some permission issue?
If that's the case, can I change the permission of VirtualBox?

Thank you,
c4chale

Using sudo virtualbox definitely works, but it's a pain in the keister if you need to launch it all the time. I've made this a little easier by creating and AppleScript through automator. This is the code:

Code Block on run {input, parameters}		do shell script "/bin/bash -s <<'EOF'		cd /Applications/VirtualBox.app/Contents/MacOS		./VirtualBox		EOF" with administrator privileges		return input

It'll prompt you for your password—or you and poke the the fingerprint reader if you have one.

Cheers!

Mark
Virtualbox crashes while booting Ubuntu
 
 
Q