Can you make & install "over" a kernel you're currently running?

I've always wondered this... Let's say I've compiled a custom kernel and it's components are like so:
| /lib/modules/kernel-append-name
| /boot/vmlinuz-append-name
| /boot/System.map-append-name
| /boot/kernel26-append-name.img
`---
Then I'm running on it and find something I'm missing (like what just happened -- forgot to include tun/tap support). If I re-configure and make it, is there any harm in replacing those components in /boot while I'm running on that same kernel? I've never been sure, so my process was always:
| - make clean
| - make menuconfig and change options
| - make && make modules
| - reboot into stock kernel
| - make modules_install
| - cp everything I need into /boot
| - mkinitcpio -k version -g /boot/img-name
`---
Perhaps everything in /boot is already in memory and thus there's no harm in overwriting it. But then again, perhaps it's not. Since I didn't know, I've always aimed on the cautious side, but perhaps I could have been saving a reboot all these years?
Last edited by jwhendy (2011-03-25 00:52:53)

@RobertMe: good point re. that's what pacman does anyway. I would always install, then reboot anyway. It's more that this would save me a reboot step. Instead of:
| - make
| - reboot to stock kernel
| - make modules_install
| - cp stuff to /boot
| - mkinitcipio
| - reboot to custom kernel
`---
I could just:
| - make
| - make modules_install
| - cp stuff to /boot
| - mkinitcipio
| - reboot into custom kernel
`---
That would be a lot more streamlined. Thanks for the comment.

Similar Messages

  • I can not make document over two times

    Hello.
    When I use the code generated by xmlclassgen_v1_0_0_2, I can not
    make document over two times in same class. I modified sample
    code(TestWidl.java) that I got from OTN
    (xmlclassgen_v1_0_0_2.zip) to check this problem. I modified it
    like below. The only modification is that I made XML data two
    times. The first call was success, but the second call was
    failed. The result of my test program was below:
    How can I avoid this error? Would you please help me?
    *** Result ****
    <
    ?xml version = '1.0' encoding = 'ASCII'?>
    <!DOCTYPE WIDL SYSTEM
    "file:/D:/usrs/ikeda/java/myprojects/XML_test1/WIDL_dtd.txt">
    <WIDL NAME="WIDL1" VERSION="1.0">
    <SERVICE NAME="Service1" URL="Service_URL" INPUT="File"
    OUTPUT="File"/>
    <BINDING NAME="Binding1" TYPE="Input">
    <REGION NAME="Region1" START="Start" EN
    D="End"/>
    <VARIABLE NAME="Variable1" NULLOK="False" TYPE="String"
    USAGE="Internal" VALUE="value"/>
    <CONDITION REF="CRef1" MATCH="CMatch1" SERVICE="Ser
    vice1" TYPE="Success"/>
    <VARIABLE NAME="Variable2" NULLOK="True" TYPE="String1"
    USAGE="Header"/>
    </BINDING>
    <BINDING NAME="Binding2" TYPE="Output">
    <CONDITION REF="CRef2" MATCH="CMatch2" TYPE="Retry"/>
    <VARIABLE NAME="Variable3" NULLOK="False" TYPE="String2"
    USAGE="Function" MASK="mask"/>
    </BIN
    DING>
    </WIDL>
    oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    current document
    oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    current document
    at oracle.xml.parser.XMLNode.checkDocument(Compiled
    Code)
    at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    at oracle.xml.parser.XMLDocument.appendChild(Compiled
    Code)
    at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    at oracle.xml.classgen.CGDocument.<init>(Compiled Code)
    at XML_test1.WIDL.<init>(Compiled Code)
    at XML_test1.TestWidl.test(Compiled Code)
    at XML_test1.TestWidl.main(TestWidl.java:11)
    The sample code that I modified was below:
    import oracle.xml.classgen.*;
    import oracle.xml.parser.*;
    public class TestWidl
    public static void main (String args[])
    test(); // I modified
    test(); //I modified
    static void test(){
    try
    WIDL w1 = new WIDL();
    DTD dtd = w1.getDTDNode();
    w1.setNAME("WIDL1");
    w1.setVERSION(WIDL.VERSION_1_0);
    SERVICE s1 = new SERVICE("Service1", "Service_URL");
    s1.setINPUT("File");
    s1.setOUTPUT("File");
    BINDING b1 = new BINDING("Binding1");
    b1.setTYPE(BINDING.TYPE_INPUT);
    BINDING b2 = new BINDING("Binding2");
    b2.setTYPE(BINDING.TYPE_OUTPUT);
    VARIABLE v1 = new VARIABLE("Variable1",
    VARIABLE.NULLOK_FALSE);
    v1.setTYPE(VARIABLE.TYPE_STRING);
    v1.setUSAGE(VARIABLE.USAGE_INTERNAL);
    v1.setVALUE("value");
    VARIABLE v2 = new VARIABLE("Variable2",
    VARIABLE.NULLOK_TRUE);
    v2.setTYPE(VARIABLE.TYPE_STRING1);
    v2.setUSAGE(VARIABLE.USAGE_HEADER);
    VARIABLE v3 = new VARIABLE("Variable3",
    VARIABLE.NULLOK_FALSE);
    v3.setTYPE(VARIABLE.TYPE_STRING2);
    v3.setUSAGE(VARIABLE.USAGE_FUNCTION);
    v3.setMASK("mask");
    CONDITION c1 = new CONDITION("CRef1", "CMatch1");
    c1.setSERVICE("Service1");
    c1.setTYPE(CONDITION.TYPE_SUCCESS);
    CONDITION c2 = new CONDITION("CRef2", "CMatch2");
    c2.setTYPE(CONDITION.TYPE_RETRY);
    CONDITION c3 = new CONDITION("CRef3", "CMatch3");
    c3.setSERVICE("Service3");
    c3.setTYPE(CONDITION.TYPE_FAILURE);
    REGION r1 = new REGION("Region1", "Start", "End");
    b1.addNode(r1);
    b1.addNode(v1);
    b1.addNode(c1);
    b1.addNode(v2);
    b2.addNode(c2);
    b2.addNode(v3);
    w1.addNode(s1);
    w1.addNode(b1);
    w1.addNode(b2);
    //w1.validateContent();
    w1.print(System.out);
    catch (Exception e)
    System.out.println(e.toString());
    e.printStackTrace();
    null

    Satoshi Ikeda (guest) wrote:
    : Hello.
    : When I use the code generated by xmlclassgen_v1_0_0_2, I can
    not
    : make document over two times in same class. I modified sample
    : code(TestWidl.java) that I got from OTN
    : (xmlclassgen_v1_0_0_2.zip) to check this problem. I modified
    it
    : like below. The only modification is that I made XML data two
    : times. The first call was success, but the second call was
    : failed. The result of my test program was below:
    : How can I avoid this error? Would you please help me?
    : *** Result ****
    : <
    : ?xml version = '1.0' encoding = 'ASCII'?>
    : <!DOCTYPE WIDL SYSTEM
    : "file:/D:/usrs/ikeda/java/myprojects/XML_test1/WIDL_dtd.txt">
    : <WIDL NAME="WIDL1" VERSION="1.0">
    : <SERVICE NAME="Service1" URL="Service_URL" INPUT="File"
    : OUTPUT="File"/>
    : <BINDING NAME="Binding1" TYPE="Input">
    : <REGION NAME="Region1" START="Start" EN
    : D="End"/>
    : <VARIABLE NAME="Variable1" NULLOK="False" TYPE="String"
    : USAGE="Internal" VALUE="value"/>
    : <CONDITION REF="CRef1" MATCH="CMatch1" SERVICE="Ser
    : vice1" TYPE="Success"/>
    : <VARIABLE NAME="Variable2" NULLOK="True" TYPE="String1"
    : USAGE="Header"/>
    : </BINDING>
    : <BINDING NAME="Binding2" TYPE="Output">
    : <CONDITION REF="CRef2" MATCH="CMatch2" TYPE="Retry"/>
    : <VARIABLE NAME="Variable3" NULLOK="False" TYPE="String2"
    : USAGE="Function" MASK="mask"/>
    : </BIN
    : DING>
    : </WIDL>
    : oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    : current document
    : oracle.xml.parser.XMLDOMException: Node doesn't belong to the
    : current document
    : at oracle.xml.parser.XMLNode.checkDocument(Compiled
    : Code)
    : at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    : at oracle.xml.parser.XMLDocument.appendChild(Compiled
    : Code)
    : at oracle.xml.parser.XMLNode.appendChild(Compiled Code)
    : at oracle.xml.classgen.CGDocument.<init>(Compiled Code)
    : at XML_test1.WIDL.<init>(Compiled Code)
    : at XML_test1.TestWidl.test(Compiled Code)
    : at XML_test1.TestWidl.main(TestWidl.java:11)
    : The sample code that I modified was below:
    : import oracle.xml.classgen.*;
    : import oracle.xml.parser.*;
    : public class TestWidl
    : public static void main (String args[])
    : test(); // I modified
    : test(); //I modified
    : static void test(){
    : try
    : WIDL w1 = new WIDL();
    : DTD dtd = w1.getDTDNode();
    : w1.setNAME("WIDL1");
    : w1.setVERSION(WIDL.VERSION_1_0);
    : SERVICE s1 = new SERVICE("Service1", "Service_URL");
    : s1.setINPUT("File");
    : s1.setOUTPUT("File");
    : BINDING b1 = new BINDING("Binding1");
    : b1.setTYPE(BINDING.TYPE_INPUT);
    : BINDING b2 = new BINDING("Binding2");
    : b2.setTYPE(BINDING.TYPE_OUTPUT);
    : VARIABLE v1 = new VARIABLE("Variable1",
    : VARIABLE.NULLOK_FALSE);
    : v1.setTYPE(VARIABLE.TYPE_STRING);
    : v1.setUSAGE(VARIABLE.USAGE_INTERNAL);
    : v1.setVALUE("value");
    : VARIABLE v2 = new VARIABLE("Variable2",
    : VARIABLE.NULLOK_TRUE);
    : v2.setTYPE(VARIABLE.TYPE_STRING1);
    : v2.setUSAGE(VARIABLE.USAGE_HEADER);
    : VARIABLE v3 = new VARIABLE("Variable3",
    : VARIABLE.NULLOK_FALSE);
    : v3.setTYPE(VARIABLE.TYPE_STRING2);
    : v3.setUSAGE(VARIABLE.USAGE_FUNCTION);
    : v3.setMASK("mask");
    : CONDITION c1 = new CONDITION("CRef1", "CMatch1");
    : c1.setSERVICE("Service1");
    : c1.setTYPE(CONDITION.TYPE_SUCCESS);
    : CONDITION c2 = new CONDITION("CRef2", "CMatch2");
    : c2.setTYPE(CONDITION.TYPE_RETRY);
    : CONDITION c3 = new CONDITION("CRef3", "CMatch3");
    : c3.setSERVICE("Service3");
    : c3.setTYPE(CONDITION.TYPE_FAILURE);
    : REGION r1 = new REGION("Region1", "Start", "End");
    : b1.addNode(r1);
    : b1.addNode(v1);
    : b1.addNode(c1);
    : b1.addNode(v2);
    : b2.addNode(c2);
    : b2.addNode(v3);
    : w1.addNode(s1);
    : w1.addNode(b1);
    : w1.addNode(b2);
    : //w1.validateContent();
    : w1.print(System.out);
    : catch (Exception e)
    : System.out.println(e.toString());
    : e.printStackTrace();
    Move
    WIDL w1 = new WIDL();
    out of test() and modify it as
    public class TestWidl
    static WIDL w1 = new WIDL(); ...
    and this will work.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

  • I'm using iphone 4s with ios6, but why can't make facetime over the cellular networks?thanx for the answer

    i'm using iphone 4s with ios6, but why can't make facetime over the cellular networks?thanx for the answer

    Depends on your carrier and data plan.
    With ATT in the US for example, you can FaceTime via ATT's cellular network if you have a shared data plan only.

  • How can we make disable a Field of a FORM at run-time?

    Hi to everybody,
    I want to know that how can we make a filed DISABLE at runtime <whenever we run a FORM>.
    I know about SET-ITEM-INSTANCE-PROPERTY but don't know how to use it,
    please make it clear.
    I will be gratefull to all of you
    Thanking you in advance.

    There's no property values for enabled or disabled in SET_ITEM_INSTANCE_PROPERTY.
    Instead what you can do is set INSERT_ALLOWED, UPDATE_ALLOWED and NAVIGABLE to FALSE which basically what a disabled item behaves like.
    Regards,
    Tony

  • Blackberry 10 the data isn't compatible with the version of the device software that you are currently running

    Hi,
    my update to 10.3.1.1565 messed the handwriting input up on my phone.  so I tried to downgrade to 10.2.1, upon doing so all my files were wiped,  however I thought I was being smart by doing a complete backup this morning while running 10.3.1.1565 prior to attempting the os downgrade to 10.2.1 using BlackBerry Link, 
    Anyway I had to restore my device back to 10.3.1.1565 and now when I attempt to do a restore using the .bbb ( backup ) which I created earlier on today i.e getting the following error message:
    blackberry 10 the data isn't compatible with the version of the device software that you are currently running
    the software versions on my phone now and the software version when I did my backup are exactly the same 10.3.1.1565.  I'm able to restore my user files and apps ect, as it offers to do a partial restore,., but my contacts, and remember files are now gone.  I NEED THESE.  how do I get these back..
    please help..
    Thanks,
    GeoYeo - Free Local classifieds - Built for Blackberry 10, if you like it please Rate It and Share it!
    Solved!
    Go to Solution.

    Hi,
    I figured it out.  so I figured I would post.  Apparently BlackBerry pulled the 10.3.1.1565 update.  anway not sure what happened butI ended up usng Shenshi and grabbing an update from a different carrier, upon doing so I am now able to do a complete restore using my old BBB file, 
    GeoYeo - Free Local classifieds - Built for Blackberry 10, if you like it please Rate It and Share it!

  • I am trying to apply for a job on line and I am receiving this message t has been determined that you are currently running a "Popup Blocker". In order to continue, please allow this site from within your "Popup Blocker" preferences. How do I fix this?

    Hello,
    I am trying to apply for a job on line and I am receiving the following message "
    t has been determined that you are currently running a "Popup Blocker". In order to continue, please allow this site from within your "Popup Blocker" preferences
    How do I correct this??
    Thanks!

    Open Safari preferences, click on the Security icon in the toolbar, uncheck the pop-up blocker option.

  • How can I make it put the folder in the current highlighted folder?

    When I am in a sub folder and want to create a new folder I got to File > New Folder and it always create the folder at the route in list view.
    How can I make it put the folder in the current highlighted folder?
    Kevin

    Open the subfolder in it's own window. The window has focus, that's why the new folder is created at its root level.

  • Why can't I upgrade to yosemite? I'm currently running snow leopard on my white macbook.

    Why can't I upgrade to yosemite? I'm currently running snow leopard on my white macbook.

    White MacBooks are NOT eligible to upgrade to either 10.8 Mounain Lion, 10.9 Mavericks or 10.10 Yosemite.
    You maybe able to upgrade your white MacBook to OS X 10.7 Lion
    OS X Lion system requirements
    To use Lion, make sure your computer has the following:
    An Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    Mac OS X v10.6.6 or later to install via the Mac App Store (v10.6.8 recommended)
    7 GB of available disk space
    2 GB of RAM
    You can purchase a OS X 10.7 Download code here.
    http://store.apple.com/us/product/D6106Z/A/os-x-lion
    Before embarking on a major OS upgrade, it would be wise, advisable and very prudent if you backup your current system to an external connected and Mac formatted Flash drive OR externally connected USB, Thunderbolt or FireWire 800, Mac formatted hard drive. Then, use either OS X Time Machine app to backup your entire system to the external drive OR purchase, install and use a data cloning app, like CarbonCopyCloner or SuperDuper, to make an exact and bootable copy (clone) of your entire Mac's internal hard drive. This step is really needed in case something goes wrong with the install of the new OS or you simply do not like the new OS, you have a very easy way/procedure to return your Mac to its former working state.
    Next,
    If you run any older Mac software from the earlier PowerPC Macs, then none of this software will work with the newer OS X versions (10.7 and onward). OS X Snow Leopard had a magical and invisible PowerPC emulation application, called Rosetta, that worked seamlessly in the background that still allowed older PowerPC coded software to still operate in a Intel CPU Mac.
    The use of Rosetta ended with OS X Snow Leopard as the Rosetta application was licensed to Apple, from a software company called Transitive, which got bought out, I believe, by IBM and Appe  could no longer secure their rights to continue to use Rosetta in later versions of OS X.
    So, you would need to check to see if you have software on your Mac that maybe older than, say, 2006 or older.
    Also, check for app compatibilty  here.
    http://roaringapps.com/
    If you have any commercial antivirus installed and/or hard drive cleaning apps installed on your Mac, like MacKeeper, CleanMyMac, TuneUpMyMac, MacCleanse, etc. now would be a good time to completely uninstall this apps by doing a Google search to learn how to properly uninstall these types of apps.
    These types of apps will only cause your Mac issues later after the install of the new OS X version and you will have to completely uninstall these types of apps later.
    Once you have determined all of this, you should be able download OS X 10.7 Luon from the Mac App Store icon in the OS X Dock and then login to the Mac App Store using your Apple ID and password.
    You can then begin the download and installation process by using the paid download code to Download and install OS X 10.7 Lion rom the Mac App Store.
    Good Luck!

  • Installing Leopard on an iMac G5 currently running Panther!

    HI,
    I heard a rumour that I might not be able to install Leopard on my iMac G5 currently running fine on 10.3.9 Panther, at least, not before I install Tiger. Is this true? I had hoped I could just buy Leopard and install that. Surely I don't have to track down a copy of Tiger and install that first?
    Only reason particularly for upgrade is have bought some new iPods and they won't work with Panther :-(!!
    Any advice would be gratefully recieved.
    Ed.

    MilkyJoe wrote:
    HI,
    I heard a rumour that I might not be able to install Leopard on my iMac G5 currently running fine on 10.3.9 Panther, at least, not before I install Tiger. Is this true? I had hoped I could just buy Leopard and install that. Surely I don't have to track down a copy of Tiger and install that first?
    Only reason particularly for upgrade is have bought some new iPods and they won't work with Panther :-(!!
    Any advice would be gratefully recieved.
    Ed.
    Just install Leopard directly. I suggest an Archive and Install and then migrate your stuff back. Many old apps and programs will not run with Leopard. Sherlock, to name one. Also be careful of your 3rd party apps. Some have been trouble.
    Use SuperDuper or CarbonCopyCloner to make a full bootable backup of Panther and then test it by booting into it. You then have the best of both worlds - a dual-boot system with Panther and Leopard.
    If you partition your external drive for Panther in a small partition and leave the rest for TimeMachine backups, you are really set.
    I have my external TM drive with Tiger in a small partition. It boots and once and a while I run it to keep it from getting lonely

  • Can anyone make sense of this Kernel panic log I got?

    My computer has been acting up a lot as of late so I took it to the Apple Store (A local one, not a retail store) and the guy said the turnaround time was about 5 days, not including weekends. I decided to keep it over the weekend and reinstall OSX, run Apple Hardware Test, and play around with it a bit more. I got this kernel panic while watching the MLG Dallas livestream, but I've had these problems while doing anything, from watching livestreams and YouTube videos to browsing and chatting on facebook, and even while simply booting up the computer. I've run AHT (extended) which turned back nothing, reinstalled OSX, reset PRAM, and everything else I can think of. To give you a better idea of the problem, here's the thread I posted about it earlier
    http://discussions.apple.com/thread.jspa?threadID=2802562&tstart=0
    Sometimes it gives me kernel panics, sometimes it just shuts down and gives me a randomly colored screen to look at. Either way, it's really annoying.
    Interval Since Last Panic Report: -1 sec
    Panics Since Last Report: 1
    Anonymous UUID: C32CE534-5013-4258-91B2-E938824E97C0
    Sun Apr 3 19:14:16 2011
    panic(cpu 1 caller 0x2a8ac2): Kernel trap at 0x0022ce77, type 14=page fault, registers:
    CR0: 0x8001003b, CR2: 0x0022ce77, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x0022ce77, EBX: 0x00000000, ECX: 0xffffffff, EDX: 0x00000000
    CR2: 0x0022ce77, EBP: 0x58a03f88, ESI: 0x092e37a8, EDI: 0x5286e000
    EFL: 0x00010006, EIP: 0x0022ce77, CS: 0x00000008, DS: 0xac1f0010
    Error code: 0x00000003
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x58a03d68 : 0x21b456 (0x5cf870 0x58a03d9c 0x2238b2 0x0)
    0x58a03db8 : 0x2a8ac2 (0x59169c 0x22ce77 0xe 0x591866)
    0x58a03e98 : 0x29e9a8 (0x58a03eb0 0x0 0x58a03f88 0x22ce77)
    0x58a03ea8 : 0x22ce77 (0xe 0x48 0x10 0x10)
    0x58a03f88 : 0x227799 (0x92e37a8 0x9c993d4 0x5f5e100 0x10)
    0x58a03fc8 : 0x2a1098 (0x92e37a8 0x0 0x10 0x0)
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    10D2125
    Kernel version:
    Darwin Kernel Version 10.3.2: Wed Mar 17 14:55:00 PDT 2010; root:xnu-1504.5.30~3/RELEASE_I386
    System model name: MacBookPro7,1 (Mac-F222BEC8)
    System uptime in nanoseconds: 105868483958
    unloaded kexts:
    (none)
    loaded kexts:
    com.bresink.driver.BRESINKx86Monitoring 8.0
    com.manycamllc.driver.ManyCamDriver 0.0.9
    com.apple.driver.AppleHWSensor 1.9.3d0 - last loaded 10520984153
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AppleMikeyHIDDriver 1.2.0
    com.apple.driver.AppleMikeyDriver 1.8.6f7
    com.apple.driver.AppleTyMCEDriver 1.0.1d8
    com.apple.driver.InternalModemSupport 2.6.2
    com.apple.driver.AGPM 100.11.6
    com.apple.driver.AppleHDA 1.8.6f7
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.driver.AudioAUUC 1.4
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.AppleIntelYonahProfile 14
    com.apple.driver.AppleIntelPenrynProfile 17
    com.apple.driver.AppleIntelNehalemProfile 11
    com.apple.driver.AppleIntelMeromProfile 19
    com.apple.driver.ACPISMCPlatformPlugin 4.1.2d9
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.AppleGraphicsControl 2.8.59
    com.apple.driver.AppleBacklight 170.0.20
    com.apple.driver.AppleUpstreamUserClient 3.3.2
    com.apple.GeForce 6.1.2
    com.apple.driver.AppleUSBTCButtons 1.8.1b1
    com.apple.driver.AppleIRController 303.5.1
    com.apple.driver.AppleUSBTCKeyEventDriver 1.8.1b1
    com.apple.driver.AppleUSBTCKeyboard 1.8.1b1
    com.apple.driver.AppleUSBCardReader 2.5.4
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.2
    com.apple.iokit.AppleBCM5701Ethernet 2.3.8b2
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AirPortBrcm43xx 423.91.27
    com.apple.driver.AirPortBrcm43224 424.16
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AppleUSBHub 4.0.0
    com.apple.driver.AppleAHCIPort 2.1.2
    com.apple.driver.AppleUSBEHCI 4.0.0
    com.apple.driver.AppleUSBOHCI 3.9.6
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleACPIButtons 1.3.2
    com.apple.driver.AppleSMBIOS 1.5
    com.apple.driver.AppleACPIEC 1.3.2
    com.apple.driver.AppleAPIC 1.4
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.6.0
    com.apple.driver.AppleIntelCPUPowerManagement 105.6.0
    com.apple.driver.AppleHDAPlatformDriver 1.8.6f7
    com.apple.driver.AppleHDAHardwareConfigDriver 1.8.6f7
    com.apple.driver.AppleSMBusController 1.0.8d0
    com.apple.driver.DspFuncLib 1.8.6f7
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IOSurface 74.0
    com.apple.iokit.IOBluetoothSerialManager 2.3.3f7
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.7.6fc2
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.8.6f7
    com.apple.iokit.IOHDAFamily 1.8.6f7
    com.apple.driver.AppleSMBusPCI 1.0.8d0
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.1.2d9
    com.apple.nvidia.nv50hal 6.1.2
    com.apple.NVDAResman 6.1.2
    com.apple.iokit.IONDRVSupport 2.1
    com.apple.iokit.IOGraphicsFamily 2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.3.3f7
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.3f7
    com.apple.iokit.IOBluetoothFamily 2.3.3f7
    com.apple.driver.AppleUSBMultitouch 204.13
    com.apple.iokit.IOUSBHIDDriver 4.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.1
    com.apple.driver.AppleUSBMergeNub 4.0.0
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.AppleFileSystemDriver 2.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.4
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IO80211Family 311.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IOUSBUserClient 4.0.0
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.iokit.IOUSBFamily 4.0.0
    com.apple.driver.NVSMU 2.2.7
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.3
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 283
    com.apple.iokit.IOStorageFamily 1.6.1
    com.apple.driver.AppleACPIPlatform 1.3.2
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.16 )
    Bluetooth: Version 2.3.3f7, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: INTEL SSDSA2M080G2GC, 74.53 GB
    Serial ATA Device: MATSHITADVD-R UJ-898
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x06500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x06300000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06600000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06610000

    The ManyCam driver conflicting with Google Chrome seems a likely place to start as ~Bee has suggested.
    The Bresink item is installed by Temperature Monitor and I don't think that would cause this ~Bee

  • Elements keeps freezing when using healing brush - can you help?  Running Yosemite

    Elements keeps freezing when I try to use healing brush tool.  I'm running Yosemite.  Tried to download a "plug-in" workaround, but it just comes up blank.
    Can you please help?

    The plugin is necessary for PSE 11 and 12 and should work:
    Photoshop Elements doesn't respond when you use editing tools in Mac OS X 10.10

  • Dreamweaver layer - How can I make visible over a .swf banner?

    Hi all,
    This is a problem I'm facing right now.
    I have got a site. With a .swf banner. I suddenly wanted to add a button on this banner. I tried with Adobe Flash profissional but unfortunatily, I didn't manage in that.
    So, I decided to put this button as a .jpg image in a layer. And place this layer on the .swf banner. And set a link for the image to the targeted page. But this layer didn't show up. So, I put a Back Ground for the layer. And finally I managed to make it visible. When I tried that on FireFox explorer, it worked! . But it did not on Chrome and IE8. Plese help me with that. I just need it visible and working on Chrome and IE8.
    Thank you very much.

    First start by using the correct "wmode" to bring the .swf down into the normal flow of the page... only then z-indexing will come into play. From another post:
    Window Mode (wmode) - What's It For?
    There are three window modes.
    Window
    Opaque
    Transparent
    By default, the Flash Player gets its own hWnd in Windows. This means that the Flash movie actually exists in a display instance within Windows that lives above the core browser display window. So though it appears to be in the browser window, technically, it isn't. It is most efficient for Flash to draw this way and this is the fastest, most efficient rendering mode. However, it is drawing independently of the browser's HTML rendering surface. This is why this default mode (which is equivalent to wmode="window") doesn't allow proper compositing with DHTML layers. This is why your JavaScripted drop-down menus will drop behind your Flash movie.
    In windowless modes (like opaque), Flash Player doesn't have a hWnd. This means that the browser tells the Flash Player when and where to draw onto the browser's own rendering surface. The Flash movie is no longer being rendered on a higher level if you will. It's right there in the page with the rest of the page elements. The Flash buffer is simply drawn into whatever rectangle the browser says, with any Flash stage space not occupied by objects receiving the movie's background color.
    so be sure to include the correct wmode param in your .swf embed code... which, depending on your embed method... will look something like this:
    <param name="wmode" value="opaque"/>
    And no offense Nancy, but why z-index of "1000"... when it only needs to be "2" (only a higher value not a super duper higher value). But hey, I'm guilty of that exaggeration myself when creating menus etc, as though over z-indexing by a few hundred extra layers will really push that sucker down! I've even used z-index of "500" when never in all my born days would I ever create 499 layers below a simple menu! ... or am I missing something about the power of numbers?
    Best wishes all,
    Adninjastrator

  • Can you upgrade to run Yosemite?

    I have a Dual Core Intel Xeon 2.66 GHz Mac Pro Tower that has maxed out OS at 10.6.8. Is there a way to upgrade something in it in order to upgrade the OS to Yosemite and beyond?

    You can do this:
    Upgrading to Lion
    If your computer does not meet the requirements to install Mavericks, it may still meet the requirements to install Lion.
    You can purchase Lion at the Online Apple Store. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.

  • How can you play applications run on flash player

    How you can play applications run on flash player

    This topic with suggestions as to alternatives and workarounds has been covered here many times already. Search this forum for "Flash" and you will find many threads on the issue.
    Regards.

  • HT204266 How can you buy Temple Run app that will play on ios 4.2.1

    I'm trying to get Temple Run for my 9 year old son, but all the versions on i-Store seem to require ios 4.3 or later.  Is there any way to buy an earlier version compatible with ios 4.2.1?

    You are going to have to discuss this with the developer of Temple Run. He is the only one who can help you.
    Having said that the chances are slim of it being downgraded to such an old version on iOS.
    Allan

Maybe you are looking for

  • HT1689 Can I set up an ITunes account without a credit card number?

    We are using IPads in a school setting and having trouble setting up the ITunes account without a credit card number.  We are only allowed to download free apps, the school is not paying for any, therefore we do not need to have a credit card for pur

  • [Solved]Mount windows encrypted partition

    Hi, I have encrypted the Windows 7 system partition fully using truecrypt. In Linux when i try to mount that partition [/dev/sda1] it says "incorrect password of not a truecrypt partition". I am entering the same password which I use while booting in

  • Installing on 2 different machines

    Is there any problems installing Aperture on my PowerPC (non Intel) and on my as yet not received MacBook Pro (Intel)? I'm also assuming Aperture will let me install it on both. PowerPC G5   Mac OS X (10.4.8)   MacBook Pro on the way

  • 2LIS_11_V_ITM: Adding field AUART

    The extractor 2LIS_11_V_ITM does not contain the field AUART and this field can not be added via LBWE. The field is mentioned in MCVBAK but in table TMCEXCFS the state is 'F', indicating that filling is not allowed. I do not understand why a field is

  • My macbook pro 2.33 17 inch takes 9 minutes to start and does not start with lion

    my macbook pro 2.33 17 inch takes 9 minutes to start on Snow Leopard  and does not go beyond the apple log start up with lion. When I am using Snow Leopard after it has finished the starting process; everything works well..it is just the 9.10 minutes