Booting a 2900XL switch from TFTP

Hello,
Is there any way to boot the ios for a catalyst 2900XL switch from a tftp server ?
The switch doesn't seem to support directly booting from tftp but I heard something could be done with a helper image of some sort.
Sorry if I misplaced the question, but this seemeed the only reasonable forum to place it.

Dont worry.. u r on right forum :-))
Its doesnot support the TFTP boot and there is not other way you boot this switch.
Sorry, you wont be able to bbot the switch from TFTP.
HTH,
-amit singh

Similar Messages

  • V2P Virtual Machine to physical Server migration on IBM x3650 M4 and switch from BIOS to UEFI Boot environment

    Hi there,
    just wanted to share my experience with a manual P2V Migration. The VM became to ressource hungry and it was decided to move it off an ESX 5 Cluster to a dedicated physical Machine.
    V2P Virtual Machine to physical Server IBM x3650 M4 and switch from BIOS to UEFI Boot environment
    Task:
    V2P Migrate a VMware virtual machine to a IBM x3650 M4 with a ServeRAID 5110e RAID Controller or any other LSI RAID Controller without 3rd Party tools.
    This should also work with other RAID Controllers or Servers but be sure to pick the right drivers then.
    Extra Task:
    The VM's boot environment/virtual BIOS is BIOS, not UEFI (as per default VMware Setting). The physical Server is running in UEFI mode.
    The Challenge:
    After restore the Server won't boot or get into a BSOD (7B), because the RAID drivers are missing.
    After restore the VM won't boot because the boot environment has changed from BIOS to UEFI
    Preparations:
    An existing physical Server of the same type and with the same RAID controller and same OS would be nice for troubleshooting and checking the registry.
    An existing DHCP server will make networking things easier.
    Connect the new physical server x3650 M4 to power and network
        create a virtual drive that has at least the size of the existing VM plus the size of the full backup (.vhd). Should be about twice the size of the original vmdk.
    Get a USB Flash stick (I used a 8GB modell so no problem with larger sticks)
    Download and extract LSI MegaRAID Driver on that USB media (I used 6.705.05.00-MR_Windows_Driver directly from LSI website)
    Download and extract INTEL Network Adapter Driver on that USB media (I used 12.11.97.0 of e1r62x64.inf from 19.5 driver release from 2014.09.26 directly from LSI website)
    Step by Step:
    if you have an other physical Server of the same type and same Controller and same OS:
    1.    open regedit and export everything related to SCSIAdapter and megasas2 to .reg files or skip this step and use my files below
        some of this (sub)keys may not be accesible - you will then first take ownership and/or modify permissions to read them
        HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E97B-E325-11CE-BFC1-08002BE10318}
        HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCI\VEN_1000&DEV_005B&SUBSYS_04121014&REV_05
        HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\megasas2
        this one is more complicated:
        HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase (only relevant are those devices where the service name is megasas2 - export the whole subkey and get the filtering done with tools like notepad++)
        Make a copy of the following files/folders:
        c:\programdata\LSI\
        c:\windows\inf\megasas2.INF
        c:\windows\inf\megasas2.PNF
        c:\windows\system32\drivers\megasas2.SYS
    on the existing VM:
    1.    create a full backup (image) with the built-in Windows Backup Utility and save it in an accessible network location (you will need this one, if anything goes wrong or you want to come back to this point.
        Alternatively you could create a VMware snapshot.
    2.    import the .reg files you created earlier or import my files below.
        Attention: This will make the VM unbootable!
        But it is required to prepare the VM for the new RAID controller when it will be restored on the physical server.
        Do NOT reboot now as this will make the VM unbootable!
    4.    Copy the LSI folder and the megasas2.INF/PNF/SYS files to the appropriate destination folders on the VM.
    3.    again create a full backup (image) with the built-in Windows Backup Utility and save it in an other accessible network location but not where you safed the first backup.
        This will be the "golden" backup if you want, where the RAID controller is prepares. We will rebuild the new machine with this second backup.
    4.    Optional: you could use the Backuputility now to restore the Systemstate of the first backup and reboot or restore the VMware snapshot.
        This will undo the changes we made to the VM.
    on the new physical server:
    1.    boot the physical server from Windows Server 2008 R2 SP1 DVD
    2.    when it is ready to install, press shift+F10 to get command prompt and do not click to install Server 2008
    3.    check driveletter of the USB stick with diskpart list vol (was C: at my Server, so don't wonder about that letter)
    3.    load drivers for ServeRAID SAS controller (this is mandatory to see the volume in diskpart)
        drvload c:\srv_2008_x64\megasas2.inf
    4.    load drivers for INTEL I350 Gigabit NIC's (you will need this to access the backup that is on the network)
        drvload c:\PRO1000\NDIS62\e1r62x64.inf
    5.    wpeinit (will start network. wait ~15 sec to let it start and get IP address)
        check if you have IP connectivity an address with ipconfig, if not, use an other NIC driver and repeat steps 4+5
    6.    create the EFI and BCD
        diskpart
        list disk
        select disk x (where x is the number of the disk to convert)
        clean
        convert gpt
        create partition EFI size=128
        format fs=fat32 quick label=EFI
        assign letter=i or any other free drive letter
        create partition MSR size=128
    6.1    Copy EFI bootloader to EFI partition
        i: (where i is the letter of your EFI partition)
        mkdir EFI\Boot
        mkdir EFI\Microsoft\Boot
        copy x:\Windows\Boot\EFI\bootmgfw.efi i:\EFI\Microsoft\Boot (where x ist the default letter of the current Windows PE environment)
        copy x:\Windows\Boot\EFI\bootmgfw.efi i:\EFI\Boot\bootx64.efi (note that the file will be renamed to bootx64.efi)
    7.    create the new partitions
        diskpart
        create partition primary size=100000 (edit the size to your needs. this will later become the system drive of your server)
        format fs=ntfs quick label=Windows
        assign letter=Y or any other free drive letter
        create partition primary size=990000 (this will temporarily store your backup and we need it for the restore process)
        format fs=ntfs quick label=Backup
        assign letter=B or any other free drive letter
        exit
    8.    map network drive and copy the backup .vhd  to the local disk
        net use L: \\networklocation\where\you\saved\the\backup (enter the credentials when asked)
            copy the .vhd file that contains the OS of your VM to the local Backup Partition B. The relevant vhd file is usually the largest file in that fileset.
            Note that the names are very similarly - be sure to get the correct file!
        copy "L:\WindowsImageBackup\VMNAME\Backup 2015-02-03 123456\00e767c6-xxxx-xxxx-xxxxxxxxxxxx.vhd" B:\
            give it time, this is slow and will take some minutes/hours and you will not see any progress! Look at the disk-LED's to see if anything is still happening
    9.    mount the .vhd and copy it's contents to the new system partition
            Note that you can only mount a locally stored .vhd. You cannot mount a .vhd in a network location.
        diskpart
        select vdisk file=B:\00e767c6-xxxx-xxxx-xxxxxxxxxxxx.vhd
        attach vdisk
        select vol 5 (where 5 is the number of the mounted vdisk)
        assign letter=Z or any other free drive letter
        exit
    10. Restore the files from the image
        z: (where z is the letter of your mounted .vhd)
        xcopy * Y:\ /e /c /h /k /o /b /q /y (where Y: is the letter of your new partition with the label "Windows")
            several "Access denied" messages appear, ignore them. Those are SystemVolumeInformation folders.
    11.    Create Boot Configuration Data (BCD)
        bootrec /RebuildBcd
            this will try to repair the missing BCD on the second of the two small partitions we created earlier in and should normally work, otherwise you'll have to create BCD manually (search google for that procedure)
            Note that it may find more than one Windows installation and ask which sould be added to the boot list. Be sure to select only the one that is in the correct Volume (Y:\)
        that's it - exit the DOS command box and close the "Install Windows" Window, after a prompt it will reboot.
        Select "Start Windows Normally", if Windows Error Recovery appears.    
    12. Preparing Windows
        When Windows boots for the first time, DO NOT reboot if you are asked, it won't come back at this stage!
        Install Intel chipset drivers for the Server (I used "intc_dd_inteldp_9.4.0.1026_windows_32-64.exe" from IBM website)
        Open Device Manager, uninstall the "RAID-Controller" with the exclamation mark. You cannot install the correct driver for this Device at this point, it will bring you the error: "Cannot create a stable subkey under a volatile
    parent key"
        Once again, DO NOT reboot!
        In Device Manager select Action>Add Legacy Hardware
        click Next
        select Hardware manually
        select Storage Controller as Type
        LSI should be listed, select "LSI MegaRAID SAS 9281-8E"
        click Next, ignore the error "Code 10" Message.
        Click Done.
        Rightclick the LSI MegaRAID SAS 9281-8E device with the exclamation mark in Device Manager
        select Update driver
        select Browse my computer for driver software
        select let me pick from a list of device drivers on my computer
        select "Have Disk"
        browse to the folder where the extracted RAID driver 6.705.05.00-MR_Windows_Driver is located (e.g. USB Flash stick E:\6.705.05.00-MR_Windows_Driver\srv_2008_x64)
        then unselect "Show Compatible Hardware"
        on the right side, scroll up and select "IBM ServeRAID M5110e SAS/SSATA Controller"
        ignore the Update Driver Warning and click Yes
        click Next, ignore the error "Code 10" Message.
        ignore the exclamation mark on "IBM ServeRAID M5110e SAS/SSATA Controller" in Device Manager but be sure that there is only this controller and no other RAID-Controller or LSI SAS Controller listed under "Other Devices"
    or "Storage Controllers"
        NOW you are safe to reboot
        After reboot you will find two "IBM ServeRAID M5110e SAS/SSATA Controller" in Device Manager
        Rightclick and uninstall the one with the exclamation mark. Do not tick the checkbox to remove the driver as well!
    You're done!! (hopefully)

    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C31115D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C38015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C41115D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C48015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C51115D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C58015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C61115D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C68015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C71115D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C78015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C81115D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C88015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C91115D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_C98015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_D20219E5]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0060&SUBSYS_D20319E5]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0071&SUBSYS_00721137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00011BD4]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00721137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00731137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_008F1137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00B01137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00B11137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00B61137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00B71137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00C21137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_00C31137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_03B11014]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_040015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_040D1014]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_10541000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_11771734]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_14581002]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_1F201462]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_30351054]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_350C8086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_350D8086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_822910F1]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_843B1043]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_84711043]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92211000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92401000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92408086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92411000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92418086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92421000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92431000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92441000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92A01000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0073&SUBSYS_92A11000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0078&SUBSYS_92501000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0078&SUBSYS_92511000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0078&SUBSYS_92701000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_00011BAA]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_00021BD4]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_00791137]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_02001AE3]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_03B21014]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_03B31014]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_03C71014]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_070015D9]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_11761734]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_11B31734]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_30361054]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_350B8086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_84731043]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_84801043]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_8985152D]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92551000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92561000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92568086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92601000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92608086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92611000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92618086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92621000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92631000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92641000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92648086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92671000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92678086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92681000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92688086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92751000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92758086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92761000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92768086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92771000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92801000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92808086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92811000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92821000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92828086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92841000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92881000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92891000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92901000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_92908086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_D20819E5]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0079&SUBSYS_D20919E5]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0409&SUBSYS_10091000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10011000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10018086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10021000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10031000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10038086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10041000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10081000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10088086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_100C1000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_100D1000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10811734]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_10a31734]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_20041000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_20051000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_30161054]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_34908086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_35008086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_35018086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_35048086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_35078086]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0411&SUBSYS_82871033]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\PCI#VEN_1000&DEV_0413&SUBSYS_10051000]
    "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}"
    "Service"="megasas2"
    "DriverPackageId"="megasas2.inf_amd64_neutral_8eb95ad00f4c26d7"

  • Trouble switching from Mac to windows in boot camp

    Ever since my imac updated early last week I am having trouble switching from the mac side back to windows. Switching fromt windows to mac is fine. I do most of my work on the mac side graphics design but for my job some of the software we use only runs on windows and  this is the side i have to use to clock in and out and do someother work on.
    I am using the option button as I have for the past 3 months and it worked just fine but since this update i am having to try 4-5 times before I am successful. I can do it by shutting down the computer, pushing the option button then turning back on and that seems to work, well it did Friday at least, today its not working again, i am having to try 4-5 times yet again by shutting down the computer then turning back on and i really dont like doing that 4-5 times in a row just to switch back to windows to do one quick thing then switch back.
    any suggestions?
    Thanks for any help!

    To see if it resolves the problem, from Mac OS try setting your chosen boot disk in Preferences -> Startup Disk. You can do the same to go back to Mac OS from Windows in the Startup Disk control panel.

  • Photoshop 9 Deactivating When Switching From Boot Camp to Parallels....?

    I have Adobe Photosop Elements 9 on my macbook, which I use both in native Boot Camp and in Parallels. I keep getting a window which says "this serial number has already been activated on two machines, please deactivate one of the other machines and retry, or purchase a new licence". The same copy is installed on my home PC. Presumably whenever I switch from Parallels to Boot Camp or vice versa, the Adobe licence check recognises the macbook in its new mode as a third machine, when in fact it is the same BootCamped copy of windows that i am running under parallels. How do I make Photoshop 9 see my macbook as the same machine, whether under Parallels or BootCamp ?

    Randall P wrote:
    I just installed Boot Camp and Windows XP, and things seem to be working well. I'm planning on buying Parallels so I can avoiding rebooting between the two. Do I need to, or should I uninstall Boot Camp? Can I drag the Boot Camp icon to trash to gain back that hard disk capacity?
    You can tell Parallels to use your Bootcamp installation as the virtual machine. You don't need to do anything with Bootcamp then but access it from Parallels. No need to uninstall it. You then can access your Windows without rebooting, or if you want to you still have the option to boot into bootcamp whenever you get the urge to do so.
    No you can't just drag the Bootcamp partition to the trash.

  • Are there any known issues in switching from windows on vmware to boot camp?

    i want to switch from running Windows under Mac to dual boot. any advice or gotchas would be appreciated!

    Uninstalling Fusion and the Windows VM -> http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&docType=kc&e xternalId=1014529&sliceId=1&docTypeID=DT_KB_1_1&dialogID=235628022&stateId=1%200 %20254064791
    Stefan

  • I just switched from pc to mac.  what is the best way to keep Windows?  Parallel or Boot camp?

    I have just switched from pc to mac.  What is the best way to keep Windows, Parallel of Boot camp?

    Parallels should be able to handle that without any problems.
    There is a version of both of those that will run on the Mac. So you might consider upgrading to that version instead of going with Windows on your Mac.
    Allan

  • HT5639 Switching from Parallels to Boot Camp

    How do I switch from Parallels to Bootcamp?  I have a 2011 MacBook Pro 17" with latest OS and running Windows 8 on Parallels.  I am unable to run SimCity (newest) on parallels, and read that it works on bootcamp.

    Back up any data you want from your Windows installation. Remove Parallels and the virtual machine Windows file.
    Run Bootcamp Assistant and follow the instructions to partition your drive and install Windows. Copy ypour backed up data that you saved to the Bootcamp Windows partition. Reinstall all your Windows programs.

  • Just switched from Lion to Mountain Lion - Now terminal shows up during boot up and when shutting down. How do I stop this?

    Just switched from Lion to Mountain Lion - Now, when I start my machine, the terminal shows up and runs through it's thing and then the normal screen shows up. This also happens when I shut down as well - the terminal shows up again. I have a MAC running Mountain Lion at work and this doesn't happen so I'm assuming this is not normal.
    While my machine still runs, it's annoying and I fear this will lead to problems if I don't address the situation. How do I ge this to stop? Any help would be greatly appreciated.

    They are being sent to the All Mail folder.  The inbox is pretty much unaffected.
    I don't want to hide the All Mail folder and forget about it.  I am after the messages gone forever.  Especially from the All Mail folder.
    I'm the kind of person who uses email like sms.  I use it to contact people annd delete 95% of the messages after reading.  I don't want them archived.  I don't want them stored in the All Mail folder.  I want them totally gone.
    And yes it seems Mail is downloading all my messages over and over.  So my question is how to stop the messages being stored/archived and to instead be totally deleted.
    In the gmail settings I found:
    Auto-Expunge off - Wait for the client to update the server.
    When a message is marked as deleted and expunged from the last visible IMAP folder:  Immediately delete the message forever.  Instead of archiving it like I had set before.  I'm not 100% sure if that'll fix the issue I am having.  I'm sure you'll be able to tell me if I am on the right track.
    And thanks for the quick reply.

  • Xmodem I/O error when copy IOS from tftp server

    After I formatted the flash I am trying to copy the IOS from tftp server using "copy xmodem: flash:c3550-ipbasek9-mz.122-44.SE6.bin" command, in rommon mode. I am getting the I/O error message.
    I did try to boot from tftp using the "set BOOT tftp:c3550-ipbasek9-mz.122-44.SE6.bin" command and then "boot" command and I get an "error loading tftp:" and  "permission denied" message.
    The tftp server is active; I did copy the old IOS before.
    Here is the output from my switch:
    switch: flash_init
    Initializing flash...
    flashfs[0]: 2 files, 1 directories
    flashfs[0]: 0 orphaned files, 0 orphaned directories
    flashfs[0]: Total bytes: 15998976
    flashfs[0]: Bytes used: 2048
    flashfs[0]: Bytes available: 15996928
    flashfs[0]: flashfs fsck took 12 seconds.
    ...done Initializing Flash.
    Boot Sector Filesystem <bs:> installed, fsid: 3
    switch: dir flash:
    Directory of flash:/
    2     -rwx      22            <date>           env_vars
    3     -rwx      43            <date>           system_env_vars
    15996928 bytes available <2048 bytes used>
    switch: set
    BAUD=115200
    BOOT=tftp:c3550-ipbasek9-mz.122-44.SE6.bin
    switch: copy xmodem: flash:c3550-ipbasek9-mz.122-44.SE6.bin
    Begin the Xmodem or Xmodem-1k transfer now...
    CCCCCCCxmodem:: I/O error
    Help would be really apreciated.
    Thank you.
    Marius.

    I am using Hyperterminal and a regular serial cable. Right now I am working on a 2950 Cisco Switch
    At the switch: prompt, I typed:
    copy xmodem: flash:filename.bin    [ENTER]
    As soon as you see CCCCC   in the terminal window.....
    In Hyperterminal, from the tool bar, select Transfer -> Send File
    Browse to the file, select Xmodem from the dropdown menu and select SEND
    After the process has finished, type en and then boot flash:filename.bin
    This will boot the .bin in your flash directory. The previous post only boots the switch that one time until it turns off. It does not put the image in the flash directory.
    -->I dont know why it has to be done this way, but this was a bare to figure out. Nothing works like its suppose to though.
    -This process will take a long time.  Couldnt get a faster speed then 9600

  • Recovering an Switch from bin prompt with empty flash

    Dear Experts,
    I have a 3560G switch with 48 ports. I had mistakenly reloaded with switch, without taking into consideration of fact that someone has already deleted the flash and saved the config. After reload, when the switch returned to bin prompt, I tried booting it only to get the surprise of flash as already empty:( 
     As the flash is now empty, is there any way out that I could be able to load the image onto Cisco flash? I need to bring this switch into working condition asap.
    Would appreciate any help in this regards.
    switch: dir flash:
    Directory of flash:/
    32513024 bytes available (1024 bytes used)
    switch: set
    BOOT=c3560-ipbasek9-mz.122-55.SE9.bin
    CLEI_CODE_NUMBER=CNMWY00ARB
    MAC_ADDR=00:18:19:AD:43:80
    MODEL_NUM=WS-C3560G-48TS-S
    MODEL_REVISION_NUM=C0
    MOTHERBOARD_ASSEMBLY_NUM=73-9358-04
    MOTHERBOARD_REVISION_NUM=A0
    MOTHERBOARD_SERIAL_NUM=FOC102244SQ
    POWER_SUPPLY_PART_NUM=341-0107-01
    POWER_SUPPLY_SERIAL_NUM=AZS1021011G
    SDM_TEMPLATE_ID=0
    SFP_MODULE_BOARD_ASSEMBLY_PART_NUM=73-7757-03
    SFP_MODULE_BOARD_REVISION_NUM=A0
    SFP_MODULE_BOARD_SERIAL_NUM=CAT10171LR6
    SWITCH_PRIORITY=1
    SYSTEM_SERIAL_NUM=FOC1022Y2G9
    TAN_NUM=800-25428-02
    TAN_REVISION_NUMBER=B0
    VERSION_ID=V02
    switch:
    Thanks and Regards,
    Adnan

    Adnan,
    Try this:
    switch:dir flash:
    switch:flash_init
    Switch:load-helper
    Switch:boot flash:filename/filename
    Ref:
    http://www.cisco.com/en/US/products/hw/switches/ps628/products_tech_note09186a0080169696.shtml
    https://supportforums.cisco.com/message/3837901#3837901  >> To boot the device from Xmodem  --switch:
    https://supportforums.cisco.com/thread/2128878   >> To boot the device from TFTP from switch:
    http://www.freeccnaworkbook.com/workbooks/ccna/recovering-a-corrupt-cisco-ios-image-on-a-catalyst-switch >>> Good link which explain step by step
    HTH
    Inayath
    ************Plz rate if this info is helpfull****

  • Switched from DSL to CABLE. WRT54G Wireless Router stopped working.

    When I switched from DSL to CABLE, my WRT54G Wireless Router stopped working. I am not able to access the router page (192.168.1.1) Also, when I use the set up CD for re-installation, the wizard aborts in the middle saying it can not connect.
    I appreciate any help to resolve this problem.
    P.S. The router acts like a one-port wired router. 

    Here is my favorite method for resetting a router to factory defaults, and trying to get it working again.
    To reset your router to factory defaults, use the following procedure:
    1) Power down all computers, the router, and the modem, and unplug them from the wall.
    2) Disconnect all wires from the router.
    3) Power up the router and allow it to fully boot (1-2 minutes).
    4) Press and hold the reset button for 30 seconds, then release it, then let the router reset and reboot (2-3 minutes).
    5) Power down the router.
    6) Connect one computer by wire to port 1 on the router (NOT to the internet port).
    7) Power up the router and allow it to fully boot (1-2 minutes).
    8) Power up the computer (if the computer has a wireless card, make sure it is off).
    9) Try to ping the router. To do this, click the "Start" button > All Programs > Accessories > Command Prompt. A black DOS box will appear. Enter the following: "ping 192.168.1.1" (no quotes), and hit the Enter key. You will see 3 or 4 lines that start either with "Reply from ... " or "Request timed out." If you see "Reply from ...", your computer has found your router.
    10) Open your browser and point it to 192.168.1.1. This will take you to your router's login page. Leave the user name blank, and in the password field, enter "admin" (with no quotes). This will take you to your router setup page. Note the version number of your firmware (usually listed near upper right corner of screen). Exit your browser.
    If you get this far without problems, try the setup disk (or setup the router manually, if you prefer), and see if you can get your router setup and working.
    If you cannot get "Reply from ..." in step 9 above, your router is dead.
    If you get a reply in step 9, but cannot complete step 10, then either your router is dead or the firmware is corrupt. In this case, use the Linksys tftp.exe program to try to reload your router with the latest firmware. After reloading the firmware, repeat the above procedure starting with step 1.
    If you need additional help, please state your ISP, the make and model of your modem, your router's firmware version, and the results of steps 9 and 10. Also, if you get any error messages, copy them exactly and report back.
    Please let me know how things turn out for you.

  • Why do I have to switch from Windows Phone to Andr...

    Why do I have to switch from Windows Phone to Android?
    [September 30, 2014]
    This year all my friends with Windows Phone (WP) had switched to Android. Why? The Apps. I continued with WP until now because the OS is very cool (particularly the 8.1 desktop) and because I love Nokia Phones. And the new 830 and 930 models look great.
    But I will buy a new Fuji X30 Camera, I need the Wifi remote app for some shoots,  I have no choice
    Now, I will give a list of reasons my friends left WP because lack or applications, maybe somebody at Microsoft is listening and can revert this tendency.
    1. Bank Applications (Bancolombia APP)
    2. Giro D’Italia app from La gazzetta dello sport.
    3. Stereopinic Concert app.
    4. General Motors - Chevrolet navigation/location app.
    Another annoying thing with Nokia phones in emerging markets is they don’t distribute all the accessories (headphones, wireless chargers, cases), so you have to buy them from another country make them expensive. I even met three months ago the commercial leader for Nokia here in Colombia, a group of people mentioned this, but nothing has changed since then. The updates came very late and right now I’m not able to use Cortana
    I hope Microsoft starts investing hard on apps and identify that little temporal applications for just one week or month (sport events/concerts) and start to create mechanisms to get things done. They just can’t waste the 6’000.000 consumers in US and the 10% share market in some countries in Europe and in emerging markets.

    I don't endorse any mobile phone brand nor receive any free stuff from them. Neither did I advertise anything. It was rather a recommendation if the starter of this thread would like ot purchase an Android phone. Censorship won't help to sell any more Lumia phones.
    I cannot blame anybody who's about to purchase an Android phone. Being a Windows Mobile & Phone user since 2006 I've seen those strategic mistakes Microsoft has made when the 1st and the 2nd generation of Windows Phones were released (the price of developer account etc. etc.). It's very hard to mend those things afterwards but I sincerely hope it won't be impossible.
    I'm blessed that I live in FInland because Nokia has always been considered as a Finnish mobile brand and therefore there are all those (well, almost all) necessary apps available for Windows Phone. IMO the best Nokia app has been Here Transit. I really don't need Here Drive+ because they don't bother to include speed cams and line assistance to their app. Just take a look at Navigation Europe and there you have the best possible navigation app for Windows Phone. Waze is also great and it's free. Hmm, I guess that sentence will be censored because I recommended something
    I've been quite pleased with the latest Windows Phones. They haven't crashed like my Dell Venue Pro did (first Windows Phone ever) or like my Android phone, tablet and TV box. But in order to increase the market share  of Windows Phones there are two ways:
    1) good (amount of) apps, great hardware and/or
    2) double booting phone where it's possible to choose whether to boot to Android or to Windows Phone. I'd love to have that kinda phone with the goods described in 1)
    Moderator's Note: Discussing or complaining about moderator actions on the forum is not allowed. If you feel that your posts have been moderated unfairly, please contact our Community Manager via private message.

  • Boot camp and switching between OS's

    I haven't made a partition from Boot camp yet but am planning to for vista for certain apps which don't have a mac version. My question is that I was under the impression, from I think the WWDC Keynote, that the new boot camp would allow the user to switch between Windows and Mac OS X without restarting the computer, but through putting one side to sleep and then waking or booting up the other (it wouldn't allow them to run simultaneously but at least you wouldn't have to restart every time). As far as I can tell no one is able to do this yet. Are they still going to add this feature in to boot camp or Leopard? Or is it already there and I don't know where to look? Or am I just going bonkers and imagining things?

    I'm well aware that boot camp won't run two OS's simultaniously. But I was under the impression from a Keynote before it was released that the new bootcamp would allow you to switch between the two OS's _without restarting_. There are differences between simultaneous usage and switching without restarting. And no VMWare and Parallels will not cut it for what I will be doing (boot camp is a far better choice for my use). Just to clarify I can live with restarting to get to one side or the other but I'm just asking if it were possible in boot camp to switch between without restarting yet, as I remember being mentioned before Leopard was released.

  • Trying to switch from nvidia to nouveau; startx freezes system

    I'm having high cpu issues, possibly related to nvidia and want to switch to nouveau to test this out. I followed the Arch Wiki for nouveau but am having issues being able to startx. My process:
    - Logout of openbox
    - Remove nvidia stuff:
    # pacman -Rsc nvidia nvidia-utils opencl-nvidia
    # pacman -S xf86-video-nouveau
    Installing nouveau also prompted the removal of nvidia-libgl and replaced it with mesa-libgl, as well as the installation of nouvea-dri.
    - Removed my existing monitor config file:
    # mv /etc/X11/xorg.conf.d/10-monitor.conf /etc/X11/xorg.conf.d/10-monitor.conf.bk
    - Verified that I have no modeset options specified to kernel options via syslinux, nor blacklisting of nouveau in /etc/modprobe.d/ files.
    $ cat /etc/modprobe.d/modprobe.conf
    # /etc/modprobe.d/modprobe.conf
    blacklist uvcvideo
    blacklist pcspkr
    $ ls /etc/X11/xorg.conf.d/
    10-evdev.conf 10-monitor.conf.bk 10-quirks.conf 50-synaptics.conf
    Nothing related to monitors or screens in 10-evdev, 10-quirks or 50-synaptics, and the 10-monitor.conf.bk file has the following contents (just in the event it *is* picked up by Xorg):
    $ cat /etc/X11/xorg.conf.d/10-monitor.conf.bk
    Section "Monitor"
    Identifier "Monitor0"
    ModelName "LGD"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    # Option "Enable" "True"
    # Option "PreferredMode" "1600x900"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nouveau"
    # Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "Quadro FX 1800M"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1600x900"
    EndSubSection
    # Option "SLI" "Auto"
    # Option "AddARGBGLXVisuals" "True"
    EndSection
    - Reboot
    I am at work and have my computer docked. Nouveau seemed to be active, observed by the fact that it auto-switched to KMS during boot. It also picked up my external monitor, which was off, and started duplicating the display on my external monitor and laptop during text boot (which nvidia does not do). The laptop had what I'll call "screen artifacts" on the lower right (white lines, jumbled pixels) after switching to KMS, but not a huge deal. I went to startx and it just froze after spitting out the various initialization lines. I have to hard kill and reboot. From there, I uninstall nouveau, re-install nvidia (which replaces mesa-libgl with nvidia-libgl), and reboot again to a working system.
    Any suggestions?
    Last edited by jwhendy (2013-10-24 16:36:15)

    Here's the recent Xorg.log:
    X.Org X Server 1.14.3
    Release Date: 2013-09-12
    [ 102.581] X Protocol Version 11, Revision 0
    [ 102.581] Build Operating System: Linux 3.11.1-1-ARCH x86_64
    [ 102.581] Current Operating System: Linux bigBang 3.11.6-1-ARCH #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013 x86_64
    [ 102.581] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda3:root ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 102.581] Build Date: 08 October 2013 08:48:10PM
    [ 102.581]
    [ 102.581] Current version of pixman: 0.30.2
    [ 102.581] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 102.581] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 102.582] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Oct 24 19:46:30 2013
    [ 102.599] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 102.618] (==) No Layout section. Using the first Screen section.
    [ 102.618] (==) No screen section available. Using defaults.
    [ 102.618] (**) |-->Screen "Default Screen Section" (0)
    [ 102.618] (**) | |-->Monitor "<default monitor>"
    [ 102.618] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 102.618] (==) Automatically adding devices
    [ 102.618] (==) Automatically enabling devices
    [ 102.618] (==) Automatically adding GPU devices
    [ 102.666] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 102.666] Entry deleted from font path.
    [ 102.666] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 102.667] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 102.667] Entry deleted from font path.
    [ 102.667] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 102.667] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 102.667] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 102.667] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 102.667] (II) Loader magic: 0x7fdc20
    [ 102.667] (II) Module ABI versions:
    [ 102.667] X.Org ANSI C Emulation: 0.4
    [ 102.667] X.Org Video Driver: 14.1
    [ 102.667] X.Org XInput driver : 19.1
    [ 102.667] X.Org Server Extension : 7.0
    [ 102.667] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 102.671] (--) PCI:*(0:1:0:0) 10de:0cbc:103c:1521 rev 162, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
    [ 102.671] Initializing built-in extension Generic Event Extension
    [ 102.672] Initializing built-in extension SHAPE
    [ 102.672] Initializing built-in extension MIT-SHM
    [ 102.672] Initializing built-in extension XInputExtension
    [ 102.672] Initializing built-in extension XTEST
    [ 102.672] Initializing built-in extension BIG-REQUESTS
    [ 102.672] Initializing built-in extension SYNC
    [ 102.672] Initializing built-in extension XKEYBOARD
    [ 102.673] Initializing built-in extension XC-MISC
    [ 102.674] Initializing built-in extension SECURITY
    [ 102.675] Initializing built-in extension XINERAMA
    [ 102.676] Initializing built-in extension XFIXES
    [ 102.677] Initializing built-in extension RENDER
    [ 102.678] Initializing built-in extension RANDR
    [ 102.679] Initializing built-in extension COMPOSITE
    [ 102.680] Initializing built-in extension DAMAGE
    [ 102.681] Initializing built-in extension MIT-SCREEN-SAVER
    [ 102.682] Initializing built-in extension DOUBLE-BUFFER
    [ 102.683] Initializing built-in extension RECORD
    [ 102.684] Initializing built-in extension DPMS
    [ 102.684] Initializing built-in extension X-Resource
    [ 102.685] Initializing built-in extension XVideo
    [ 102.686] Initializing built-in extension XVideo-MotionCompensation
    [ 102.687] Initializing built-in extension XFree86-VidModeExtension
    [ 102.688] Initializing built-in extension XFree86-DGA
    [ 102.689] Initializing built-in extension XFree86-DRI
    [ 102.690] Initializing built-in extension DRI2
    [ 102.690] (II) LoadModule: "glx"
    [ 102.691] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 102.719] (II) Module glx: vendor="X.Org Foundation"
    [ 102.719] compiled for 1.14.3, module version = 1.0.0
    [ 102.719] ABI class: X.Org Server Extension, version 7.0
    [ 102.719] (==) AIGLX enabled
    [ 102.721] Loading extension GLX
    [ 102.721] (==) Matched nouveau as autoconfigured driver 0
    [ 102.721] (==) Matched nvidia as autoconfigured driver 1
    [ 102.721] (==) Matched nv as autoconfigured driver 2
    [ 102.721] (==) Matched nouveau as autoconfigured driver 3
    [ 102.721] (==) Matched nvidia as autoconfigured driver 4
    [ 102.721] (==) Matched nv as autoconfigured driver 5
    [ 102.721] (==) Matched vesa as autoconfigured driver 6
    [ 102.721] (==) Matched modesetting as autoconfigured driver 7
    [ 102.721] (==) Matched fbdev as autoconfigured driver 8
    [ 102.721] (==) Assigned the driver to the xf86ConfigLayout
    [ 102.721] (II) LoadModule: "nouveau"
    [ 102.721] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 102.751] (II) Module nouveau: vendor="X.Org Foundation"
    [ 102.751] compiled for 1.14.2, module version = 1.0.9
    [ 102.751] Module class: X.Org Video Driver
    [ 102.751] ABI class: X.Org Video Driver, version 14.1
    [ 102.751] (II) LoadModule: "nvidia"
    [ 102.765] (WW) Warning, couldn't open module nvidia
    [ 102.765] (II) UnloadModule: "nvidia"
    [ 102.765] (II) Unloading nvidia
    [ 102.765] (EE) Failed to load module "nvidia" (module does not exist, 0)
    [ 102.765] (II) LoadModule: "nv"
    [ 102.765] (WW) Warning, couldn't open module nv
    [ 102.765] (II) UnloadModule: "nv"
    [ 102.765] (II) Unloading nv
    [ 102.765] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 102.765] (II) LoadModule: "vesa"
    [ 102.765] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 102.776] (II) Module vesa: vendor="X.Org Foundation"
    [ 102.776] compiled for 1.14.0, module version = 2.3.2
    [ 102.776] Module class: X.Org Video Driver
    [ 102.776] ABI class: X.Org Video Driver, version 14.1
    [ 102.776] (II) LoadModule: "modesetting"
    [ 102.776] (WW) Warning, couldn't open module modesetting
    [ 102.776] (II) UnloadModule: "modesetting"
    [ 102.776] (II) Unloading modesetting
    [ 102.776] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 102.776] (II) LoadModule: "fbdev"
    [ 102.776] (WW) Warning, couldn't open module fbdev
    [ 102.776] (II) UnloadModule: "fbdev"
    [ 102.776] (II) Unloading fbdev
    [ 102.776] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 102.776] (II) NOUVEAU driver
    [ 102.776] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 102.776] RIVA TNT (NV04)
    [ 102.776] RIVA TNT2 (NV05)
    [ 102.776] GeForce 256 (NV10)
    [ 102.776] GeForce 2 (NV11, NV15)
    [ 102.776] GeForce 4MX (NV17, NV18)
    [ 102.776] GeForce 3 (NV20)
    [ 102.776] GeForce 4Ti (NV25, NV28)
    [ 102.776] GeForce FX (NV3x)
    [ 102.776] GeForce 6 (NV4x)
    [ 102.776] GeForce 7 (G7x)
    [ 102.776] GeForce 8 (G8x)
    [ 102.776] GeForce GTX 200 (NVA0)
    [ 102.776] GeForce GTX 400 (NVC0)
    [ 102.776] (II) VESA: driver for VESA chipsets: vesa
    [ 102.776] (++) using VT number 1
    [ 102.776] (II) [drm] nouveau interface version: 1.1.1
    [ 102.777] (WW) Falling back to old probe method for vesa
    [ 102.777] (II) Loading sub module "dri2"
    [ 102.777] (II) LoadModule: "dri2"
    [ 102.777] (II) Module "dri2" already built-in
    [ 102.777] (--) NOUVEAU(0): Chipset: "NVIDIA NVA3"
    [ 102.777] (II) NOUVEAU(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 102.777] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
    [ 102.777] (==) NOUVEAU(0): RGB weight 888
    [ 102.777] (==) NOUVEAU(0): Default visual is TrueColor
    [ 102.777] (==) NOUVEAU(0): Using HW cursor
    [ 102.777] (==) NOUVEAU(0): GLX sync to VBlank disabled.
    [ 102.777] (==) NOUVEAU(0): Page flipping enabled
    [ 102.777] (==) NOUVEAU(0): Swap limit set to 2 [Max allowed 2]
    [ 102.845] (II) NOUVEAU(0): Output LVDS-1 has no monitor section
    [ 102.950] (II) NOUVEAU(0): Output DP-1 has no monitor section
    [ 103.056] (II) NOUVEAU(0): Output DP-2 has no monitor section
    [ 103.056] (II) NOUVEAU(0): Output eDP-1 has no monitor section
    [ 103.163] (II) NOUVEAU(0): Output DP-3 has no monitor section
    [ 103.184] (II) NOUVEAU(0): Output VGA-1 has no monitor section
    [ 103.211] (II) NOUVEAU(0): EDID for output LVDS-1
    [ 103.211] (II) NOUVEAU(0): Manufacturer: CMO Model: 1595 Serial#: 0
    [ 103.211] (II) NOUVEAU(0): Year: 2009 Week: 12
    [ 103.211] (II) NOUVEAU(0): EDID Version: 1.3
    [ 103.211] (II) NOUVEAU(0): Digital Display Input
    [ 103.211] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 103.211] (II) NOUVEAU(0): Gamma: 2.20
    [ 103.211] (II) NOUVEAU(0): No DPMS capabilities specified
    [ 103.211] (II) NOUVEAU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 103.211] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 103.211] (II) NOUVEAU(0): redX: 0.610 redY: 0.343 greenX: 0.342 greenY: 0.581
    [ 103.211] (II) NOUVEAU(0): blueX: 0.162 blueY: 0.083 whiteX: 0.313 whiteY: 0.329
    [ 103.211] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 103.211] (II) NOUVEAU(0): Supported detailed timing:
    [ 103.211] (II) NOUVEAU(0): clock: 107.8 MHz Image Size: 344 x 193 mm
    [ 103.211] (II) NOUVEAU(0): h_active: 1600 h_sync: 1626 h_sync_end 1686 h_blank_end 1892 h_border: 0
    [ 103.211] (II) NOUVEAU(0): v_active: 900 v_sync: 909 v_sync_end 919 v_blanking: 949 v_border: 0
    [ 103.212] (II) NOUVEAU(0): N156O6-L01
    [ 103.212] (II) NOUVEAU(0): CMO
    [ 103.212] (II) NOUVEAU(0): N156O6-L01
    [ 103.212] (II) NOUVEAU(0): EDID (in hex):
    [ 103.212] (II) NOUVEAU(0): 00ffffffffffff000daf951500000000
    [ 103.212] (II) NOUVEAU(0): 0c130103802213780a7b959c57579429
    [ 103.212] (II) NOUVEAU(0): 15505400000001010101010101010101
    [ 103.212] (II) NOUVEAU(0): 0101010101011c2a4024618431301a3c
    [ 103.212] (II) NOUVEAU(0): 9a0058c110000018000000fe004e3135
    [ 103.212] (II) NOUVEAU(0): 364f362d4c30310a2020000000fe0043
    [ 103.212] (II) NOUVEAU(0): 4d4f0a202020202020202020000000fe
    [ 103.212] (II) NOUVEAU(0): 004e3135364f362d4c30310a2020001c
    [ 103.212] (II) NOUVEAU(0): Printing probed modes for output LVDS-1
    [ 103.212] (II) NOUVEAU(0): Modeline "1600x900"x60.0 107.80 1600 1626 1686 1892 900 909 919 949 -hsync -vsync (57.0 kHz eP)
    [ 103.212] (II) NOUVEAU(0): Modeline "1152x864"x60.0 81.75 1152 1216 1336 1520 864 867 871 897 -hsync +vsync (53.8 kHz e)
    [ 103.212] (II) NOUVEAU(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz e)
    [ 103.212] (II) NOUVEAU(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz e)
    [ 103.212] (II) NOUVEAU(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz e)
    [ 103.212] (II) NOUVEAU(0): Modeline "720x400"x59.6 22.25 720 744 808 896 400 403 413 417 -hsync +vsync (24.8 kHz e)
    [ 103.212] (II) NOUVEAU(0): Modeline "640x400"x60.0 20.00 640 664 720 800 400 403 409 417 -hsync +vsync (25.0 kHz e)
    [ 103.212] (II) NOUVEAU(0): Modeline "640x350"x59.8 17.50 640 664 720 800 350 353 363 366 -hsync +vsync (21.9 kHz e)
    [ 103.316] (II) NOUVEAU(0): EDID for output DP-1
    [ 103.423] (II) NOUVEAU(0): EDID for output DP-2
    [ 103.423] (II) NOUVEAU(0): EDID for output eDP-1
    [ 103.530] (II) NOUVEAU(0): EDID for output DP-3
    [ 103.550] (II) NOUVEAU(0): EDID for output VGA-1
    [ 103.550] (II) NOUVEAU(0): Output LVDS-1 connected
    [ 103.550] (II) NOUVEAU(0): Output DP-1 disconnected
    [ 103.550] (II) NOUVEAU(0): Output DP-2 disconnected
    [ 103.551] (II) NOUVEAU(0): Output eDP-1 disconnected
    [ 103.551] (II) NOUVEAU(0): Output DP-3 disconnected
    [ 103.551] (II) NOUVEAU(0): Output VGA-1 disconnected
    [ 103.551] (II) NOUVEAU(0): Using exact sizes for initial modes
    [ 103.551] (II) NOUVEAU(0): Output LVDS-1 using initial mode 1600x900
    [ 103.551] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 103.551] (--) NOUVEAU(0): Virtual size is 1600x900 (pitch 0)
    [ 103.551] (**) NOUVEAU(0): Driver mode "1600x900": 107.8 MHz (scaled from 0.0 MHz), 57.0 kHz, 60.0 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "1600x900"x60.0 107.80 1600 1626 1686 1892 900 909 919 949 -hsync -vsync (57.0 kHz eP)
    [ 103.551] (**) NOUVEAU(0): Driver mode "1152x864": 81.8 MHz (scaled from 0.0 MHz), 53.8 kHz, 60.0 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "1152x864"x60.0 81.75 1152 1216 1336 1520 864 867 871 897 -hsync +vsync (53.8 kHz e)
    [ 103.551] (**) NOUVEAU(0): Driver mode "1024x768": 63.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 59.9 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "1024x768"x59.9 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync (47.8 kHz e)
    [ 103.551] (**) NOUVEAU(0): Driver mode "800x600": 38.2 MHz (scaled from 0.0 MHz), 37.4 kHz, 59.9 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz e)
    [ 103.551] (**) NOUVEAU(0): Driver mode "640x480": 23.8 MHz (scaled from 0.0 MHz), 29.7 kHz, 59.4 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz e)
    [ 103.551] (**) NOUVEAU(0): Driver mode "720x400": 22.2 MHz (scaled from 0.0 MHz), 24.8 kHz, 59.6 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "720x400"x59.6 22.25 720 744 808 896 400 403 413 417 -hsync +vsync (24.8 kHz e)
    [ 103.551] (**) NOUVEAU(0): Driver mode "640x400": 20.0 MHz (scaled from 0.0 MHz), 25.0 kHz, 60.0 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "640x400"x60.0 20.00 640 664 720 800 400 403 409 417 -hsync +vsync (25.0 kHz e)
    [ 103.551] (**) NOUVEAU(0): Driver mode "640x350": 17.5 MHz (scaled from 0.0 MHz), 21.9 kHz, 59.8 Hz
    [ 103.551] (II) NOUVEAU(0): Modeline "640x350"x59.8 17.50 640 664 720 800 350 353 363 366 -hsync +vsync (21.9 kHz e)
    [ 103.551] (==) NOUVEAU(0): DPI set to (96, 96)
    [ 103.551] (II) Loading sub module "fb"
    [ 103.551] (II) LoadModule: "fb"
    [ 103.551] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 105.504] (II) Module fb: vendor="X.Org Foundation"
    [ 105.504] compiled for 1.14.3, module version = 1.0.0
    [ 105.504] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 105.504] (II) Loading sub module "exa"
    [ 105.504] (II) LoadModule: "exa"
    [ 105.504] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 105.508] (II) Module exa: vendor="X.Org Foundation"
    [ 105.508] compiled for 1.14.3, module version = 2.6.0
    [ 105.508] ABI class: X.Org Video Driver, version 14.1
    [ 105.508] (II) Loading sub module "shadowfb"
    [ 105.508] (II) LoadModule: "shadowfb"
    [ 105.508] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 105.518] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 105.518] compiled for 1.14.3, module version = 1.0.0
    [ 105.518] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 105.518] (II) UnloadModule: "vesa"
    [ 105.518] (II) Unloading vesa
    [ 105.518] (--) Depth 24 pixmap format is 32 bpp
    [ 105.521] (II) NOUVEAU(0): Opened GPU channel 0
    [ 105.547] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 105.547] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 105.547] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 108.224] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 108.224] (II) EXA(0): Driver registered support for the following operations:
    [ 108.224] (II) Solid
    [ 108.224] (II) Copy
    [ 108.224] (II) Composite (RENDER acceleration)
    [ 108.224] (II) UploadToScreen
    [ 108.224] (II) DownloadFromScreen
    [ 108.224] (==) NOUVEAU(0): Backing store disabled
    [ 108.224] (==) NOUVEAU(0): Silken mouse enabled
    [ 108.226] (II) NOUVEAU(0): [XvMC] Associated with Nouveau GeForce 8/9 Textured Video.
    [ 108.226] (II) NOUVEAU(0): [XvMC] Extension initialized.
    [ 108.226] (==) NOUVEAU(0): DPMS enabled
    [ 108.226] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 108.228] (--) RandR disabled
    [ 142.503] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 142.503] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 142.504] (II) AIGLX: enabled GLX_ARB_create_context
    [ 142.504] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 142.504] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 142.504] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 142.504] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 142.505] (II) AIGLX: Loaded and initialized nouveau
    [ 142.505] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 159.503] (II) NOUVEAU(0): NVEnterVT is called.
    [ 159.532] (II) NOUVEAU(0): Setting screen physical size to 423 x 238
    [ 159.532] resize called 1600 900
    [ 160.324] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 160.324] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 160.324] (II) LoadModule: "evdev"
    [ 160.324] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 160.355] (II) Module evdev: vendor="X.Org Foundation"
    [ 160.355] compiled for 1.14.3, module version = 2.8.2
    [ 160.355] Module class: X.Org XInput Driver
    [ 160.355] ABI class: X.Org XInput driver, version 19.1
    [ 160.355] (II) Using input driver 'evdev' for 'Power Button'
    [ 160.355] (**) Power Button: always reports core events
    [ 160.355] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 160.355] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 160.355] (--) evdev: Power Button: Found keys
    [ 160.355] (II) evdev: Power Button: Configuring as keyboard
    [ 160.355] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 160.355] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 160.355] (**) Option "xkb_rules" "evdev"
    [ 160.355] (**) Option "xkb_model" "pc104"
    [ 160.355] (**) Option "xkb_layout" "us"
    [ 160.392] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 160.392] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 160.392] (II) Using input driver 'evdev' for 'Video Bus'
    [ 160.392] (**) Video Bus: always reports core events
    [ 160.392] (**) evdev: Video Bus: Device: "/dev/input/event4"
    [ 160.392] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 160.392] (--) evdev: Video Bus: Found keys
    [ 160.392] (II) evdev: Video Bus: Configuring as keyboard
    [ 160.392] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:03/LNXVIDEO:00/input/input4/event4"
    [ 160.392] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 160.392] (**) Option "xkb_rules" "evdev"
    [ 160.392] (**) Option "xkb_model" "pc104"
    [ 160.393] (**) Option "xkb_layout" "us"
    [ 160.393] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 160.393] (II) No input driver specified, ignoring this device.
    [ 160.393] (II) This device may have been added with another device file.
    [ 160.394] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 160.394] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 160.394] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 160.394] (**) Sleep Button: always reports core events
    [ 160.394] (**) evdev: Sleep Button: Device: "/dev/input/event1"
    [ 160.394] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 160.394] (--) evdev: Sleep Button: Found keys
    [ 160.394] (II) evdev: Sleep Button: Configuring as keyboard
    [ 160.394] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1/event1"
    [ 160.394] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 160.394] (**) Option "xkb_rules" "evdev"
    [ 160.394] (**) Option "xkb_model" "pc104"
    [ 160.394] (**) Option "xkb_layout" "us"
    [ 160.395] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 160.396] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
    [ 160.396] (II) No input driver specified, ignoring this device.
    [ 160.396] (II) This device may have been added with another device file.
    [ 160.396] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
    [ 160.396] (II) No input driver specified, ignoring this device.
    [ 160.396] (II) This device may have been added with another device file.
    [ 160.397] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
    [ 160.397] (II) No input driver specified, ignoring this device.
    [ 160.397] (II) This device may have been added with another device file.
    [ 160.397] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event16)
    [ 160.397] (II) No input driver specified, ignoring this device.
    [ 160.397] (II) This device may have been added with another device file.
    [ 160.398] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 160.398] (II) No input driver specified, ignoring this device.
    [ 160.398] (II) This device may have been added with another device file.
    [ 160.398] (II) config/udev: Adding input device HDA Intel MID Mic (/dev/input/event10)
    [ 160.398] (II) No input driver specified, ignoring this device.
    [ 160.398] (II) This device may have been added with another device file.
    [ 160.399] (II) config/udev: Adding input device HDA Intel MID Dock Headphone (/dev/input/event7)
    [ 160.399] (II) No input driver specified, ignoring this device.
    [ 160.399] (II) This device may have been added with another device file.
    [ 160.399] (II) config/udev: Adding input device HDA Intel MID Headphone (/dev/input/event8)
    [ 160.399] (II) No input driver specified, ignoring this device.
    [ 160.399] (II) This device may have been added with another device file.
    [ 160.400] (II) config/udev: Adding input device HDA Intel MID Line (/dev/input/event9)
    [ 160.400] (II) No input driver specified, ignoring this device.
    [ 160.400] (II) This device may have been added with another device file.
    [ 160.400] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 160.400] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 160.401] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 160.401] (**) AT Translated Set 2 keyboard: always reports core events
    [ 160.401] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 160.401] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 160.401] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 160.401] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 160.401] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 160.401] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 160.401] (**) Option "xkb_rules" "evdev"
    [ 160.401] (**) Option "xkb_model" "pc104"
    [ 160.401] (**) Option "xkb_layout" "us"
    [ 160.402] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/event11)
    [ 160.402] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer catchall"
    [ 160.402] (II) Using input driver 'evdev' for 'PS/2 Generic Mouse'
    [ 160.402] (**) PS/2 Generic Mouse: always reports core events
    [ 160.402] (**) evdev: PS/2 Generic Mouse: Device: "/dev/input/event11"
    [ 160.402] (--) evdev: PS/2 Generic Mouse: Vendor 0x2 Product 0x1
    [ 160.402] (--) evdev: PS/2 Generic Mouse: Found 3 mouse buttons
    [ 160.402] (--) evdev: PS/2 Generic Mouse: Found relative axes
    [ 160.402] (--) evdev: PS/2 Generic Mouse: Found x and y relative axes
    [ 160.402] (II) evdev: PS/2 Generic Mouse: Configuring as mouse
    [ 160.402] (**) evdev: PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
    [ 160.402] (**) evdev: PS/2 Generic Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 160.402] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input11/event11"
    [ 160.402] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" (type: MOUSE, id 10)
    [ 160.402] (II) evdev: PS/2 Generic Mouse: initialized for relative axes.
    [ 160.402] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
    [ 160.403] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
    [ 160.403] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
    [ 160.403] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
    [ 160.403] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/mouse0)
    [ 160.403] (II) No input driver specified, ignoring this device.
    [ 160.403] (II) This device may have been added with another device file.
    [ 160.403] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event17)
    [ 160.403] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 160.403] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 160.403] (II) LoadModule: "synaptics"
    [ 160.403] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 160.415] (II) Module synaptics: vendor="X.Org Foundation"
    [ 160.415] compiled for 1.14.1, module version = 1.7.1
    [ 160.415] Module class: X.Org XInput Driver
    [ 160.415] ABI class: X.Org XInput driver, version 19.1
    [ 160.415] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 160.415] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 160.415] (**) Option "Device" "/dev/input/event17"
    [ 160.503] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 160.503] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5600 (res 57)
    [ 160.503] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4884 (res 123)
    [ 160.503] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 160.503] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 160.503] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right middle double triple
    [ 160.503] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 160.503] (**) Option "VertScrollDelta" "250"
    [ 160.503] (**) Option "VertTwoFingerScroll" "on"
    [ 160.504] (**) Option "HorizTwoFingerScroll" "off"
    [ 160.504] (**) Option "TapButton1" "1"
    [ 160.504] (**) Option "TapButton2" "2"
    [ 160.504] (**) Option "TapButton3" "3"
    [ 160.504] (**) Option "CoastingSpeed" "0"
    [ 160.504] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 160.504] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 160.530] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input17/event17"
    [ 160.530] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 11)
    [ 160.530] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 160.530] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 160.530] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
    [ 160.531] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 160.531] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 160.531] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 160.531] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 160.531] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 160.531] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 160.531] (II) No input driver specified, ignoring this device.
    [ 160.531] (II) This device may have been added with another device file.
    [ 160.532] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event5)
    [ 160.532] (II) No input driver specified, ignoring this device.
    [ 160.532] (II) This device may have been added with another device file.
    [ 160.532] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
    [ 160.532] (II) No input driver specified, ignoring this device.
    [ 160.532] (II) This device may have been added with another device file.
    [ 160.533] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event12)
    [ 160.533] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 160.533] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    [ 160.533] (**) HP WMI hotkeys: always reports core events
    [ 160.533] (**) evdev: HP WMI hotkeys: Device: "/dev/input/event12"
    [ 160.533] (--) evdev: HP WMI hotkeys: Vendor 0 Product 0
    [ 160.533] (--) evdev: HP WMI hotkeys: Found keys
    [ 160.533] (II) evdev: HP WMI hotkeys: Configuring as keyboard
    [ 160.533] (**) Option "config_info" "udev:/sys/devices/virtual/input/input12/event12"
    [ 160.533] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 12)
    [ 160.533] (**) Option "xkb_rules" "evdev"
    [ 160.533] (**) Option "xkb_model" "pc104"
    [ 160.533] (**) Option "xkb_layout" "us"
    [ 164.083] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 164.083] (II) NOUVEAU(0): NVLeaveVT is called.
    [ 181.123] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 181.123] (II) NOUVEAU(0): NVEnterVT is called.
    [ 181.179] (II) NOUVEAU(0): EDID vendor "CMO", prod id 5525
    [ 181.179] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 181.179] (II) NOUVEAU(0): Modeline "1600x900"x0.0 107.80 1600 1626 1686 1892 900 909 919 949 -hsync -vsync (57.0 kHz eP)
    [ 181.517] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 181.517] setversion 1.4 failed
    (EE) [mi] EQ overflowing. Additional events will be discarded until existing events are processed.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x3d) [0x57f67d]
    (EE) 1: /usr/bin/X (mieqEnqueue+0x22b) [0x5615bb]
    (EE) 2: /usr/bin/X (QueueKeyboardEvents+0x52) [0x44d452]
    (EE) 3: /usr/bin/X (xf86PostKeyboardEvent+0x44) [0x483e84]
    (EE) 4: /usr/lib/xorg/modules/input/evdev_drv.so (0x7f4f79e94000+0x5591) [0x7f4f79e99591]
    (EE) 5: /usr/bin/X (0x400000+0x73da8) [0x473da8]
    (EE) 6: /usr/bin/X (0x400000+0x9c330) [0x49c330]
    (EE) 7: /usr/lib/libpthread.so.0 (0x7f4f7f8af000+0xf870) [0x7f4f7f8be870]
    (EE) 8: /usr/lib/libc.so.6 (ioctl+0x7) [0x7f4f7e9eef17]
    (EE) 9: /usr/lib/libdrm.so.2 (drmCommandWrite+0x5d) [0x7f4f8055e9fd]
    (EE) 10: /usr/lib/libdrm_nouveau.so.2 (nouveau_bo_wait+0x8a) [0x7f4f8058446a]
    (EE) 11: /usr/lib/xorg/modules/drivers/nouveau_drv.so (0x7f4f7d349000+0x716b) [0x7f4f7d35016b]
    (EE) 12: /usr/lib/xorg/modules/libexa.so (0x7f4f7cd05000+0xb308) [0x7f4f7cd10308]
    (EE) 13: /usr/bin/X (0x400000+0x170563) [0x570563]
    (EE) 14: /usr/bin/X (0x400000+0xc0f95) [0x4c0f95]
    (EE) 15: /usr/bin/X (0x400000+0x104193) [0x504193]
    (EE) 16: /usr/bin/X (0x400000+0x373be) [0x4373be]
    (EE) 17: /usr/bin/X (0x400000+0x2693a) [0x42693a]
    (EE) 18: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7f4f7e932bc5]
    (EE) 19: /usr/bin/X (0x400000+0x26c81) [0x426c81]
    (EE)
    (EE) [mi] These backtraces from mieqEnqueue may point to a culprit higher up the stack.
    (EE) [mi] mieq is *NOT* the cause. It is a victim.
    (EE) [mi] EQ overflow continuing. 100 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x3d) [0x57f67d]
    (EE) 1: /usr/bin/X (QueueKeyboardEvents+0x52) [0x44d452]
    (EE) 2: /usr/bin/X (xf86PostKeyboardEvent+0x44) [0x483e84]
    (EE) 3: /usr/lib/xorg/modules/input/evdev_drv.so (0x7f4f79e94000+0x5591) [0x7f4f79e99591]
    (EE) 4: /usr/bin/X (0x400000+0x73da8) [0x473da8]
    (EE) 5: /usr/bin/X (0x400000+0x9c330) [0x49c330]
    (EE) 6: /usr/lib/libpthread.so.0 (0x7f4f7f8af000+0xf870) [0x7f4f7f8be870]
    (EE) 7: /usr/lib/libc.so.6 (ioctl+0x7) [0x7f4f7e9eef17]
    (EE) 8: /usr/lib/libdrm.so.2 (drmCommandWrite+0x5d) [0x7f4f8055e9fd]
    (EE) 9: /usr/lib/libdrm_nouveau.so.2 (nouveau_bo_wait+0x8a) [0x7f4f8058446a]
    (EE) 10: /usr/lib/xorg/modules/drivers/nouveau_drv.so (0x7f4f7d349000+0x716b) [0x7f4f7d35016b]
    (EE) 11: /usr/lib/xorg/modules/libexa.so (0x7f4f7cd05000+0xb308) [0x7f4f7cd10308]
    (EE) 12: /usr/bin/X (0x400000+0x170563) [0x570563]
    (EE) 13: /usr/bin/X (0x400000+0xc0f95) [0x4c0f95]
    (EE) 14: /usr/bin/X (0x400000+0x104193) [0x504193]
    (EE) 15: /usr/bin/X (0x400000+0x373be) [0x4373be]
    (EE) 16: /usr/bin/X (0x400000+0x2693a) [0x42693a]
    (EE) 17: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7f4f7e932bc5]
    (EE) 18: /usr/bin/X (0x400000+0x26c81) [0x426c81]
    (EE)
    [ 216.437] [mi] Increasing EQ size to 512 to prevent dropped events.
    [ 216.438] [mi] EQ processing has resumed after 188 dropped events.
    [ 216.438] [mi] This may be caused my a misbehaving driver monopolizing the server's resources.
    [ 216.438] Failed to switch from vt01 to vt06: Input/output error
    [ 216.438] Failed to switch from vt01 to vt06: Input/output error
    [ 216.438] Failed to switch from vt01 to vt06: Input/output error
    [ 216.438] Failed to switch from vt01 to vt02: Input/output error
    [ 216.438] Failed to switch from vt01 to vt03: Input/output error
    [ 216.438] Failed to switch from vt01 to vt04: Input/output error
    [ 216.438] Failed to switch from vt01 to vt05: Input/output error
    [ 216.438] Failed to switch from vt01 to vt06: Input/output error
    [ 216.438] Failed to switch from vt01 to vt07: Input/output error
    [ 216.438] Failed to switch from vt01 to vt08: Input/output error
    [ 216.438] Failed to switch from vt01 to vt09: Input/output error
    [ 216.438] Failed to switch from vt01 to vt10: Input/output error
    [ 216.438] Failed to switch from vt01 to vt11: Input/output error
    [ 216.438] Failed to switch from vt01 to vt02: Input/output error
    [ 216.810] (II) evdev: HP WMI hotkeys: Close
    [ 216.811] (II) UnloadModule: "evdev"
    [ 216.811] (II) UnloadModule: "synaptics"
    [ 216.811] (II) evdev: PS/2 Generic Mouse: Close
    [ 216.811] (II) UnloadModule: "evdev"
    [ 216.811] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 216.811] (II) UnloadModule: "evdev"
    [ 216.811] (II) evdev: Sleep Button: Close
    [ 216.811] (II) UnloadModule: "evdev"
    [ 216.811] (II) evdev: Video Bus: Close
    [ 216.811] (II) UnloadModule: "evdev"
    [ 216.811] (II) evdev: Power Button: Close
    [ 216.811] (II) UnloadModule: "evdev"
    In addition, I can't seem to find any other files related nvidia that seem like they would matter, except for ~/.nvidia-settings-rc, which I moved to ~/.nvidia-settings-rc.bk (prior to the attempt which created the log above). Keep in mind that this is after re-installing nvidia so I can startx and have a working system... Is there anything that looks like it wouldn't be removed by the nvidia package?
    # find / -name *nvidia*
    /proc/irq/63/nvidia
    /proc/driver/nvidia
    /home/jwhendy/.nvidia-settings-rc.bk
    [hits from /usr/share/icons excluded]
    [hits from /usr/share/ excluded]
    /usr/lib/libnvidia-tls.so
    /usr/lib/modules/extramodules-3.11-ARCH/nvidia.ko.gz
    /usr/lib/modules/3.11.6-1-ARCH/kernel/drivers/net/ethernet/nvidia
    /usr/lib/nvidia
    /usr/lib/libnvidia-tls.so.325.15
    /usr/lib/libnvidia-ml.so
    /usr/lib/libnvidia-glcore.so
    /usr/lib/vdpau/libvdpau_nvidia.so
    /usr/lib/vdpau/libvdpau_nvidia.so.1
    /usr/lib/vdpau/libvdpau_nvidia.so.325.15
    /usr/lib/libnvidia-glcore.so.325.15
    /usr/lib/libnvidia-ml.so.325.15
    /usr/lib/libnvidia-cfg.so
    /usr/lib/xorg/modules/drivers/nvidia_drv.so
    /usr/lib/libnvidia-cfg.so.325.15
    /usr/lib/modprobe.d/nvidia.conf # owned by nvidia; removed when I switch to nouveau
    /usr/lib/libnvidia-cfg.so.1
    /usr/lib/libnvidia-ml.so.1
    /usr/bin/nvidia-settings
    /usr/bin/nvidia-xconfig
    /usr/bin/nvidia-smi
    /usr/bin/nvidia-bug-report.sh
    /usr/bin/nvidia-debugdump
    /root/.nvidia-settings-rc
    [hits from /var/abs/ removed]
    /dev/nvidia0
    /dev/nvidiactl
    /sys/bus/pci/drivers/nvidia
    /sys/kernel/slab/nvidia_p2p_page_t
    /sys/module/drm/holders/nvidia
    /sys/module/i2c_core/holders/nvidia
    /sys/module/nvidia
    /sys/module/nvidia/drivers/pci:nvidia
    Anything look odd in the log or the files?
    As always, feel free to suggest other things to try -- I can pipe ls into files to show what files are available when I'm pre-startx with nouveau installed, or more Xorg logs... My computer is not happy wtih nvidia at all and is nearly unusable. I really need to solve this until nvidia is compatible with 3.11 kernels again.

  • I have a MacBook Air, it automatically minimises and switches from the screen I am in for some reason ?

    I have a MacBook Air, it automatically minimises and switches from the screen I am in for some reason ?

    This problem is often caused by "Google Drive." If it's installed, I suggest you first check for an update. If that doesn't solve the problem, remove it according to the developer's instructions. You may need to boot in safe mode to do so. Back up all data before making any changes.
    If you use Google Drive and don't want to remove it, then try deselecting the option in its preferences to "show status icons." According to reports, that may be enough to stop the Finder from crashing.

Maybe you are looking for

  • Duplicate Check on Relationship Tab of Account PCUI

    We are using the CRMM_ACCOUNT iView and I have noticed that when I create a new relationship to a contact, it does a check with all existing contacts in the CRM database and tells me that there is a possible contact already created in the system. For

  • Turning off Firewall Kills Internet

    I am using my Mac Mini Server as a DHCP server, Firewall, and NAT device.  I use a WiMax USB dongle as my internet connection.  The dongle uses a connection software that constantly fights with my firewall.  The firewall will cause it to disconnect a

  • How do I set the bootup/startup message in Mac OS X (Tiger)?

    Thanks to other users I know I can set the login message via: sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText 'your banner text here' But I would like to set the bootup message that appears before getting to the login w

  • Hide menu bar in Webgui of HTML

    Hi, Can you please let me know how to hide the menu bar in WEBGUI of HTML. I have to hide the menu bar for an ALV Report which i have created in SRM 5.0 which i am going to publish in SRM Web interface . Also please let me know after hiding menu bar

  • Itunes will not quit or force quit .  light simply stays on?  any suggestions?

    itunes will not quit or force quit .  light simply stays on?  any suggestions?