[Solved] rc.conf problems with modules not auto loading

hi, i have vboxdrv and vboxnetflt in my rc.conf file but they are not loading when i start the computer. They are installed properly, when i use modprobe vboxdrv and modprobe vboxnetflt they both work. I've only been using arch for a few months, but linux in general for a couple of years, I check what log files i could find but i'm not sure what to look for. Thank you for you time. Please let me know what other info to provide. ps system is up to date as of 10/10/2011.
edit
apperently this is not the only issue i'm having, acpi-cpufreq is not loading in rc.conf either. Where do i got to find the log for rc.conf? or how to tell why the modules are not loading. Thanks again.
Last edited by dkjedi (2011-10-11 17:29:07)

hope this isn't too log of a post:
# /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", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# 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.UTF-8"
HARDWARECLOCK="localtime"
TIMEZONE="America/Los_Angeles"
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=()
# 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="myhost"
# 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
#Static IP example
#eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
eth0="dhcp"
INTERFACES=(eth0)
# 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 netfs crond dbus wicd alsa fuse atd acpi-cpu-freq vboxdrv vboxnetflt !network)

Similar Messages

  • Problem with modules and ModuleLoader

    Hi everybody,
    i'm facing a real funny problem with modules and
    moduleLoader, i hope
    it's not (only) my fault anyway...
    If i create a normal flex project with fBuilder, i'm able to
    use
    modules in a lot of different ways (as mxml, as as in a
    function etc..)...
    but if i try to use them in my fds application (created with
    fds
    eclipse plugin or as a dataServices project) i can't use
    modules. The compile-time error message is
    always the same:
    Could not resolve <mx:ModuleLoader> to a component
    implementation
    I tried a lot of solutions, paying attention to import all
    the classes, to declaration, naming, positioning
    etc...but nothing changes, this thing is drivining me
    crazy!!!.
    I will appreciate anykind of help.
    TIA
    Fabio

    Any idea?

  • Problem with module lazy loading in flex 3

    Hi every body!
    I have some problems with Module lazy loading. I am using flex 3.5, Module-flex3-0.14, parsley 3.2.
    I can't get the LazyModuleLoadPolicy working correctly.
    In my main application (the one that loads the modules), my parsley context is the following:
            <cairngorm:LazyModuleLoadPolicy objectId="lazyLoadPolicy" type="{ OpenViewMessage }" />
         <cairngorm:ModuleMessageInterceptor type="{ OpenViewMessage }"/>
         <cairngorm:ParsleyModuleDescriptor objectId="test"
              url="TestModule.swf"
              applicationDomain="{ClassInfo.currentDomain}"
         />
    And to load my module:
    [Inject(id="test")]
    [Bindable] public var test:IModuleManager;
    <core:LazyModulePod
         id="moduleLoader"
         moduleManager="{test}"
         moduleId="testModule"
    />
    with  LazyModulePod.mxml:
    <mx:Canvas
        xmlns:mx="http://www.adobe.com/2006/mxml"
        xmlns:module="com.adobe.cairngorm.module.*"
        xmlns:parsley="http://www.spicefactory.org/parsley">
        <mx:Script>
            <![CDATA[
                import com.adobe.cairngorm.module.ILoadPolicy;
                import com.adobe.cairngorm.module.IModuleManager;
                [Bindable]
                public var moduleId:String;
                [Bindable]
                public var moduleManager:IModuleManager;
                [Bindable]
                [Inject(id="lazyLoadPolicy")]
                public var lazyLoadPolicy:ILoadPolicy;
            ]]>
        </mx:Script>
        <parsley:Configure/>
        <module:ViewLoader id="moduleLoader"
            moduleId="{ moduleId }"
            moduleManager="{ moduleManager }"
            loadPolicy="{lazyLoadPolicy}">
             <!--<module:loadPolicy>
                  <module:BasicLoadPolicy/>
             </module:loadPolicy>-->
        </module:ViewLoader>
    </mx:Canvas>
    OpenViewMessage.as in a swc:
    public class OpenViewMessage
            private var _moduleId:String;
            private var _viewId:String;
            public function OpenViewMessage(moduleId:String, viewId:String)
                this._moduleId = moduleId;
                this._viewId = viewId;
            public function get viewId():String{
                return _viewId;
            [ModuleId]
            public function get moduleId():String
                return _moduleId;
    In another flex project, my module context is:
    <mx:Object
         xmlns:mx="http://www.adobe.com/2006/mxml"
         xmlns:controler="com.cegedim.myit.controler.*">
         <controler:WindowControler/>
    </mx:Object>
    The module implements IParsleyModule
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
         implements="com.adobe.cairngorm.module.IParsleyModule"
         xmlns:spicefactory="http://www.spicefactory.org/parsley">
         <mx:Script>
              <![CDATA[
                   import org.spicefactory.parsley.flex.FlexContextBuilder;
                   import com.adobe.cairngorm.module.IParsleyModule;
                   public function get contextBuilder():ContextBuilderTag
                    return contextBuilderTag;
              ]]>
         </mx:Script>
         <spicefactory:ContextBuilder  id="contextBuilderTag" config="{ MyITTestModuleContext }"/>
         <spicefactory:Configure/>
    </mx:Module>
    and the WindowControler:
    public class WindowControler
         public function WindowControler(){}
         [Init]
            public function initialize():void
                Alert.show("Module Initialized");
            [MessageHandler(scope="local")]
            public function openViewMessageHandler(message:OpenViewMessage):void
                Alert.show("Opening view " + message.viewId + " in the module " + message.moduleId);
    If i uncomment the basicLoadPolicy in LazyModulePod.mxml and remove the lazyModuleLoadPolicy, everything works fine. The module is loaded when it's added to stage and it receives correctly messages dispatched to it. But with the lazy policy the module never loads.
    I may have missed something or there is somthing i don't understand because i tried the ModuleTest provided in example in cairngorm sources. It works fine (i mean loading the moduleA2 when receiving a message), but if i replace the change the lazyModulePolicy to listen to broadcasted messages instead of a pingMessage, the module never loads too.
        <cairngorm:LazyModuleLoadPolicy objectId="lazyLoadPolicy" type="{ BroadcastMessage }" />
        <cairngorm:ModuleMessageInterceptor
            type="{ BroadcastMessage }" moduleRef="moduleA" />
    public class BroadcastMessage
        public function BroadcastMessage()
    If someone has any clue, i'll be happy to test it =)
    Thanks.

    Hello, back on my issue, i tested a little bit more the message dispaching.
    I read the lazyLoadPolicy class and noticed that it always has to have a ModuleId property in the message to work, that's why the broadcast message didn't work to awake the module with the lazy loading policy.
    So i added copy of my module:
         <cairngorm:ParsleyModuleDescriptor objectId="test"
              url="TestModule.swf"
              applicationDomain="{ClassInfo.currentDomain}"
         />
         <cairngorm:ParsleyModuleDescriptor objectId="testbis"
              url="TestModuleBis.swf"
              applicationDomain="{ClassInfo.currentDomain}"
         />     
    Set them both with a basicLoadPolicy, and tries to dispatch a message to only one of them using the ModuleId metatag. I then noticed that both modules received the message and not only the one i expected.
    I then changed the ModuleMessageInterceptor configuration to dispatch to only one kind of module:
    <cairngorm:ModuleMessageInterceptor type="{ OpenViewMessage }" moduleRef="test"/>
    and this worked as expected. Only the first module catched the message. I am obiously messing with the ModuleId metatag but i cannot see what's wrong...
    I compiled with
    -keep-as3-metadata+=ModuleId
    but this hasn't changed anything...

  • When I plug in my ipod to my laptop instead of my desktop, nothing pops up to sync my ipod. Has anyone had a problem with itunes not recognizing an ipod?

    When I plug in my ipod to my laptop instead of my desktop, nothing pops up to sync it. Has anone had any problems with itunes not recognizing an ipod?

    Hi sarahdavis0_o,
    Welcome to the Apple Support Communities!
    If neither your iPod or iPhone are being recognized by iTunes when connected, I would recommend the steps in the following article.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Have a great day,
    Joe

  • HT5312 So I have a problem with iTunes not letting me download anything without first responding to some security questions which I don't remember setting up, how can fix it? Oh, and it won't let me reset the questions either!

    So I have a problem with iTunes not letting me download anything without first responding to some security questions which I don't remember setting up, how can fix it? Oh, and it won't let me reset the questions either!

    If you mean that you aren't getting the reset link, then from the page that you posted from :
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so. 
    You can contact iTunes Support in your country via this page : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • RFIDITVCL : problem with variation notes

    Hi Experts,
    I have implemented the sapnote 1639418 "RFIDITVCL: 3000 Euro Communication additional changes", but I have a problem with variation notes related to specific invoices in same year...the user guide in the note says that they are clubbed together and the total is compared with the limit...I think that the report doesn't function in this case (my case is higher 25000u20AC) and so my documents aren't in the list....
    Do you have the same problem??
    Thank you
    Best regards
    Angela

    Dear Angela,
    I have the same problem. The program looks at field BSEG-REBZG.
    However this field is empty in our case.
    We create our debit and credit memo's with reference to the original sales order.
    Who knows a solution?
    Roelie

  • I have ongoing problems with "application not responding" in various programmes, ie Word, Excel, Illustrator, Photoshop, iPhoto etc. I recently subscribed to CC but the problem still persists. Any advice please?

    I have ongoing problems with "application not responding" in various programmes, ie Word, Excel, Illustrator, Photoshop, iPhoto etc. I recently subscribed to CC but the problem still persists. Any advice please? This applies to my iMac and my macbook air! I'm using OSX Version 10.9.3

    Hi Shauneenb,
    Welcome to the Apple Support Communities!
    If you are having issues with multiple applications becoming unresponsive I would suggest the steps in the following article, including starting in safe mode.
    OS X Mavericks: If an app freezes or quits unexpectedly
    http://support.apple.com/kb/PH13975
    I hope this helps,   
    -Joe

  • I'm having constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. I can, however, work well in Explorer.

    For the last few weeks I have had constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. It does seem to be a browser issue, because I can work well in Explorer.

    Both the Yahoo! Toolbar extension and the Babylon extension have been reported to cause an issue like that. Disable or uninstall those add-ons.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Problems with IE8 "not responding" on windows 7

    I have a Toshiba Satellite L-355  that has been upgraded to run Windows 7 Home Premium from Windows Vista. I've been having problems with IE8 "not responding" and have tried running it without add-ons, system restore, and banging my head against the wall. All to no avail. Does anybody have any ideas how to fix this? I've tried running other browsers with the same problems.

    Intel(R) HM55 Express Chipset LPC Interface Controller
    Thanks, sav! That's perfect. (Good to know it shows up in Device Manager for people, too.)
    Okay ... although it's the Intel P55 and PM55 chipsets which get all the press about cranky Touch/iPhone connections on Windows 7 systems (the 0xE0000065, -6999 and "Disk can not be read or written to" error messages are the most common, although symptoms can vary further than that), similar sorts of issues look like they could strike other Intel 5-series chipsets ... including your HM55.
    So I'm proceeding precisely as I would with someone with a PM55 chipset.
    *1) Dell updates*
    Some folks with 5-series chipset trouble have got past it by way of BIOS updates. So I thinks it's worth your heading to your Downloads page at Dell, and checking to see if there's any newer versions of your BIOS lurking there. Unfortunately, with the Studio 15s I'm never precisely sure which is the correct downloads page ... so I'd try going to the following Dell page:
    http://support.dell.com/support/downloads/index.aspx
    ... enter your service tag, and then drill through to your downloads page.
    Any improvement with your syncing performance after applying any available BIOS updates at Dell?
    *(2) Adjust power management setting on USB controllers*
    If no joy after updating (if you were behind on your BIOS version), try applying the measures from the following document:
    [iPod not recognized when connected to Windows laptop over USB|iPod not recognized when connected to Windows laptop over USB]
    Reboot the PC after making the changes, and then try another sync. Any improvement?
    (If either set of measures improves your sync performance, please post back to let us know which one helped for you.)

  • Anyone else haveing a problem with appointments not syncing, duplicate appointments when syncing with Outlook? Also, noticed that my primary SMTP disappeared, and I had to re-establish to send e-mail. Apple tech support was worthless.

    Anyone else haveing a problem with appointments not syncing, duplicate appointments when syncing with Outlook? Noticed the problem a couple of days ago.
    Also, noticed that my primary SMTP disappeared, and I had to re-establish to send e-mail.
    Apple tech support was worthless on both issues.

    Hi I am also in the UK, but not with Tiscali and am having the exact same problems. I can also send with wifi, but not 3G. I have tried amending all sorts of settings, including those above and amending the smtp server to the settings for my provider, but all to no avail.
    It is thoroughly frustrating, as I cannot send emails unless I have wifi access.
    Any further suggestions would be very welcome.

  • I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post wont work as it

    I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post doesn't work as it is for Ver 10.6.6 and I am running 10.6.7

    Do you have Final Cut installed on your machine?
    If so, you may want to look at this article: http://support.apple.com/kb/TS3528
    Let us know if that helps.

  • Problem with windows not liking any files named prn

    I recently found a problem with windows not liking any files
    called prn.html, prn.cfm etc etc. If you try and create a file like
    prn.html then it will say "File already exists".
    I initially thought it was a Cold Fusion error as I was
    getting some bizarre error messages when trying to write prn.html
    using cffile.
    Does anyone know a work around for it?

    Hi,
    Not only "prn" but also for the terms like "AUX", "NUL" you
    can't create any directories or files in Windows because these are
    reserved terms with Windows which is meant for some device
    drivers...

  • Cover Art will not auto load when CD is loaded

    For the latest itunes 11 on win 7 the cover art will not auto load when i load a cd...I can and do fetch the art from itunes apple central afterward with no problem using the get album art feature....
    I looked for the old click box in one of the pull down features that used to say more or less....auto load the art on loading a cd....but i can no longer find that choice...
    got any suggestions????

    I agree....I won't take anything less than 300X300 and that is a stretch when doing google searches, since I have it playing on a 42" screen. Soundtracks, I have yet to figure out - if I think through the cover art that I did for soundtracks, I specifically remember settting Album Artist to Various Artists and compilation to Yes. There is about 4 genre's though for soundtrack (soundtrack, soundtracks, orginal soundtrack, something like that)and a lot of these, at least from my experience, were not in itunes. garden state, boogie nights, sat night fever all had to get somewhere else.
    If you find out let me know

  • I asked this question in iMovie and told it belonged here. When i try to copy homemade movie _TS format it will not auto load in DVD player original does. How do I make a copy that will auto load?

    I asked this question in iMovie and told it belonged here. When i try to copy homemade movie _TS format it will not auto load in DVD player original does. How do I make a copy that will auto load?

    garysm99 wrote:
    Not familiar with structure view. How do I go there?
    click in IDVD on this button

Maybe you are looking for

  • IPhoto library won't share between iMac and macbook air

    I have all the sharing preferences turned on, and the libraries show up in the iPhoto on my macbook air, but I am unable to access them. One library just pinwheels as soon as I click on it, and the other opens and then auto-ejects within 5 seconds of

  • Bridge cs4 web photo gallery

    How can we increase the number of photos to display? 10 pictures is not much of a gallery?

  • GR for PO in wm

    hi, in general when  you put goods receipt for  purachse order for warehouse maintain material it will move to the source bin as purchase order number in interim storage area. when you confirm the TO it will move to the destination bin as configured

  • Best way to apply a new ACL to an interface that has a ACL already applied

    Hello All: I am in the process of cleaning up an ASA 5510 that I have inherited and have a question about applying a new ACL to an interface that is working correctly now with another ACL. The main purpose is I want to change the name of the ACL an c

  • 92010NT_clt.zip

    Is the 92010NT_CLT.ZIP a valid ZIP file. I have downloaded it three times and each time WINZIP indicates it is an invalid ZIP file. I successfully downloaded and unzipped disk 1 - 3. Thanks John.