I tried looking into this myself but I couldn’t really find much about this error. The only solutions I could find didn’t work for me. The first one was to use mokutil but at the point where I was supposed to run sudo mokutil --import MOK.der it gives me the error message “Failed to get file status, MOK.der” even though I did everything it told me to do. The other one was to disable secure boot and then run sudo '/sbin/vboxconfig' but even though it looked like it worked, I’m still getting the error message. I have re-enabled secure boot, so you don’t have to worry about that.

Is there something else I can try or does VirtualBox not work in Linux Mint for some reason?

  • @EddyBot@feddit.de
    link
    fedilink
    132 years ago

    if you just need software to set up virtual machines you might look into Gnome Boxes or virt-manager which don’t require external kernel modules like Virtuap Box to work

    anyway these issues typically happen on Ubuntu based distros (like Linux Mint) because your linux kernel is to new for the Virtual Box version (or the Virtual Box version is simply too old)

    • @vortexal@lemmy.mlOP
      link
      fedilink
      32 years ago

      So I tried virt-manager but it’s giving me an error message about not being able to connect to “libvirt qemu:///system” and it wont let me install a virtual machine. I’m assuming that I’m supposed to download “libvirtd”, but I can’t figure out how to install it. I think it wants me to build it from the source but there doesn’t seem to be a guide on how to do that.

      • @Pantherina@feddit.de
        link
        fedilink
        4
        edit-2
        2 years ago

        Yayy, I have the same problem.

        Try a

        sudo systemctl enable --now libvirtd
        

        I dont know how manual everything is in Mint

        Also add your user to thr libvirt group

        groupadd libvit
        sudo usermod -aG libvirt $USER
        
      • Nik282000
        link
        fedilink
        52 years ago

        virt-manager

        I’ve used VirtualBox for years and only just tried virt-manager. I wish I had tried years ago, so much simpler and it is in my distro’s default repository.

        • @vortexal@lemmy.mlOP
          link
          fedilink
          12 years ago

          I tried virt-manager but it’s giving me an error message about not being able to connect to “libvirt qemu:///system” and it wont let me install a virtual machine. I’m assuming that I’m supposed to download “libvirtd”, but I can’t figure out how to install it. I think it wants me to build it from the source but there doesn’t seem to be a guide on how to do that.

          • @Pantherina@feddit.de
            link
            fedilink
            12 years ago

            On fedora its sudo dnf install qemu qemu-kvm virt-manager

            Virt-manager alone is just the viewer, its also intended to be used for things like remote viewing. This would be an easy solution

    • @vortexal@lemmy.mlOP
      link
      fedilink
      12 years ago

      I’m currently installing virt-manager but I ran into a problem with Gnome Boxes where I’m trying to run a Windows XP virtual machine but I can’t figure out how to get files from my host to the guest. Apparently, I need some software to be running on the guest but the website that I need to download the software from doesn’t work in internet explorer and I obviously can’t just download it on the host and transfer it to the guest.

  • @bizdelnick@lemmy.ml
    link
    fedilink
    11
    edit-2
    2 years ago

    First of all, check that hardware virtualization is enabled in your UEFI setup.

    You need to have packages virtualbox-dkms and linux-headers installed (together with all their dependencies, but you don’t have to check them manually). linux-headers must be of the same version as linux-image. That’s all that you need to get driver properly built. Don’t listen those users who recommend you to remove and reinstall these packages or install additional packages manually, this kind of magic doesn’t work.

    Also note that you cannot use kvm and virtualbox simultaneously. If you are using some kvm-based virtualization system, it causes a conflict.

  • @penquin@lemm.ee
    link
    fedilink
    4
    edit-2
    2 years ago

    Try

    sudo apt-get install linux-headers-$(uname -r)

    Then reboot your machine. Virtualbox needs the kernel headers to work.

    • @vortexal@lemmy.mlOP
      link
      fedilink
      12 years ago

      I tried that but It’s giving me the error message E: Unable to locate package kernel-headers.

      • @penquin@lemm.ee
        link
        fedilink
        12 years ago

        My bad, I haven’t run Debian based distros for a while. Run this instead

        sudo apt-get install linux-headers-$(uname -r)

        I’ve edited my comment

        • @vortexal@lemmy.mlOP
          link
          fedilink
          12 years ago

          It’s telling me that they are already installed: j@j-HP-Notebook:~$ sudo apt-get install linux-headers-$(uname -r) [sudo] password for j: Reading package lists... Done Building dependency tree... Done Reading state information... Done linux-headers-5.15.0-88-generic is already the newest version (5.15.0-88.98). linux-headers-5.15.0-88-generic set to manually installed. The following packages were automatically installed and are no longer required: brave-keyring libu2f-udev linux-headers-5.15.0-76 linux-headers-5.15.0-76-generic linux-headers-5.15.0-78 linux-headers-5.15.0-78-generic linux-headers-5.15.0-79 linux-headers-5.15.0-79-generic linux-headers-5.15.0-82 linux-headers-5.15.0-82-generic linux-headers-5.15.0-83 linux-headers-5.15.0-83-generic linux-headers-5.15.0-84 linux-headers-5.15.0-84-generic linux-headers-5.15.0-86 linux-headers-5.15.0-86-generic linux-image-5.15.0-76-generic linux-image-5.15.0-78-generic linux-image-5.15.0-79-generic linux-image-5.15.0-82-generic linux-image-5.15.0-83-generic linux-image-5.15.0-84-generic linux-image-5.15.0-86-generic linux-modules-5.15.0-76-generic linux-modules-5.15.0-78-generic linux-modules-5.15.0-79-generic linux-modules-5.15.0-82-generic linux-modules-5.15.0-83-generic linux-modules-5.15.0-84-generic linux-modules-5.15.0-86-generic linux-modules-extra-5.15.0-76-generic linux-modules-extra-5.15.0-78-generic linux-modules-extra-5.15.0-79-generic linux-modules-extra-5.15.0-82-generic linux-modules-extra-5.15.0-83-generic linux-modules-extra-5.15.0-84-generic linux-modules-extra-5.15.0-86-generic Use 'sudo apt autoremove' to remove them. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

          • @penquin@lemm.ee
            link
            fedilink
            22 years ago

            Then restart you machine. That normally needs to be done after installing virtualbox. See if it works.

            • @vortexal@lemmy.mlOP
              link
              fedilink
              22 years ago

              I already restarted my computer twice after installing it, is there any reason I would have restart my computer a third time?

                • @vortexal@lemmy.mlOP
                  link
                  fedilink
                  12 years ago

                  Is there something specific from that link that I’m supposed to use because I tired the top solution and it just gave me a bunch of error messages:

                  j@j-HP-Notebook:~$ sudo apt-get install build-essential linux-headers-`uname -r` dkms virtualbox-dkms
                  [sudo] password for j:  
                  Reading package lists... Done
                  Building dependency tree... Done
                  Reading state information... Done
                  dkms is already the newest version (2.8.7-2ubuntu2.1mint1).
                  build-essential is already the newest version (12.9ubuntu3).
                  linux-headers-5.15.0-88-generic is already the newest version (5.15.0-88.98).
                  The following packages were automatically installed and are no longer required:
                    libqt5help5 libqt5sql5 libqt5sql5-sqlite libqt5xml5 libsdl-ttf2.0-0
                  Use 'sudo apt autoremove' to remove them.
                  The following additional packages will be installed:
                    libgsoap-2.8.117 liblzf1 libvncserver1 virtualbox virtualbox-qt
                  Suggested packages:
                    vde2 virtualbox-guest-additions-iso
                  The following packages will be REMOVED:
                    virtualbox-7.0
                  The following NEW packages will be installed:
                    libgsoap-2.8.117 liblzf1 libvncserver1 virtualbox virtualbox-dkms virtualbox-qt
                  0 upgraded, 6 newly installed, 1 to remove and 0 not upgraded.
                  Need to get 0 B/46.5 MB of archives.
                  After this operation, 43.0 MB disk space will be freed.
                  Do you want to continue? [Y/n] y
                  debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
                  (Reading database ... 642834 files and directories currently installed.)
                  Removing virtualbox-7.0 (7.0.12-159484~Ubuntu~jammy) ...
                  debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
                  dpkg: error processing package virtualbox-7.0 (--remove):
                   installed virtualbox-7.0 package pre-removal script subprocess returned error exit status 1
                  dpkg: too many errors, stopping
                  vboxdrv.sh: failed: modprobe vboxdrv failed. Please use 'dmesg' to find out why.
                  
                  There were problems setting up VirtualBox.  To re-start the set-up process, run
                    /sbin/vboxconfig
                  as root.  If your system is using EFI Secure Boot you may need to sign the
                  kernel modules (vboxdrv, vboxnetflt, vboxnetadp, vboxpci) before you can load
                  them. Please see your Linux system's documentation for more information.
                  Errors were encountered while processing:
                   virtualbox-7.0
                  Processing was halted because there were too many errors.
                  E: Sub-process /usr/bin/dpkg returned an error code (1)
                  j@j-HP-Notebook:~$ sudo modprobe vboxdrv
                  modprobe: ERROR: could not insert 'vboxdrv': Operation not permitted
                  
    • @vortexal@lemmy.mlOP
      link
      fedilink
      12 years ago

      That doesn’t work for me as they give me error messages:

      j@j-HP-Notebook:~$ sudo apt remove virtualbox-dkms
      [sudo] password for j:  
      Reading package lists... Done
      Building dependency tree... Done
      Reading state information... Done
      Package 'virtualbox-dkms' is not installed, so not removed
      0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
      j@j-HP-Notebook:~$ sudo apt-get install make gcc build-essential linux-headers-'uname -r' dkms
      Reading package lists... Done
      Building dependency tree... Done
      Reading state information... Done
      E: Unable to locate package linux-headers-uname -r
      j@j-HP-Notebook:~$ sudo apt install virtualbox-dkms
      Reading package lists... Done
      Building dependency tree... Done
      Reading state information... Done
      The following packages were automatically installed and are no longer required:
        libqt5help5 libqt5sql5 libqt5sql5-sqlite libqt5xml5 libsdl-ttf2.0-0
      Use 'sudo apt autoremove' to remove them.
      The following additional packages will be installed:
        libgsoap-2.8.117 liblzf1 libvncserver1 virtualbox virtualbox-qt
      Suggested packages:
        vde2 virtualbox-guest-additions-iso
      The following packages will be REMOVED:
        virtualbox-7.0
      The following NEW packages will be installed:
        libgsoap-2.8.117 liblzf1 libvncserver1 virtualbox virtualbox-dkms virtualbox-qt
      0 upgraded, 6 newly installed, 1 to remove and 0 not upgraded.
      Need to get 0 B/46.5 MB of archives.
      After this operation, 43.0 MB disk space will be freed.
      Do you want to continue? [Y/n] y
      debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
      (Reading database ... 642834 files and directories currently installed.)
      Removing virtualbox-7.0 (7.0.12-159484~Ubuntu~jammy) ...
      debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by another process: Resource temporarily unavailable
      dpkg: error processing package virtualbox-7.0 (--remove):
       installed virtualbox-7.0 package pre-removal script subprocess returned error exit status 1
      dpkg: too many errors, stopping
      vboxdrv.sh: failed: modprobe vboxdrv failed. Please use 'dmesg' to find out why.
      
      There were problems setting up VirtualBox.  To re-start the set-up process, run
        /sbin/vboxconfig
      as root.  If your system is using EFI Secure Boot you may need to sign the
      kernel modules (vboxdrv, vboxnetflt, vboxnetadp, vboxpci) before you can load
      them. Please see your Linux system's documentation for more information.
      Errors were encountered while processing:
       virtualbox-7.0
      Processing was halted because there were too many errors.
      E: Sub-process /usr/bin/dpkg returned an error code (1)
      
      • @kuneho@lemmy.world
        link
        fedilink
        2
        edit-2
        2 years ago

        I guess the “uname -r” part should be $(uname -r) but this isn’t the problem with vbox IMO

        • @vortexal@lemmy.mlOP
          link
          fedilink
          22 years ago

          I’m not sure what you mean but it doesn’t matter because VirtualBox still isn’t working and I’ve decided to uninstall it and try some alternatives that people have mentioned.

    • @vortexal@lemmy.mlOP
      link
      fedilink
      12 years ago

      No, it’s giving me the following error message:

      j@j-HP-Notebook:~$ sudo modprobe vboxdrv
      [sudo] password for j:  
      modprobe: ERROR: could not insert 'vboxdrv': Operation not permitted
      
  • danielfgom
    link
    fedilink
    English
    12 years ago

    That’s really odd. I’m running Linux Mint Debian Edition 6 and I installed virtual box from the oracle website just fine.

    As others have said, try Gnome Boxes and see if they works. If it also has issues then it’s something with your system.

    • @vortexal@lemmy.mlOP
      link
      fedilink
      22 years ago

      I actually just tried Gnome Boxes and it seems to work mostly fine but the only problem I’m having is that I’m trying to run a Windows XP virtual machine but I can’t figure out how to get files from my host to the guest. Apparently, I need some software to be running on the guest but the website that I need to download the software from doesn’t work in internet explorer and I obviously can’t just download it on the host and transfer it to the guest.

      • danielfgom
        link
        fedilink
        English
        32 years ago

        Have you tried to download it on the host to a USB (formatted with fat32) and then in Boxes select that usb in Windows to copy and run the software?

        • @vortexal@lemmy.mlOP
          link
          fedilink
          22 years ago

          While I have already found a solution (and with it found out that the software doesn’t even work in windows xp) the only way to download Boxes that I could find was through flathub, which doesn’t allow usb devices for some reason. What does work is that I can just put all of the files I want transferred into an iso file and mount it to the VM.

          Also, if there is a way to install Boxes outside of flathub, I’ll have to check it out tomorrow because of late it is for me right now.