You are not logged in.

#1 2023-04-14 05:33:53

BryanLiang
Member
Registered: 2023-04-14
Posts: 10

[Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

I installed virtualbox 7.0.6 from distro repository. And my problem is that everytime I launch virtualbox and open the Network setting menu, there is an error message.

Failed to acquire VirtualBox parameter.

Callee RC:
NS_ERROR_NOT_IMPLEMENTED (0X80004001)

Here is the log which may be related to the problem

00:00:00.001887 main     IPC socket path: /tmp/.vbox-bryan-ipc/ipcd
00:00:00.106064 nspr-2   VirtualBox: object creation starts
00:00:00.106122 nspr-2   Home directory: '/home/bryan/.config/VirtualBox'
00:00:00.106206 nspr-2   Loading settings file "/home/bryan/.config/VirtualBox/VirtualBox.xml" with version "1.14-linux"
00:00:00.107197 nspr-2   USB: Unknown USB device detected (idVendor: 0x8087, idProduct: 0x0032)
00:00:00.107440 nspr-2   Successfully initialised host USB using sysfs
00:00:00.117093 nspr-2   NetIfAdpCtlOut: VBoxNetAdpCtl: Error while retrieving link speed for wlan0: VBoxNetAdpCtl: ioctl failed: Operation not supported
00:00:00.117743 nspr-2   HostDnsMonitor: initializing
00:00:00.117955 nspr-2   NAT: resolv.conf: nameserver 119.29.29.29
00:00:00.117962 nspr-2   NAT: resolv.conf: nameserver 223.5.5.5
00:00:00.117967 nspr-2   NAT: resolv.conf: nameserver 2400:3200::1
00:00:00.117972 nspr-2   HostDnsMonitor: updating information
00:00:00.117984 nspr-2   HostDnsMonitor: old information
00:00:00.117987 nspr-2     no server entries
00:00:00.117989 nspr-2     no domain set
00:00:00.117991 nspr-2     no search string entries
00:00:00.117993 nspr-2   HostDnsMonitor: new information
00:00:00.117995 nspr-2     server 1: 119.29.29.29
00:00:00.117997 nspr-2     server 2: 223.5.5.5
00:00:00.118000 nspr-2     server 3: 2400:3200::1
00:00:00.118002 nspr-2     no domain set
00:00:00.118004 nspr-2     no search string entries
00:00:00.120085 nspr-2   VD: VDInit finished with VINF_SUCCESS
00:00:00.120233 nspr-2   ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005) aIID={aac6c7cb-a371-4c58-ab51-0616896b2f2c} aComponent={SystemPropertiesWrap} aText={Cannot determine default Guest Additions ISO location. Most likely they are not available}, preserve=false aResultDetail=0
00:00:00.120789 nspr-2   VirtualBox: object created
00:00:03.233320 nspr-2   Saving settings file "/home/bryan/.config/VirtualBox/VirtualBox.xml" with version "1.14-linux"
00:00:03.245681 nspr-2   Finished saving settings file "/home/bryan/.config/VirtualBox/VirtualBox.xml"
00:00:03.262779 nspr-2   NetIfAdpCtlOut: VBoxNetAdpCtl: Error while retrieving link speed for wlan0: VBoxNetAdpCtl: ioctl failed: Operation not supported
00:01:11.358812 main     VirtualBox: object deletion starts
00:01:11.359292 main     HostDnsMonitor: shutting down ...
00:01:11.359646 main     HostDnsMonitor: shut down
00:01:11.370591 Watcher  ERROR [COM]: aRC=E_ACCESSDENIED (0x80070005) aIID={7682d5eb-f00e-44f1-8ca2-99d08b1cd607} aComponent={VirtualBoxWrap} aText={The object is not ready}, preserve=false aResultDetail=0
00:01:11.370666 main     VirtualBox: object deleted

Any idea to handle it?

Last edited by BryanLiang (2023-09-16 14:54:22)

Offline

#2 2023-04-14 07:33:59

d_fajardo
Member
Registered: 2017-07-28
Posts: 1,624

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

{Cannot determine default Guest Additions ISO location. Most likely they are not available},

It looks like you are missing Virtualbox Guest ISO. Install it and run the ISO inside the VM.

Last edited by d_fajardo (2023-04-14 07:35:32)

Offline

#3 2023-04-14 07:36:43

BryanLiang
Member
Registered: 2023-04-14
Posts: 10

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

But the fact is that I have not created any VM in virtualbox.

Offline

#4 2023-04-14 07:39:29

d_fajardo
Member
Registered: 2017-07-28
Posts: 1,624

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

Have a good read: https://wiki.archlinux.org/title/VirtualBox
Could be some modules are not loaded.

Offline

#5 2023-04-14 07:45:02

BryanLiang
Member
Registered: 2023-04-14
Posts: 10

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

Nope, I have checked the wiki before I posted the topic. All the modules are loaded.

┬─[bryan@Bryan-YOGA14s:~]─[15时43分54秒]
╰─>$ cat /usr/lib/modules-load.d/virtualbox-host-dkms.conf
vboxdrv
vboxnetadp
vboxnetflt
┬─[bryan@Bryan-YOGA14s:~]─[15时43分59秒]
╰─>$ lsmod | grep vbox
vboxnetflt             40960  0
vboxnetadp             28672  0
vboxdrv               692224  2 vboxnetadp,vboxnetflt

Offline

#6 2023-04-23 10:27:53

dff040606
Member
Registered: 2023-04-23
Posts: 2

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

My system is manjaro, and I had the same problem as you, I solved it by installing the VirtualBox Extension Pack(corresponding version).

Offline

#7 2023-04-23 10:30:37

dff040606
Member
Registered: 2023-04-23
Posts: 2

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

Here is the 7.0.6 Extension Pack  https://download.virtualbox.org/virtual … ox-extpack

Offline

#8 2023-04-23 10:36:48

BryanLiang
Member
Registered: 2023-04-14
Posts: 10

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

I see. I will give it a try some time later. Thanks for your reply.

Offline

#9 2023-04-23 11:00:28

BryanLiang
Member
Registered: 2023-04-14
Posts: 10

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

It is not working though I installed the Extension Pack.

https://s2.loli.net/2023/04/23/rq5EcluB23OReSU.png


moderator edit -- replaced oversized image with link.
Pasting pictures and code

Last edited by 2ManyDogs (2023-04-23 11:49:13)

Offline

#10 2023-05-31 20:05:00

shoxxdj
Member
Registered: 2023-05-31
Posts: 1

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

Any update ?
I am in the same situation as you

Offline

#11 2023-06-18 01:05:45

BryanLiang
Member
Registered: 2023-04-14
Posts: 10

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

shoxxdj wrote:

Any update ?
I am in the same situation as you

The problem still exists. And I have no ideas about it

Offline

#12 2023-07-16 07:22:48

Buagir
Member
Registered: 2023-07-16
Posts: 1

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

Hey,
Any updates?
Have same issue. And I can't work with "hostonlynet":
> VBoxManage: error: Invalid command 'hostonlynet'
All modules are loaded, extended pack was installed.

Offline

#13 2023-08-18 14:44:12

realasking
Member
Registered: 2023-08-18
Posts: 3

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

Solved now by removing OSE version virtualbox from the extra repo, and reinstall virtualbox-bin and virtualbox-bin-guest-iso from AUR.
================================
Also have the same problem with 7.0.97.
I've loaded all modules and installed the extended pack.

Last edited by realasking (2023-08-19 00:46:38)

Offline

#14 2023-09-16 14:53:49

BryanLiang
Member
Registered: 2023-04-14
Posts: 10

Re: [Solved #13]Virtualbox Failed to acquire VirtualBox parameter.

Confirmed. Installing virutalbox-bin from AUR solves this problem.

Offline

Board footer

Powered by FluxBB