virtualbox

Edit Package virtualbox
No description set
Refresh
Refresh
Source Files
Filename Size Changed
Fix_for_server_1.19.patch 0000001771 1.73 KB
README.autostart 0000000992 992 Bytes
README.build 0000009247 9.03 KB
UserManual.pdf 0004995165 4.76 MB
VirtualBox-5.2.10-xclient.patch 0000001390 1.36 KB
VirtualBox-6.1.38-patched.tar.bz2 0120745170 115 MB
VirtualBox.appdata.xml 0000000820 820 Bytes
_constraints 0000000207 207 Bytes
_multibuild 0000000050 50 Bytes
_service 0000000136 136 Bytes
fix-missing-includes-with-qt-5.15.patch 0000000954 954 Bytes
fix_conflict_between_host_and_guest.patch 0000000553 553 Bytes
fix_lib_search.patch 0000000989 989 Bytes
fix_usb_rules.sh 0000000327 327 Bytes
fixes_for_Leap42.3.patch 0000000956 956 Bytes
fixes_for_Qt5.11.patch 0000001094 1.07 KB
fixes_for_gcc10.patch 0000002060 2.01 KB
fixes_for_leap15.2.patch 0000008466 8.27 KB
fixes_for_leap15.3.patch 0000001017 1017 Bytes
fixes_for_leap15.4.patch 0000000000 0 Bytes
fixes_for_makefile.patch 0000029859 29.2 KB
fixes_for_python.patch 0000000615 615 Bytes
fixes_for_qt5.13.patch 0000003747 3.66 KB
fixes_for_sle12.patch 0000009472 9.25 KB
gcc5-real-support.patch 0000000716 716 Bytes
handle_gsoap_208103.patch 0000000743 743 Bytes
internal-headers.patch 0000002245 2.19 KB
modify_for_4_8_bo_move.patch 0000000885 885 Bytes
remove_vbox_video_build.patch 0000001918 1.87 KB
security_fixes.patch 0000001592 1.55 KB
smap.diff 0000000605 605 Bytes
turn_off_cloud_net.patch 0000000388 388 Bytes
update-extpack.sh 0000002452 2.39 KB
vb-6.1.16-modal-dialog-parent.patch 0000009439 9.22 KB
vbox-default-os-type.diff 0000001298 1.27 KB
vbox-deprec-gsoap-service-proxies.diff 0000000966 966 Bytes
vbox-disable-updates.diff 0000002311 2.26 KB
vbox-fpie.diff 0000001536 1.5 KB
vbox-gsoapssl-deps.diff 0000000760 760 Bytes
vbox-no-build-dates.diff 0000018700 18.3 KB
vbox-permissions_warning.diff 0000002539 2.48 KB
vbox-python-py310.patch 0000002554 2.49 KB
vbox-python-selection.patch 0000008893 8.68 KB
vbox-smc-napa.diff 0000000560 560 Bytes
vbox-suid-warning.diff 0000002457 2.4 KB
vbox-usb-warning.diff 0000003177 3.1 KB
vbox-vboxadd-init-script.diff 0000009855 9.62 KB
vbox-vboxdrv-init-script.diff 0000003232 3.16 KB
vbox_remove_smp_mflags.patch 0000000788 788 Bytes
vboxadd-service.service 0000000427 427 Bytes
vboxautostart-service.service 0000000497 497 Bytes
vboxautostart-service.sh 0000004133 4.04 KB
vboxclient.desktop 0000000412 412 Bytes
vboxclient.service 0000000275 275 Bytes
vboxconfig.sh 0000001968 1.92 KB
vboxdrv.service 0000000450 450 Bytes
vboxdrv.sh 0000012548 12.3 KB
vboxguestconfig.sh 0000002119 2.07 KB
vboxservice.service 0000000197 197 Bytes
vboxweb-service.service 0000000479 479 Bytes
vboxweb-service.sh 0000006735 6.58 KB
virtualbox-60-vboxdrv.rules 0000000747 747 Bytes
virtualbox-60-vboxguest.rules 0000000442 442 Bytes
virtualbox-LocalConfig.kmk 0000000498 498 Bytes
virtualbox-default.virtualbox 0000000937 937 Bytes
virtualbox-fix-ui-background-color.patch 0000016892 16.5 KB
virtualbox-kmp-files 0000000416 416 Bytes
virtualbox-kmp-preamble 0000000057 57 Bytes
virtualbox-patch-source.sh 0000001238 1.21 KB
virtualbox-rpmlintrc 0000000202 202 Bytes
virtualbox-sed-params.patch 0000001476 1.44 KB
virtualbox-snpritnf-buffer-overflow.patch 0000000537 537 Bytes
virtualbox-wrapper.sh 0000002592 2.53 KB
virtualbox.changes 0000430744 421 KB
virtualbox.spec 0000046720 45.6 KB
Revision 655 (latest revision is 755)
Larry Finger's avatar Larry Finger (lwfinger) accepted request 1006481 from Larry Finger's avatar Larry Finger (lwfinger) (revision 655)
- Add a "Provides: virtualbox-guest-x11" to virtualbox-guest-tools. boo#1203735
Comments 5

z's avatar

Virtualbox 7.1.0 Cannot install extension pack.

VBoxManage: error: Failed to install "/home/username/Downloads/virtualbox/Oracle_VirtualBox_Extension_Pack-7.1.0.vbox-extpack" VBoxManage: error: Failed to load the main module ('/usr/lib/virtualbox/ExtensionPacks/Oracle_VirtualBox_Extension_Pack/linux.amd64/VBoxPuelMain.so'): VERR_FILE_NOT_FOUND - /usr/lib/virtualbox/ExtensionPacks/Oracle_VirtualBox_Extension_Pack/linux.amd64/VBoxPuelMain.so: undefined symbol: _ZN21RTCRestBinaryResponse19setConsumerCallbackEPFiPS_PKvmjmmEPv VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ExtPackManagerWrap, interface IExtPackManager VBoxManage: error: Context: "RTEXITCODE handleExtPack(HandlerArg*)" at line 2099 of file VBoxManageMisc.cpp


Jan Engelhardt's avatar

The problem here is that the extension pack was built with -std=c++14 (or earlier), but virtualbox was built with -std=c++17 (or something later), which is a requirement because of the use of the <filesystem> header. As per https://en.cppreference.com/w/cpp/language/noexcept_spec , "noexcept" is part of the function signature in C++17, and so that's why virtualbox has—wait for it—..CallbackEPDoFiPS.. instead of CallbackEPFiPS (the Do part is that noexcept specifier). Well, in short, that's the bad part of the ext pack being closed-source.


openSUSE Build Service is sponsored by