[SOLVED] Virtual Box Install Question

I have been working through the Arch Linux wiki regarding installing virtualbox.
I do not believe I have a custon kernel, as I would not know how to customize it, but here is my kernel info:
Name : linux
Version : 3.8.4-1
Description : The linux kernel and modules
Architecture : x86_64
URL : http://www.kernel.org/
Licenses : GPL2
Groups : base
Provides : kernel26=3.8.4
Depends On : coreutils linux-firmware kmod mkinitcpio>=0.7
Optional Deps : crda: to set the correct wireless channels of your
country
Required By : nvidia virtualbox-host-modules
Optional For : None
Conflicts With : kernel26
Replaces : kernel26
Installed Size : 64728.00 KiB
Packager : Tobias Powalowski <[email protected]>
Build Date : Wed 20 Mar 2013 05:16:17 PM EDT
Install Date : Tue 02 Apr 2013 09:36:32 AM EDT
Install Reason : Explicitly installed
Install Script : Yes
Validated By : Unknown
Following the wiki (https://wiki.archlinux.org/index.php/VirtualBox) I installed virtualbox and virtualbox-host-modules.
When I go to launch virtual box I get:
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (3.8.4-1-ARCH) or it failed toload. Please reinstall
the kernel module virtualbox-host-modules or if you don't use our stock kernel
compile the modules withsudo dkms autoinstallYou will not be able to start VMs
until this problem is fixed.
After googling I have read that many people get this warning after a kernel update but in
my cause this is a fresh install.
I even followed the steps for a custom kernel and reveived the follow:
input:
dkms install vboxhost/$(pacman -Q virtualbox|awk {'print $2'}|sed 's/\-.\+//') -k $(uname -rm|sed 's/\ /\//')
response:
Error! echo
Your kernel headers for kernel 3.8.4-1-ARCH cannot be found at
/usr/lib/modules/3.8.4-1-ARCH/build or /usr/lib/modules/3.8.4-1-ARCH/source.
Pretty much at a loss and any help would be appreciated.
Last edited by soulrainX (2013-04-13 18:03:58)

So now my kernel is up to date:
Name : linux
Version : 3.8.6-1
Description : The linux kernel and modules
Architecture : x86_64
URL : http://www.kernel.org/
Licenses : GPL2
Groups : base
Provides : kernel26=3.8.6
Depends On : coreutils linux-firmware kmod mkinitcpio>=0.7
Optional Deps : crda: to set the correct wireless channels of your
country
Required By : nvidia virtualbox-host-modules
Optional For : None
Conflicts With : kernel26
Replaces : kernel26
Installed Size : 64354.00 KiB
Packager : Tobias Powalowski <[email protected]>
Build Date : Sat 06 Apr 2013 01:32:32 AM EDT
Install Date : Sat 13 Apr 2013 10:36:09 AM EDT
Install Reason : Explicitly installed
Install Script : Yes
Validated By : Signature
and now I can run
modprobe vboxdrv
and it seems to work, yet when I run VirtualBox, I still get:
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (3.8.4-1-ARCH) or it failed to
load. Please reinstall the kernel module virtualbox-host-modules or
if you don't use our stock kernel compile the modules with
sudo dkms autoinstall
You will not be able to start VMs until this problem is fixed
Just tried removing virtualbox via
pacman -Rns virtualbox
and reinstalling and it stills reads kernet as 3.8.4-1
Last edited by soulrainX (2013-04-13 17:27:20)

Similar Messages

  • [solved] virtual box share folder unable to mount

    I am having vista and using virtual box installed arch linux as the guest.
    I have installed the base system from archlinus iso
    I created a shared folder called prem
    When I tried to mount share folder through I get the following
    mount -t vboxsf prem /mnt/vbox
    mount: unknown filesystem type 'vboxsf'
    I found that I have to install guest additions
    I clicked on the devices - install guest additions
    I didnt found any file  at /media/cdrom/VBoxLinuxAdditions-x86.run
    How to install VBoxLinuxAdditions-x86.run where is the file located.
    Or in arch linus should I install something to make share folder work
    can any one help
    Last edited by sant527 (2009-08-09 15:51:23)

    howto use shared folders in Linux guests - http://forums.virtualbox.org/viewtopic.php?f=3&t=15868
    After installing the Guest Additions, you can use the Shared Folders Functionality. To access them, you have to define at least one in the VM settings. Open the VM Settings and go to Shared Folders. You can define them there. Click on the Add button and browse for a folder you want to share. Make sure that the name of the share doesn't contain any illegal characters like white spaces. Keep the name as simple as possible. In this howto, I will use the name share.
    Now that you have defined a SF, it's time to mount it. Boot the Guest and open a terminal. Create a folder where you will mount it on. E.g. in your home folder. I will use ~/host for the mount point.
    Now mount it with the following command:
    Code: Select all   Expand viewCollapse view
        sudo mount -t vboxsf share ~/host
    Note that with this, the default mount options are used and all files are owned by root. This can be changed by adding some mount options. Options are passed on with the -o parameter. You can use multiple options with one parameter, seperate the values with a comma. See the man page of mount for more info on which options you can use. The User Manual also notes the options compatible with the Shared Folders. To mount the SF so that you are the owner of the files, use this command:
    Code: Select all   Expand viewCollapse view
        sudo mount -t vboxsf -o uid=1000,gid=1000 share ~/host
    If you want to have it mount automatically upon each boot, put the mount command in /etc/rc.local (Debian based distro's), or whatever script is run at the end of the boot process. The Shared Folders service should mount them automatically, but that doesn't always happen.
    Using /etc/fstab has little effect, because that file is processed before the SF module is loaded and will fail to mount the share. Sometimes, the share does get mounted because the GA check for it when they are loaded upon boot, but it's very flaky, meaning it doesn't work most of the time. You're better of with the first option.

  • [SOLVED] virtual box (vboxdrv: not loaded)

    I have installed virtualbox
    pacman -S virtualbox_bin
    and installed virtualbox_bin 3.0.0-2
    /etc/rc.d/vboxdrv not found
    When I run virtual box, it says vboxdrv is not loaded
    what to do
    Last edited by sant527 (2009-07-10 06:33:36)

    For reference..
    pacman -Ql packageName shows what files a package contains.
    You might add | grep bin or something of the sort after it to find the binaries quickly (sometimes.. some files contain 'bin' in the title or a folder name, obviously)
    that question has been asked many times before. please learn to use Pacman, the Forum (and corresponding Search functions), and the Wiki before asking questions, and edit your first post to append [SOLVED] to the title when you find an appropriate answer to your questions.. it will save those of us looking to help time and frustration if you do all of that. thanks.
    Last edited by FrozenFox (2009-07-06 09:26:17)

  • Virtual Box install - directory path?

    Dear Experts,
    64 bit Server is:
    lsb_release -a
    LSB Version: :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch
    Distributor ID: EnterpriseEnterpriseServer
    Description: Enterprise Linux Enterprise Linux Server release 5.5 (Carthage)
    Release: 5.5
    Codename: Carthage
    uname -a
    Linux black.testrac.com 2.6.18-194.el5 #1 SMP Mon Mar 29 22:10:29 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    I'm trying to install Virtual Box.
    It's been quite the soap opera so far.
    rpm -qa | grep -i "virtual"
    VirtualBox-4.1-4.1.8_75467_rhel5-1
    /etc/init.d/vboxdrv setup
    Stopping VirtualBox kernel modules [  OK  ]
    Uninstalling old VirtualBox DKMS kernel modules [  OK  ]
    Trying to register the VirtualBox kernel modules using DKMS[FAILED]
    (Failed, trying without DKMS)
    Recompiling VirtualBox kernel modules [FAILED]
    (Look at /var/log/vbox-install.log to find out what went wrong)
    cat /var/log/vbox-install.log
    Makefile:172: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again. Stop.
    So I downloaded and installed the kernel source files.
    For any other poor souls, you can find many source kernels here:
    http://oss.oracle.com/el5/SRPMS-updates/
    rpm -ivh kernel-2.6.18-194.el5.src.rpm
    1:kernel warning: user mockbuild does not exist - using root
    warning: group mockbuild does not exist - using root
    warning: user mockbuild does not exist - using root
    warning: group mockbuild does not exist - using root
    warning: user mockbuild does not exist - using root
    warning: group mockbuild does not exist - using root
    ########################################### [100%]
    warning: user mockbuild does not exist - using root
    warning: group mockbuild does not exist - using root
    warning: user mockbuild does not exist - using root
    warning: group mockbuild does not exist - using root
    cd /usr/src/redhat/SPECS
    ls -l
    total 820
    -rw-rw-r-- 1 root root 834836 Mar 29 2010 kernel-2.6.spec
    file *
    kernel-2.6.spec: ASCII English text
    rpmbuild -bp --target=noarch /usr/src/redhat/SPECS/kernel-2.6.spec
    + echo 'Patch #20207 (xen-vtd-ignore-unknown-dmar-entries.patch):'
    Patch #20207 (xen-vtd-ignore-unknown-dmar-entries.patch):
    + patch -p1 --fuzz=2 -s
    + exit 0
    ls -l /usr/src/redhat/BUILD
    total 4
    drwxr-xr-x 6 root root 4096 Jan 8 20:37 kernel-2.6.18
    ls -l /usr/src/redhat/BUILD/kernel-2.6.18
    total 20
    drwxr-xr-x 2 root root 4096 Dec 6 2007 config
    -rw-r--r-- 1 root root 3161 Jan 8 20:37 Config.mk
    drwxr-xr-x 21 root root 4096 Jan 8 20:37 linux-2.6.18.noarch
    drwxr-xr-x 19 root root 4096 Sep 19 2006 vanilla
    drwxr-xr-x 8 root root 4096 Dec 6 2007 xen
    I made a link:
    ln -s /usr/src/redhat/BUILD/kernel-2.6.18 /usr/src/linux
    /etc/init.d/vboxdrv setup
    Stopping VirtualBox kernel modules [  OK  ]
    Uninstalling old VirtualBox DKMS kernel modules [  OK  ]
    Trying to register the VirtualBox kernel modules using DKMS[FAILED]
    (Failed, trying without DKMS)
    Recompiling VirtualBox kernel modules [FAILED]
    (Look at /var/log/vbox-install.log to find out what went wrong)
    cat /var/log/vbox-install.log
    Makefile:175: Warning: using /usr/src/linux as the source directory of your Linux kernel. If this is not correct, specify KERN_DIR=<directory> and run Make again.
    Makefile:190: *** Error: unable to find the include directory for your current Linux kernel. Specify KERN_INCL=<directory> and run Make again. Stop.
    Surprise!
    Question:
    Did I install the kernel source correctly, or not?
    If so, what is the correct directory to use for: KERN_INCL=
    Thanks a lot!

    Actually yes, I did read the docs. Shall we say, the docs and the error messages could use some improvement.
    ie.
    xen is not mentioned at all in the install page. Nor in the table of contents.
    Since dkms was "recommended", and the error messages referred to it, I spent a lot of time searching for that package.
    You can see all the struggle I've been doing.
    It's very highly doubtful I could have installed this without your answers.
    Thanks a lot for your help!

  • Virtual box install ?

    I have been trying to download the oracle express R2 on my laptop and found that I cannot do this as I have a vista home premium 32bit os installed. I was advised that I could download the virtualbox and then install oracle dbase on here, I have downloaded and installed the virtual box but it will not install the oracle dbase as it is not a OVF file. Does anyone know where I can get this or how I can change my unpacked dbase installation software onto virtual box software.
    I am new to this so a step by step guide would be appreciate.
    Thank you

    >
    Many people on this forum scream and shout about Oracle not being supported on any "home" edition of Windows and say that it won't work, but that is rubbish. I have been running all realeases of 10g and 11g on Vista Home Premium for years.
    >
    Oracle is NOT supported on any "home" edition of Windows and that is NOT rubbish. It is direct from the many Installation Guides that Oracle publishes.
    There are a lot of things you can do with Oracle that may actually work or may only appear to work under certain circumstances.
    That doesn't have anything at all to do with whether that release is supported by Oracle or not. Anything that is not supported is used at your own risk.
    Here is the link and quote from the Express Edition Installation Guide
    http://docs.oracle.com/cd/E17781_01/install.112/e18803/toc.htm
    >
    Operating system
    One of the following Microsoft Windows operating systems:
    Microsoft Windows XP Professional
    Microsoft Windows Server 2003 - all editions
    Microsoft Windows Server 2003 R2 - all editions
    Microsoft Windows Server 2008 - Standard, Enterprise, Datacenter, Web, and Foundation editions. The Server Core option is not supported.
    Microsoft Windows 7 - Professional, Enterprise, and Ultimate editions
    >
    Please tell us which of the above indicate that any 'home' edition is supported.
    >
    keep quiet about it being "home" Windows.
    >
    Absolutely TERRIBLE advice.
    OP (and everyone) needs to know that Oracle DB is NOT supported on ANY 'home' edition of Windows. It might run or it might not. There might be screwy things that happen that can't be explained or maybe, based on the limited use by OP, no apparent problems manifest themselves.
    Based on OPs post they didn't run the DB installer; they tried to import a preconfigured VM image, an OVF file. And although VirtualBox will run on a 'home' edition OP still must install a 'host OS' withing virtualbox for the Oracle DB to run on. And that 'host OS' cannot be a 'home' edition of windows.
    So it is more than relevant that OP know the risks they are taking if they use a 'home' edition of Windows and then expect ANY Oracle product to run on it without problems if it is not supported by Oracle.

  • [solved] Virtual Box

    I have windows 7 installed in a virtual box. It worked perfectly. Then I upgraded my system to the lastest linux kernel. Now Virtual Box says that vboxdrv is not loaded so I can't boot windows.
    When I did this:
    [meskarune@Lychee ~]$ modprobe vboxdrv
    WARNING: All config files need .conf: /etc/modprobe.d/framebuffer_blacklist.pacsave, it will be ignored in a future release.
    FATAL: Module vboxdrv not found.
    I tried to see if I could update virtual box...but yaourt is not finding it. There is another topic on that here: http://bbs.archlinux.org/viewtopic.php?id=74843
    should I try to update it manually and see if that helps? Is there something I need to do with the new kernel?
    Last edited by Meskarune (2009-06-26 16:11:09)

    heh. ok now I feel dumb. Upgraded the package and saw the note:
    "run vbox_build_module as root every time the kernel is upgraded"
    now it works.

  • [SOLVED] Virtual Box PUEL causes reboot, seems to be a kernel issue

    Edit: this issue has been resolved with VirtualBox version 3.2.12
    About 1 - 2 minutes after launching a Windows VM vbox crashes and causes a hard reboot.  I've recompiled the modules and completely reinstalled the package from AUR with no joy.  Below are the package versions and segments of log files that are relatively pertinent to the issue.
    virtualbox_bin 3.2.10-2
    kernel26 2.6.36-3
    depends:
    'libidl2' 0.8.14-1
    'libxcursor' 1.1.11-1
    'libxinerama' 1.1.1-1
    'libxslt' 1.1.26-2
    'curl' 7.21.2-2
    'gcc'  4.5.1-1
    'make' 3.82-2
    'kernel26-headers' 2.6.36-3
    'python2' 2.7-3
    Seems very similar to this issue: https://bbs.archlinux.org/viewtopic.php?id=105631
    vbox-install.log
    ld -r -m elf_x86_64 -T /usr/src/linux-2.6.36-ARCH/scripts/module-common.lds --build-id -o /tmp/vbox.0/vboxdrv.ko /tmp/vbox.0/vboxdrv.o /tmp/vbox.0/vboxdrv.mod.o
    make KBUILD_VERBOSE=1 -C /lib/modules/2.6.36-ARCH/build SUBDIRS=/tmp/vbox.0 SRCROOT=/tmp/vbox.0 modules
    test -e include/generated/autoconf.h -a -e include/config/auto.conf || ( \
    echo; \
    echo " ERROR: Kernel configuration is invalid."; \
    echo " include/generated/autoconf.h or include/config/auto.conf are missing.";\
    echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
    echo; \
    /bin/false)
    mkdir -p /tmp/vbox.0/.tmp_versions ; rm -f /tmp/vbox.0/.tmp_versions/*
    make -f scripts/Makefile.build obj=/tmp/vbox.0
    ld -r -m elf_x86_64 -T /usr/src/linux-2.6.36-ARCH/scripts/module-common.lds --build-id -o /tmp/vbox.0/vboxnetflt.ko /tmp/vbox.0/vboxnetflt.o /tmp/vbox.0/vboxnetflt.mod.o
    make KBUILD_VERBOSE=1 -C /lib/modules/2.6.36-ARCH/build SUBDIRS=/tmp/vbox.0 SRCROOT=/tmp/vbox.0 modules
    test -e include/generated/autoconf.h -a -e include/config/auto.conf || ( \
    echo; \
    echo " ERROR: Kernel configuration is invalid."; \
    echo " include/generated/autoconf.h or include/config/auto.conf are missing.";\
    echo " Run 'make oldconfig && make prepare' on kernel src to fix it."; \
    echo; \
    /bin/false)
    mkdir -p /tmp/vbox.0/.tmp_versions ; rm -f /tmp/vbox.0/.tmp_versions/*
    kernel.log/dmesg.log/errrors.log
    Nov 8 09:51:06 athos kernel: vboxdrv: Trying to deactivate the NMI watchdog permanently...
    Nov 8 09:51:06 athos kernel: vboxdrv: Warning: 2.6.31+ kernel detected. Most likely the hardware performance
    Nov 8 09:51:06 athos kernel: vboxdrv: counter framework which can generate NMIs is active. You have to prevent
    Nov 8 09:51:06 athos kernel: vboxdrv: the usage of hardware performance counters by
    Nov 8 09:51:06 athos kernel: vboxdrv: echo 2 > /proc/sys/kernel/perf_counter_paranoid
    Nov 8 09:51:06 athos kernel: vboxdrv: Found 2 processor cores.
    Nov 8 09:51:06 athos kernel: VBoxDrv: dbg - g_abExecMemory=ffffffffa105f580
    Nov 8 09:51:06 athos kernel: vboxdrv: fAsync=0 offMin=0x18f offMax=0x87f
    Nov 8 09:51:06 athos kernel: vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    Nov 8 09:51:06 athos kernel: vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001).
    Nov 8 09:52:25 athos kernel: warning: `VirtualBox' uses 32-bit capabilities (legacy support in use)
    everything.log
    Nov 8 11:29:31 athos kernel: vboxdrv: Trying to deactivate the NMI watchdog permanently...
    Nov 8 11:29:31 athos kernel: vboxdrv: Warning: 2.6.31+ kernel detected. Most likely the hardware performance
    Nov 8 11:29:31 athos kernel: vboxdrv: counter framework which can generate NMIs is active. You have to prevent
    Nov 8 11:29:31 athos kernel: vboxdrv: the usage of hardware performance counters by
    Nov 8 11:29:31 athos kernel: vboxdrv: echo 2 > /proc/sys/kernel/perf_counter_paranoid
    Nov 8 11:29:31 athos kernel: vboxdrv: Found 2 processor cores.
    Nov 8 11:29:31 athos kernel: VBoxDrv: dbg - g_abExecMemory=ffffffffa0126580
    Nov 8 11:29:31 athos kernel: vboxdrv: fAsync=0 offMin=0x198 offMax=0x1342
    Nov 8 11:29:31 athos kernel: vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    Nov 8 11:29:31 athos kernel: vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001).
    cpu info
    processor : 0
    vendor_id : GenuineIntel
    cpu family : 6
    model : 23
    model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
    stepping : 10
    cpu MHz : 2526.876
    cache size : 3072 KB
    physical id : 0
    siblings : 2
    core id : 0
    cpu cores : 2
    apicid : 0
    initial apicid : 0
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dts tpr_shadow vnmi flexpriority
    bogomips : 5055.32
    clflush size : 64
    cache_alignment : 64
    address sizes : 36 bits physical, 48 bits virtual
    power management:
    processor : 1
    vendor_id : GenuineIntel
    cpu family : 6
    model : 23
    model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
    stepping : 10
    cpu MHz : 2526.876
    cache size : 3072 KB
    physical id : 0
    siblings : 2
    core id : 1
    cpu cores : 2
    apicid : 1
    initial apicid : 1
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dts tpr_shadow vnmi flexpriority
    bogomips : 5055.55
    clflush size : 64
    cache_alignment : 64
    address sizes : 36 bits physical, 48 bits virtual
    power management:
    Last edited by moted (2010-12-04 00:19:53)

    I am having a similar issue, I haven't used vbox for a few days, until just now, several upgrades have taken place.
    Namely the kernel upgrade and udev come to mind, however after I rebuilt the kernel modules and attempted to use vbox puel it seems to have stopped all events and thrown the laptop on a "loop" type thing. That's the best I can describe it coming from a programming point of view, where it blocks all events until vbox finishes or something it is doing finishes but it never finishes causing me to hard reboot because no key events or mouse events get through(just freezes). Normally in a program I'd just control-c it, for my own that is, and then hunt down the loop, although this loop seems to be at a much deeper level.
    Although my issue doesn't happen in any given timeframe, just at a specific point, when it gets to the Windows Logo during the boot after it gets through grub and all of that(I have a dual boot vbox setup).
    I was going to post my own bug report here, although since I'm new at this, I'll just share my thoughts in your thread(Hope I'm not breaking any rules or disturbing anyone by posting in your thread, although I didn't see any rules in this forum)
    I'm using the same virtualbox_bin version.
    Most of the packages are the same version as your except kernel26-headers 2.6.36.1-3 & kernel26 2.6.361-3
    Pulled the versions from pacman -Qi <package>
    Cpu info(underclocked using cpufrequtils ondemand) pulled from lscpu
    Architecture: x86_64
    CPU op-mode(s): 32-bit, 64-bit
    CPU(s): 4
    Thread(s) per core: 2
    Core(s) per socket: 2
    CPU socket(s): 1
    Vendor ID: GenuineIntel
    CPU family: 6
    Model: 37
    Stepping: 2
    CPU MHz: 1199.000
    Virtualization: VT-x
    L1d cache: 32K
    L1i cache: 32K
    L2 cache: 256K
    L3 cache:
    Anyhow hope I helped in some way.
    Last edited by Max__ (2010-11-24 20:02:30)

  • (SOLVED) virtual box installation

    Hi.
    I just installed new archlinux in virutalbox to check new installtion procedure...
    I have installed everything, installed:
    xorg-server xorg-xinit xorg-server-utils, dbus, gnome, gdm, virutalbox-guest-additions
    load modules for vbox and when trying to startx org gdm getting error that no screen found... what I'm doing wrong ? what did I forgot about ?
    Last edited by siamer (2012-08-01 20:49:43)

    Hi there
    To be able to use Arch on a Virtual Machine you'll have to remove the VM's Guest Additions and install the Guest Additions from the Arch's repository instead.
    # pacman -S virtualbox-archlinux-additions virtualbox-archlinux-modules
    Then add the proper modules to your MODULE array in /etc/rc.conf
    MODULES=(vboxvideo vboxsf vboxguest)
    Best of Luck. Enjoy your virtualized Arch

  • [SOLVED] Virtual Box Kernel Bug?

    I'm using virtualbox_bin 3.2.8-5 from the AUR & kernel26 2.6.35.6-1.
    I boot the machine clean. It starts the bare essentials. I open a terminal, /etc/rc.d/vboxdrv setup && modprobe vboxdrv. It is not vboxdrv that is the issue, but I'll recompile it anyway to make sure.
    I start VirtualBox and it either:
    A) Locks up the entire system
    B) Gives me some error that says Component: ProgressProxy, Interface: IProgress
    C) Force reboots my PC
    Only other things in in the /var/log/errors.log besides this:
    Sep 29 15:54:51 localhost kernel: BUG: scheduling while atomic: VBoxXPCOMIPCD/5464/0x00000003
    Sep 29 15:54:52 localhost kernel: BUG: scheduling while atomic: VirtualBox/5541/0x00000002
    Sep 29 15:54:52 localhost kernel: BUG: scheduling while atomic: pidgin/5808/0x00000002
    Sep 29 15:55:08 localhost kernel: BUG: scheduling while atomic: bash/5566/0x00000002
    Sep 29 15:55:21 localhost kernel: BUG: scheduling while atomic: X/4067/0x00000002
    is "Assuming drive cache: write through" warnings.
    Not sure if this should be in the kernel section or not.
    Last edited by Jimi (2010-09-29 22:11:11)

    Thanks for the very quick response.
    I didn't realize I wasn't running the latest. Internet's been going in and out frequently. Once I've confirmed this is it (after yaourt finished upgrading everything), I'll change the title to solved.
    Last edited by Jimi (2010-09-29 20:43:13)

  • Solved Virtual Box complaining about host I/O cache.

    Here is the error
    Uploaded with ImageShack.us
    How do I fix this? It just started doing it a few days ago.
    Last edited by patrickaupperle (2010-08-19 23:21:40)

    patrickaupperle wrote:I had a feeling that something like that would be the case. Why would it default to having the I/O cache off, though?
    http://www.virtualbox.org/manual/ch05.html#iocaching
    virtualbox wrote:
    As a result, starting with version 3.2, VirtualBox allows you to optionally disable host I/O caching of disk image files. In that case, VirtualBox uses its own small cache to buffer writes, but there is no read caching since this is already performed by the guest OS. In addition, VirtualBox fully supports asynchronous I/O for its virtual SATA, SCSI and SAS controllers through multiple I/O threads.
    Since asynchronous I/O is not supported by IDE controllers, for performance reasons, you may want to leave host caching enabled for your VM's virtual IDE controllers.

  • [Solved] Virtual Box and wicd issue ?

    Hey guys,
    I have been using arch for like about a year now.  I have slowing converting my family members across by install on their machines.  But I have experience a new problem the other day.  My brother has two computers a laptop that I have put arch & kdemod 4 in January.  His also has a desktop with a windows which has just craped itself, so I said time to arch it !.
    He needs xp for some programs (that don't like wine) so i have install virtualbox on his laptop no problems.  But after successfully installing arch & kdemod 4 on the desktop I have tried 3 times to install virtualbox.  The Problem I have is after installing the binaries as per wiki wicd stops working completly.
    wicd cannot get ip address, when I trying connect via wireless error message is "bad password"
    So something is going wrong with the bridging.
    below listed rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.utf8"
    HARDWARECLOCK="local"
    USEDIRECTISA="no"
    TIMEZONE="Australia/Melbourne"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(fuse vboxdrv vboxnetflt bridge)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="machine1"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    #   - prefix an entry in INTERFACES with a ! to disable it
    #   - no hyphens in your interface names - Bash doesn't like it
    # DHCP:     Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    eth1="dhcp"
    eth0="dhcp"
    wlan="dhcp"
    br0="dhcp"
    INTERFACES=(lo !eth0 !eth1 !wlan0 !br0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    #   - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up.  These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    #   - set to 'menu' to present a menu during boot-up (dialog package required)
    #   - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    #   - prefix a daemon with a ! to disable it
    #   - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng network dbus  wicd hal  dhcpcd netfs @crond kdm)
    Last edited by Mac Tzu (2009-06-27 22:37:07)

    Mac Tzu: No, you don't need to bridge networks in rc.conf/conf.d anymore. You just need to chose the setting in VirtualBox.
    See:

  • [SOLVED] Virtual Box Installation - vboxdrv setup

    Hello,  second day on Arch here and learning as much as I can but can't seem to get VirtualBox up and running.
    I am following the guide found here: https://wiki.archlinux.org/index.php/VirtualBox
    So far I have run
    pacman -S virtualbox-ose
    gpasswd -a USERNAME vboxusers #Putting my username in of course
    /etc/rc.d/vboxdrv setup
    That last line there is where I run into problems.  I get the error message
    [USERNAME@HOST ~]$ sudo /etc/rc.d/vboxdrv setup
    :: Unloading VirtualBox kernel modules [DONE]
    :: Recompiling VirtualBox kernel modules [BUSY]
    Look at /var/log/vbox-install.log to find out what went wrong
    Look at /var/log/vbox-install.log to find out what went wrong
    Look at /var/log/vbox-install.log to find out what went wrong
    [DONE]
    :: Reloading VirtualBox kernel modules [DONE]
    When I go into the file specified it reads:
    /usr/lib/virtualbox/src/vboxdrv/build_in_tmp: line 55: make: command not found
    cp: cannot stat `/tmp/vboxdrv-Module.symvers': No such file or directory
    /usr/lib/virtualbox/src/vboxnetflt/build_in_tmp: line 55: make: command not found
    cp: cannot stat `/tmp/vboxdrv-Module.symvers': No such file or directory
    /usr/lib/virtualbox/src/vboxnetadp/build_in_tmp: line 55: make: command not found
    Any suggestions on where to go from here? I have tried continuing with the other commands listed in the wiki but they do not work without this step.  I have also restarted to make sure the gpasswd had finished and verified that my username was part of the vboxusers group.
    Thank in advance!
    Last edited by Abadon125 (2010-11-08 03:18:50)

    Thanks! I have it working now.  How did you know from the errors that that was the problem?

  • (SOLVED)Virtual Box segfaulting

    I don't know why, but after the new kernel/virtualbox update my VB seems to be segfaulting after I click start on the VM.
    I tried uninstalling and reinstalling, but it didn't fix anything. I looked through the logs and couldn't find anything about VB. Any ideas?
    Last edited by Google (2010-09-05 09:53:32)

    Thanks, that seems to have been the problem. Do you need to recompile modules after every update? I thought I did but I must not have.

  • Virtual Box... [Solved]

    Just updated my 64 bit arch to the latest everything. I have virtualbox_bin installed. I ran vbox_build_module as root. When I try to run my xp virtual machine i get this error:
    Failed to open/create the internal network 'HostInterfaceNetworking-eth0' (VERR_SUPDRV_COMPONENT_NOT_FOUND).
    Failed to attach the network LUN (VERR_SUPDRV_COMPONENT_NOT_FOUND).
    One of the kernel modules was not successfully loaded. Make sure that no kernel modules from an older version of VirtualBox exist. Then try to recompile and reload the kernel modules by executing '/etc/init.d/vboxdrv setup' as root (VERR_SUPDRV_COMPONENT_NOT_FOUND).
    /etc/init.d/vboxdrv setup doesn't work. Hence this post. I feel like i've fixed this problem before maybe, but searching around the net hasn't helped much nor has my memory been jogged. Ubuntu Forums: uninstall, reinstall
    i have virtual box installed in /opt
    Thanks in advance.
    PS. "jog your memory" is a really weird phrase...
    Last edited by Meskarune (2009-10-26 20:21:41)

    Meskarune wrote:Just updated my 64 bit arch to the latest everything. I have virtualbox_bin installed. I ran vbox_build_module as root.
    When i did:
    lsmod | grep vboxdrv
    lsmod | grep vboxnetflt
    vboxdrv showed up and vboxnetflt did not, so i did modprobe vboxnetflt and it worked. Restarting probably would have worked as well.... maybe i should restart my computer more often...><
    Thanks everyone. I'm feelling a bit dumb right now...I needed to use windows xp to do some japanese homework before my class at 1pm.
    is there a way to automate these steps in the future so i don't have to run vbox_build_module and restart vboxdrv and vboxnetflt everytime i update the kernel?

  • 250 GB MBP HD full up with no user documents (75 GB "backups")! Parallels, Virtual Box or Mavericks?

    hi all,
    i have a mid-2009 MBP and have moved ALL my user documents to my Mac Pro because the Hard Drive seems like it is full up. TechToolsPro keeps giving me a less than 15% available hard drive error. i am running Parallels with an install of Windows 7 and i recently downloaded Virtual Box to text it out. i have BOTH these softwares on my Mac Pro.
    i am trying to run WhatSize and OmniDiskSweeper to figure out what is going on but i am seeing 75 GB of "Backups" for starters on the MBP and i am only seeing 0KB of backups on the Mac Pro.
    since i have both Parallels and Virtual Box installed on the Mac Pro and since i only USE the Parallels on the Mac Pro (and only rarely use the Parallels on the MBP) i am at a total loss as to whether this is a Mavericks issue or a Parallels issue or a Virtual Box issue. i have tried to uninstall VB but so far i am not having any luck in getting this done.
    anyone have any ideas?
    TIA
    mac book pro:
    mac pro:

    for some reason i am not finding a system preferences pane in the pulldown items
    That's odd. One of the things TTP6 does when you install it is it self installs a preference pane. Though I don't know what you mean by a pulldown item.
    When you open the System Preferences, there should be an icon for TechTool, like the one at the lower right shown here:
    Click on that to bring up its feature settings. The second tab is the one that devours your disk space.
    Uncheck all of the drives shown and then turn it off by clicking the radio button.
    if i got into the Application Support directory in Library (i hold down the Option Key if i recall correctly to see this item listed in the Go pulldown in Finder)
    Wrong Library folder. Holding down the Option key leads you to the one in your user account. You want the main Library folder at the root of the drive. It's the one shown next to Applications, System, Users, etc.

Maybe you are looking for

  • I can't connect my iPhone 5 to my windows 7, when I try to update the drivers it says access denied, help?

    I can't seem to connect my iPhone 5 to windows 7, it shows up under unspecified in the control panel but when I try to update the drivers it says access denied! Been at this for 3 days now! Tried numerous fixes, any help please?

  • Lead time only optional

    Hello, would like to setup lead time comming from catalog only as optional without check. Now system is transfering lead time during creation of shopping cart. If the approval is not performed on the same day when shopping cart is created, system is

  • Workflow-PO

    Hi gurus. I have created workflow for Release of Purchase Order, but the out is as follows, to the inbox of workflow iam getting release of PO two times, same happens for outbox of started workflow. I want to make them into one. How can I do that Ple

  • Post processing problem

    Hi all, I am facing an issue where i have done booking through MFBF and some parts got stored for post processing, now the problem is that when i am doing document specific reversal, parts which got stored for postprocessing is not getting reversed w

  • Time Stamp Implementation

    Hi all , In my program I am sending a file via FTP . At the receiving end I am receiving the file using DataInputStream and writing it character by character to a file with the same name (this name is also send initially ) using a FIileOutputStream.