virtualbox
No description set
- Devel package for openSUSE:Factory
-
11
derived packages
- Developed at SCM
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout Virtualization/virtualbox && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
UserManual.pdf | 0004338868 4.14 MB | |
VirtualBox-5.1.8-patched.tar.bz2 | 0080056974 76.3 MB | |
_constraints | 0000000155 155 Bytes | |
_link | 0000000145 145 Bytes | |
_service | 0000000136 136 Bytes | |
gcc5-real-support.patch | 0000001566 1.53 KB | |
modify_for_4_8_bo_move.patch | 0000001272 1.24 KB | |
smap.diff | 0000000602 602 Bytes | |
vbox-default-os-type.diff | 0000001287 1.26 KB | |
vbox-deprec-gsoap-service-proxies.diff | 0000000963 963 Bytes | |
vbox-disable-updates.diff | 0000002214 2.16 KB | |
vbox-fpie.diff | 0000001533 1.5 KB | |
vbox-gsoapssl-deps.diff | 0000000736 736 Bytes | |
vbox-no-build-dates.diff | 0000006566 6.41 KB | |
vbox-permissions_warning.diff | 0000002624 2.56 KB | |
vbox-python-detection.diff | 0000001846 1.8 KB | |
vbox-smc-napa.diff | 0000000557 557 Bytes | |
vbox-usb-warning.diff | 0000002724 2.66 KB | |
vbox-vboxadd-init-script.diff | 0000005503 5.37 KB | |
vbox-vboxdrv-init-script.diff | 0000002701 2.64 KB | |
vbox-vboxweb-init-script.diff | 0000000520 520 Bytes | |
vbox_prevent_wrong_SONAME.patch | 0000000501 501 Bytes | |
vbox_remove_smp_mflags.patch | 0000000784 784 Bytes | |
virtualbox-60-vboxguest.rules | 0000000186 186 Bytes | |
virtualbox-LocalConfig.kmk | 0000000498 498 Bytes | |
virtualbox-default.virtualbox | 0000001281 1.25 KB | |
virtualbox-guest-kmp-files | 0000000186 186 Bytes | |
virtualbox-guest-preamble | 0000000355 355 Bytes | |
virtualbox-host-kmp-files | 0000000223 223 Bytes | |
virtualbox-host-preamble | 0000000353 353 Bytes | |
virtualbox-patch-source.sh | 0000001157 1.13 KB | |
virtualbox-rpmlintrc | 0000000172 172 Bytes | |
virtualbox-sed-params.patch | 0000001296 1.27 KB | |
virtualbox-snpritnf-buffer-overflow.patch | 0000000534 534 Bytes | |
virtualbox-sysconfig.vbox | 0000000675 675 Bytes | |
virtualbox-system-x.patch | 0000002083 2.03 KB | |
virtualbox-vboxes | 0000008884 8.68 KB | |
virtualbox-wrapper.sh | 0000000267 267 Bytes | |
virtualbox.changes | 0000280490 274 KB | |
virtualbox.spec | 0000032610 31.8 KB |
Revision 281 (latest revision is 755)
Larry Finger (lwfinger)
committed
(revision 281)
- Fixes for VUL-0: CVE-2016-5501,CVE-2016-5538,CVE-2016-5605,CVE-2016-5608,CVE-2016-5610,CVE-2016-5611,CVE-2016-561313 boo #1005621. - Add patch file "vbox_remove_smp_mflags.patch" to limit number of simultaneous make jobs. - Version bump to 5.1.8 (released 2016-10-18 by Oracle) This is a maintenance release. The following items were fixed and/or added: GUI: fixed keyboard shortcut handling regressions (Mac OS X hosts only; bugs #15937 and #15938) GUI: fixed keyboard handling regression for separate UI (Windows hosts only; bugs #15928) NAT: don't exceed the maximum number of "search" suffixes. Patch from bug #15948. NAT: fixed parsing of port-forwarding rules with a name which contains a slash (bug #16002) NAT Network: when the host has only loopback nameserver that cannot be mapped to the guests (e.g. dnsmasq running on 127.0.1.1), make DHCP supply NAT Network DNS proxy as nameserver. Bridged Network: prevent flooding syslog with packet allocation error messages (bug #15569) Audio: now using Audio Queues on Mac OS X hosts Audio: fixed recording with the PulseAudio backend (5.1 regression) Audio: various bugfixes Snapshots: fixed regression in 5.1.4 for deleting snapshots with several disks (bug #15831) Snapshots: crash fix and better error reporting when snapshot deletion failed Storage: some fixes for the NVMe emulation with Windows guests API: fixed initialization of SAS controllers (bug #15972) Build system: make it possible to build VBox on systems which default to Python 3 Windows Additions / VGA: if the guest's power management turns a virtual screen off, blank the corresponding VM window rather than hide the window Windows Additions: fixed a generic bug which could lead to freezing shared folders (bug #15662) Linux hosts / guests: fix for kernels with CONFIG_CPUMASK_OFFSTACK set (bug #16020) Linux Additions: don't require all virtual consoles be in text mode. This should fix cases when the guest is booted with a graphical boot screen (bug #15683) Linux Additions: added depmod overrides for the vboxguest and vboxsf kernel modules to fix conflicts with modules shipped by certain Linux distributions X11 Additions: disable 3D on the guest if the host does not provide enough capabilities (bug #15860)
Comments 5
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
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 ofCallbackEPFiPS
(theDo
part is that noexcept specifier). Well, in short, that's the bad part of the ext pack being closed-source.Also how can I submit issues?
https://bugzilla.opensuse.org/ , "File a bug" icon.
Just filed a bug there: https://bugzilla.opensuse.org/show_bug.cgi?id=1231225