Folder Icon in Trees

I'm using Forms 6i and need to use Hierarchial trees. I've never worked on tree items. I have somehow populated data to the tree but my problem now is i'm not able to display a folder icon for the nodes. I would be very grateful if someone could explain me from the basics, of how to show a folder icon in the nodes, also the icon should be different when a node is expanded ie. folder to be opened when node expanded and closed when node collapsed.

Anitha,
the initial icon can be set when creating the tree. There are two ways to create a tree, one to use a query and another to use a record group.
To set icons due to a user action (e.g. a node selection):
DECLARE
htree ITEM;
current_node FTREE.NODE; 
find_node FTREE.NODE; 
BEGIN
-- Find the tree itself. 
htree := FIND_ITEM('tree_block.htree3');   
-- Change the icon of the clicked node.  The icon name
-- is "Open"
FTREE.SET_TREE_NODE_PROPERTY(htree, :SYSTEM.TRIGGER_NODE, Ftree.NODE_ICON, 'Open'); 
If you running in client/server, the icons need to be in the directory specified by the UI_ICONS registry variable. On the Web the icons must be in a gif format and in the same directory or archive you use for the iconic buttons
see: http://otn.oracle.com/products/forms/pdf/webicons.pdf
Frank
Frank
END;

Similar Messages

  • Folder icon display at richfaces tree node

    Hello All,
    I would like to use richfaces tree structure.
    But the issue with that is the folder icon display at each tree node.
    For some reason i don't want the folder icon at the tree node.
    Is there anyway to get rid of that?
    I tried to change the image (iconFolder.gif) to some 1X1 pixel image in the richfaces jar file.
    But when i added the new jar with new image for icon, that image is not loading.
    I'm using Jboss4.2 as my application server.
    Please help me to remove the folder display at tree node.
    Thanks in advance.
    Regards,
    Elizabath

    Hi,
    I could see the icon attribute to specify the folder icon at the node. I placed a 1x1 pixel image as the iconfolder image. But that results in a blank pixel at the node. I wish to get rid of that.
    Also i wanted to change the navigation images too. i would like to have the + and - sign images instead of arrows.
    Any suggestions?

  • Folder icon in a hierarchical tree

    Hello, I don't know how can I put a folder icon in a hierarchical tree.
    I have this query, and I know I have to change the 4th column, but I don't know how to do it.
    SELECT -1,level,d_carpeta, null, id_carpeta
    FROM DOCUMENTUM.doc_carpetas
    START WITH id_carpeta_padre is null
    CONNECT BY id_carpeta_padre = prior id_carpeta
    and in the trigger (WHEN-TREE-NODE-SELECTED) I have this code
    declare
    htree ITEM;
    n_selected NUMBER;
    current_node FTREE.NODE;
    begin
    htree := Find_Item('blk_arbol_detalle.arb_carpetas');
    n_selected := Ftree.Get_Tree_Property(htree, Ftree.SELECTION_COUNT);
    FOR j IN 1..n_selected LOOP
    current_node := Ftree.Get_Tree_Selection(htree, j);
    if Ftree.Get_Tree_Node_Property(htree,
    :SYSTEM.TRIGGER_NODE,Ftree.NODE_DEPTH) > 0 then
    :blk_detalle.id_carpeta := Ftree.Get_Tree_Node_Property(htree,
    :SYSTEM.TRIGGER_NODE, Ftree.NODE_VALUE);
    else
    :blk_detalle.id_carpeta := null;
    end if;
    END LOOP;
    end;

    Jesús,
    just give it the name of an icon without the '.ico' extension. If you run it on the Web then the icon must be available in a gif format. Just the name nothing else. Make sure that in c/s the icon is in a directory mapped by the UI_ICON variable in of the Window Registry. For configuring icons on teh Web, have a look at this paper
    http://otn.oracle.com/products/forms/pdf/webicons.pdf
    If you need different folder icons on different tree levels, then instead of using a query, use a record group to populate the tree.
    Frank

  • B-tree catalog error, missing folder icons, item in use errors - Related?

    Hi,
    I have a B&WG3 running 10.3.9 and two hard drives. I can boot from
    one drive into OS 9.2.X. The other drive is also bootable into 10.3.9, and
    is partitioned. There are 25 Gigs free on the partition containing 10.3.9.
    I went to update to 10.4 and could not (yes, it is the retail version -
    black disk). I found there are some
    problems with the b-tree catalog and a missing thread record. fsck in single-user
    mode (-f) cannot repair the catalog problem, nor does the Apple disk repair utility.
    I have not yet tried a third-party program such as disk warrior or tech tool pro.
    Am currently backing up datafiles to Lacie external firewire hard drive.
    Computer operation seems normal.
    Just after the 10.4 installation failure, indicating failing to repair the b-tree catalog (extent check seemed OK), I noticed that some folder icons went
    missing and and the directory creation dates associated with those directories are bogus (December 31, 1903). If I move the items to the trash - I get the error that the items are in use (they are not in
    use according to activity monitor and are all related Arcsoft digital camera/imaging programs). Trash cannot be emptied even when done from UNIX prompt as sudo whether typing the path name directly or by dragging the contents of the trash into the terminal window. Also I cannot
    rm -r directoryname (directories are not empty - although they take up 0kb space and no
    files are visible either from the GUI or from a terminal window). **I really don't know that
    much about how to work in UNIX**
    Are these problems related?
    10.3.9 build 7W98
    Disk repair: Keys out of order, 4, 1317
    fsck -f (highlights only)
    missing thread record (id=8249)
    [31 mKeys out of order [0m
    Rebuilding catalog b-tree
    verify repair failed error -9972
    target volume is damaged and cannot be repaired
    Thanks for any insight!
    bdennehey

    Hi,
    Just to update, I ran through a couple of iterations of repair with TechToolPro which
    seemed to fix the "keys out of order" problem, but created/left other issues. However,
    it fixed things enough to run the Apple Disk Utility. Finally things "appear" OK. Installed 10.4 without a hitch, things still seem OK.
    Did find a new mystery folder that wasn't there before and was appearing/disappearing
    after running TTP, but before running the Apple utility. After running the Apple utility,
    the folder is a constant.
    The directory name is:
    -1010759277
    containing the file
    keyedobjects.nhb
    (Yes, that's nhb, not nib). Does anyone know what it is?
    Does anyone know if it is safe to dump it?
    % ls:
    -1010759277 TheVolumeSettingsFolder mach
    Applications Users mach.sym
    Desktop DB Volumes mach_kernel
    Desktop DF automount opt
    Desktop Folder bin private
    Library cores sbin
    Network dev tmp
    System etc usr
    TheFindByContentFolder lost+found var
    Thank you!
    bdennehey

  • ADF 10.1.3.0.4: tree leaf with no child nodes still displays folder icon?

    I was reading through Frank Nimphius's Blog and found the entry entitled "ADF Faces: Building a hierarchical tree from recursive tables - October 05, 2006" and found a tree example in which a tree leaf with no child nodes do not display the folder icon.
    I've followed the instructions listed with adf:tree, CoreTree and ChildPropertyTreeModel, but my tree leaves with no child nodes still displays the folder icon.
    How do I remove this icon when the node is a leaf with no children?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I figured it out.
    I used the ChildPropertyTreeModel.isContainer() method.
    --Todd                                                                                                                                                                                           

  • Can Tree's folder icon node changed to different icon?

    Hi,
    Currently, the tree and tree table node's icon is a "folder" icon. Can this be customized to different icons? We would like to have different icons for the nodes for different level in the tree/tree table. For example, level 1's node is icon A; level 2's node is icon B, etc...
    Any suggestions?
    Thanks.
    -Mina

    Hi,
    I think the right way of doingthis indeed is skinning. I would try to
    - set a styleClass value to the styleClass property using EL against a managed bean method.
    - The managed bean method now is called for each node. Use EL in the managed bea method to access the #{node} EL to determine the row you are on
    - set the style class to e.g. level1, level2, level3
    - Then in the skinning you use
    level1 af|tree...{}
    level2 af|tree...{}
    To define the different icons for the tree levels. Note that using DAF all icons are using folders. So there is no sense in skinning leaf icons
    Frank

  • Remove Folder icon on detailed navigation

    Could anyone tell me how to more the folder icon from the detailed navigation so that I can have my detailed navigation look like it does on the left of this page?
    I would also like to know how to get the "+" and "-" icons to display instead of bullets.
    Thanks
    Patrick

    Hi Patrick,
    Download the par file named com.sap.portal.navigation.detailedtree.par from the pcd directory and import it in Netweaver developer studio. You will find two gif files in the /dist/images folder. Rename your image files as the files in that folder. Then copy your images to that folder. Then rebuild the par file and rename it to com.sap.portal.navigation.detailedtree.par and upload it to the server. Restart the server and your tree should have changed.
    Ranjith

  • Macbook Air 10.5 will not start up Folder Icon "?"

    I started up my MacBookAir and I got a Folder Icon "?"
    I pulled out my DVD drive and booted off the DVD StartUp Disk that came with the computer.
    I pulled up the Disk Utilities and performed a Disk Repair
    I got a B-Tree Error
    and then it said that it could not repair it.
    Is there away to repair the Boot Up for the computer?

    Thank you, I just forward a email to DiskWarrior to see if I can do a Download to repair the Air, or if I need to have them send me a DVD.
    Thank you
    robert

  • When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?

    When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?
    All of a sudden I noticed that most of the folders on my computer were no longer using the folder icon, but the generic document icon. I had to manually change back the icon being used by opening Get Info for each folder and copying and pasting the generic folder icon from some folders that remained unchanged. Now whenever I create a New Folder (right click -> "New Folder"), the icon that shows up is the generic document icon (white page with top right corner turned down). And I have to manually change it so it shows up as a folder in Finder or on my desktop. I don't know why or how this switch happened. All of the folders now on my computer look ok, but I need to change the default so when I create a New Folder it uses the correct icon.
    I have also Forced Relaunch of my Finder and rebooted the system. I downloaded Candybar but am not sure what will fix anything, so I haven't proceeded.
    Anyone know how I can do this? Thanks.

    Anyone?

  • I just got my Ipad2 and have my email accounts set up.  When I go to the folder icon at the top of the page and click on Sent Items they disappear to somewhere.  How do you look at your sent items?

    I just got my Ipad2 and have my email accounts set up.  I have sent messages but when I go to the folder icon at the top right of the page and tap on SENT emails it makes the inbox email on the screen disappear.  How do you check your sent emails?  Thanks for your help.

    You can send over WiFi, but it sounds as if you need to setup your Gmail account, or did you do this already?

  • Kernel Panic/"broken folder" icon but boots in safe mode

    I'm totally puzzled.
    When I boot the computer either from the HDD or my bootable back-up, i get the broken folder icon.
    But i can boot just fine in safe mode from the HDD - in fact, that's how i'm typing this message right now.
    I have turned off all login items.
    I repaired permissions on disk utility.
    What else can i do (short of my genius bar appointment tomorrow morning)?
    Thanks in advance for any ideas.
    I assume restoring from my backup HDD won't work since I can't boot from it?
    More about broken folder icon here: http://support.apple.com/kb/TS1892

    Kernel log from right before first "broken icon" folder until the following day is here:
    Jan 12 18:40:33 localhost kernel[0]: npvhash=4095
    Jan 12 18:40:33 localhost kernel[0]: PAE enabled
    Jan 12 18:40:33 localhost kernel[0]: 64 bit mode enabled
    Jan 12 18:40:33 localhost kernel[0]: Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    Jan 12 18:40:33 localhost kernel[0]: vmpagebootstrap: 950266 free pages and 24582 wired pages
    Jan 12 18:40:33 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 12 18:40:33 localhost kernel[0]: migtable_maxdispl = 73
    Jan 12 18:40:33 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Jan 12 18:40:33 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Jan 12 18:40:33 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Jan 12 18:40:33 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jan 12 18:40:33 localhost kernel[0]: calling mpopolicyinit for Quarantine
    Jan 12 18:40:33 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Jan 12 18:40:33 localhost kernel[0]: calling mpopolicyinit for Sandbox
    Jan 12 18:40:33 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Jan 12 18:40:33 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 12 18:40:33 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 12 18:40:33 localhost kernel[0]: MAC Framework successfully initialized
    Jan 12 18:40:33 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Jan 12 18:40:33 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Jan 12 18:40:33 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 12 18:40:33 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jan 12 18:40:33 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Jan 12 18:40:33 localhost kernel[0]: rooting via boot-uuid from /chosen: 588C67B9-5BF3-345F-9F37-B85AB3F33F66
    Jan 12 18:40:33 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 12 18:40:33 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Jan 12 18:40:33 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Jan 12 18:40:33 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Jan 12 18:40:33 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST3500418ASQ Media/IOGUIDPartitionScheme/Customer@2
    Jan 12 18:40:33 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Jan 12 18:40:33 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833
    Jan 12 18:40:33 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 34159efffe298300; max speed s800.
    Jan 12 18:40:33 localhost kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 18:40:34 localhost kernel[0]: NVEthernet: Ethernet address 34:15:9e:29:83:00
    Jan 12 18:40:34 localhost kernel[0]: systemShutdown false
    Jan 12 18:40:44 localhost kernel[0]: NVDANV50HAL loaded and registered.
    Jan 12 18:40:44 localhost kernel[0]: Previous Shutdown Cause: 5
    Jan 12 18:40:44 localhost kernel[0]: DSMOS has arrived
    Jan 12 18:40:44 localhost kernel[0]: Atheros: mac 128.2 phy 13.0 radio 12.0
    Jan 12 18:40:47 Macintosh kernel[0]: NVEthernet::setLinkStatus - Valid but not Active
    Jan 12 18:40:47 Macintosh kernel[0]: AirPort_AthrFusion21: Ethernet address d4:9a:20:61:bc:bb
    Jan 12 18:40:47 Macintosh kernel[0]: IO80211Controller::dataLinkLayerAttachComplete(): adding AppleEFINVRAM notification
    Jan 12 18:40:47 Macintosh kernel[0]: IO80211Interface::efiNVRAMPublished():
    Jan 12 18:40:48 Macintosh kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Jan 12 18:40:48 Macintosh kernel[0]: NVEthernet::setLinkStatus - link Valid and Active
    Jan 12 18:40:49 Macintosh kernel[0]: tap kernel extension version 20080121 <[email protected]>
    Jan 12 18:40:49 Macintosh kernel[0]: tun kernel extension version 20080121 <[email protected]>
    Jan 12 19:03:35 Macintosh kernel[0]: PM notification cancel (pid 214, iTunes)
    Jan 12 19:03:35 Macintosh kernel[0]: IOPMrootDomain: idle cancel
    Jan 12 19:07:40 Macintosh kernel[0]: PM notification cancel (pid 214, iTunes)
    Jan 12 19:07:40 Macintosh kernel[0]: IOPMrootDomain: idle cancel
    Jan 12 19:09:13 Macintosh kernel[0]: PM notification cancel (pid 214, iTunes)
    Jan 12 19:09:13 Macintosh kernel[0]: IOPMrootDomain: idle cancel
    Jan 12 19:11:47 Macintosh kernel[0]: PM notification cancel (pid 214, iTunes)
    Jan 12 19:11:47 Macintosh kernel[0]: IOPMrootDomain: idle cancel
    Jan 12 19:46:46 Macintosh kernel[0]: systemShutdown true
    Jan 12 19:46:46: --- last message repeated 1 time ---
    Jan 12 19:46:46 Macintosh kernel[0]: Kext loading now disabled.
    Jan 12 19:46:46 Macintosh kernel[0]: Kext unloading now disabled.
    Jan 12 19:46:46 Macintosh kernel[0]: Kext autounloading now disabled.
    Jan 12 19:46:46 Macintosh kernel[0]: Kernel requests now disabled.
    Jan 12 19:47:52 localhost kernel[0]: npvhash=4095
    Jan 12 19:47:52 localhost kernel[0]: PAE enabled
    Jan 12 19:47:52 localhost kernel[0]: 64 bit mode enabled
    Jan 12 19:47:52 localhost kernel[0]: Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    Jan 12 19:47:52 localhost kernel[0]: vmpagebootstrap: 950266 free pages and 24582 wired pages
    Jan 12 19:47:52 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 12 19:47:52 localhost kernel[0]: migtable_maxdispl = 73
    Jan 12 19:47:52 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Jan 12 19:47:52 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Jan 12 19:47:52 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Jan 12 19:47:52 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jan 12 19:47:52 localhost kernel[0]: calling mpopolicyinit for Quarantine
    Jan 12 19:47:52 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Jan 12 19:47:52 localhost kernel[0]: calling mpopolicyinit for Sandbox
    Jan 12 19:47:52 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Jan 12 19:47:52 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 12 19:47:52 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 12 19:47:52 localhost kernel[0]: MAC Framework successfully initialized
    Jan 12 19:47:52 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Jan 12 19:47:52 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Jan 12 19:47:52 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 12 19:47:52 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Jan 12 19:47:52 localhost kernel[0]: rooting via boot-uuid from /chosen: 588C67B9-5BF3-345F-9F37-B85AB3F33F66
    Jan 12 19:47:52 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 12 19:47:52 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Jan 12 19:47:52 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Jan 12 19:47:52 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jan 12 19:47:52 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Jan 12 19:47:52 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST3500418ASQ Media/IOGUIDPartitionScheme/Customer@2
    Jan 12 19:47:52 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Jan 12 19:47:52 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 34159efffe298300; max speed s800.
    Jan 12 19:47:52 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833
    Jan 12 19:47:52 localhost kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 19:47:53 localhost kernel[0]: NVEthernet: Ethernet address 34:15:9e:29:83:00
    Jan 12 19:47:53 localhost kernel[0]: systemShutdown false
    Jan 12 19:47:57 localhost kernel[0]: NVDANV50HAL loaded and registered.
    Jan 12 19:47:57 localhost kernel[0]: Previous Shutdown Cause: 5
    Jan 12 19:47:57 localhost kernel[0]: DSMOS has arrived
    Jan 12 19:47:57 localhost kernel[0]: Atheros: mac 128.2 phy 13.0 radio 12.0
    Jan 12 19:47:58 Macintosh kernel[0]: NVEthernet::setLinkStatus - Valid but not Active
    Jan 12 19:47:58 Macintosh kernel[0]: AirPort_AthrFusion21: Ethernet address d4:9a:20:61:bc:bb
    Jan 12 19:47:58 Macintosh kernel[0]: IO80211Controller::dataLinkLayerAttachComplete(): adding AppleEFINVRAM notification
    Jan 12 19:47:58 Macintosh kernel[0]: IO80211Interface::efiNVRAMPublished():
    Jan 12 19:47:59 Macintosh kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Jan 12 19:47:59 Macintosh kernel[0]: NVEthernet::setLinkStatus - link Valid and Active
    Jan 12 19:48:00 Macintosh kernel[0]: tun kernel extension version 20080121 <[email protected]>
    Jan 12 19:48:00 Macintosh kernel[0]: tap kernel extension version 20080121 <[email protected]>
    Jan 12 19:48:40 Macintosh kernel[0]: BootCache: hit rate below threshold (6135 hits on 12271 lookups)
    Jan 12 20:14:00 Macintosh kernel[0]: Kext com.alsoft.Preview not found for unload request.
    Jan 12 20:20:54 Macintosh kernel[0]: disk3: alignment error.
    Jan 12 20:26:33: --- last message repeated 1 time ---
    Jan 12 20:26:33 Macintosh kernel[0]: Kext com.alsoft.Preview not found for unload request.
    Jan 12 20:51:24 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 20:53:31: --- last message repeated 1 time ---
    Jan 12 20:53:31 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 20:54:17: --- last message repeated 1 time ---
    Jan 12 20:54:17 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 20:55:01 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 20:56:48 Macintosh kernel[0]: disk3: media is not present.
    Jan 12 20:56:48: --- last message repeated 8 times ---
    Jan 12 20:56:48 Macintosh kernel[0]: lity com.apple.system.fs] [DevNode /dev/disk3] [MountPt /Volumes/IPOD] [FSLogMsgID 590940435] [FSLogMsgOrder Last]
    Jan 12 20:56:48 Macintosh kernel[0]: disk3: media is not present.
    Jan 12 20:56:48: --- last message repeated 1 time ---
    Jan 12 20:56:48 Macintosh kernel[0]: msdosfsfat_uninitvol: error 6 from msdosfsfat_cacheflush
    Jan 12 20:56:58 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 20:59:59 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 21:00:19 Macintosh kernel[0]: ogMsgID 821200335] [FSLogMsgOrder Last]
    Jan 12 21:00:19 Macintosh kernel[0]: disk3: media is not present.
    Jan 12 21:00:19 Macintosh kernel[0]: MsgOrder Last]
    Jan 12 21:00:19 Macintosh kernel[0]: disk3: media is not present.
    Jan 12 21:00:19 Macintosh kernel[0]: msdosfsfat_uninitvol: error 6 from msdosfsfat_cacheflush
    Jan 12 21:00:19 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 21:02:37 Macintosh kernel[0]: USBF: 4489.356 [0x8583900] The IOUSBFamily is having trouble enumerating a USB device that has been plugged in. It will keep retrying. (Port 1 of Hub at 0x24100000)
    Jan 12 21:02:37 Macintosh kernel[0]: USBF: 4489.356 [0x8583900] The IOUSBFamily was not able to enumerate a device.
    Jan 12 21:03:28 Macintosh kernel[0]: USBMSC Identifier (non-unique): 000A27001F31E7B7 0x5ac 0x1302 0x1
    Jan 12 21:07:54 Macintosh kernel[0]: Kext com.apple.driver.AppleMobileDevice not found for unload request.
    Jan 12 21:07:54 Macintosh kernel[0]: Kext com.apple.driver.AppleUSBEthernetHost not found for unload request.
    Jan 12 21:10:32 Macintosh kernel[0]: systemShutdown true
    Jan 12 21:10:33: --- last message repeated 1 time ---
    Jan 12 21:10:33 Macintosh kernel[0]: Kext loading now disabled.
    Jan 12 21:10:33 Macintosh kernel[0]: Kext unloading now disabled.
    Jan 12 21:10:33 Macintosh kernel[0]: Kext autounloading now disabled.
    Jan 12 21:10:33 Macintosh kernel[0]: Kernel requests now disabled.
    Jan 12 21:27:41 localhost kernel[0]: npvhash=4095
    Jan 12 21:27:41 localhost kernel[0]: PAE enabled
    Jan 12 21:27:41 localhost kernel[0]: 64 bit mode enabled
    Jan 12 21:27:41 localhost kernel[0]: Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    Jan 12 21:27:41 localhost kernel[0]: vmpagebootstrap: 700152 free pages and 282888 wired pages
    Jan 12 21:27:41 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 12 21:27:41 localhost kernel[0]: migtable_maxdispl = 73
    Jan 12 21:27:41 localhost kernel[0]: SAFE BOOT DETECTED - only valid OSBundleRequired kexts will be loaded.
    Jan 12 21:27:41 localhost kernel[0]: Kext _kernel_ is not loadable during safe boot; omitting its personalities.
    Jan 12 21:27:41 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Jan 12 21:27:41 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Jan 12 21:27:41 localhost kernel[0]: calling mpopolicyinit for Quarantine
    Jan 12 21:27:41 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Jan 12 21:27:41 localhost kernel[0]: calling mpopolicyinit for Sandbox
    Jan 12 21:27:41 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Jan 12 21:27:41 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Jan 12 21:27:41 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jan 12 21:27:41 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 12 21:27:41 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 12 21:27:41 localhost kernel[0]: MAC Framework successfully initialized
    Jan 12 21:27:41 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Jan 12 21:27:41 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Jan 12 21:27:41 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 12 21:27:41 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jan 12 21:27:41 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Jan 12 21:27:41 localhost kernel[0]: rooting via boot-uuid from /chosen: 588C67B9-5BF3-345F-9F37-B85AB3F33F66
    Jan 12 21:27:41 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 12 21:27:41 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Jan 12 21:27:41 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Jan 12 21:27:41 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Jan 12 21:27:41 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST3500418ASQ Media/IOGUIDPartitionScheme/Customer@2
    Jan 12 21:27:41 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Jan 12 21:27:41 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 34159efffe298300; max speed s800.
    Jan 12 21:27:41 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833
    Jan 12 21:27:52 localhost kernel[0]: Waiting for DSMOS...
    Jan 12 21:27:53 localhost kernel[0]: NVEthernet: Ethernet address 34:15:9e:29:83:00
    Jan 12 21:27:54 localhost kernel[0]: systemShutdown false
    Jan 12 21:28:00 localhost kernel[0]: NVEthernet::setLinkStatus - Valid but not Active
    Jan 12 21:28:01 Macintosh kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Jan 12 21:28:01 Macintosh kernel[0]: NVEthernet::setLinkStatus - link Valid and Active
    Jan 12 21:28:36 Macintosh kernel[0]: Previous Shutdown Cause: 3
    Jan 12 21:28:36 Macintosh kernel[0]: NVDANV50HAL loaded and registered.
    Jan 12 21:28:36 Macintosh kernel[0]: DSMOS has arrived
    Jan 12 21:57:07 Macintosh kernel[0]: systemShutdown true
    Jan 12 21:57:09: --- last message repeated 1 time ---
    Jan 12 21:57:09 Macintosh kernel[0]: Kext loading now disabled.
    Jan 12 21:57:09 Macintosh kernel[0]: Kext unloading now disabled.
    Jan 12 21:57:09 Macintosh kernel[0]: Kext autounloading now disabled.
    Jan 12 21:57:09 Macintosh kernel[0]: Kernel requests now disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleSMBusPCI - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleSMBusPCI"
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleHDAController - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleHDAController"
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.iokit.AppleProfileFamily - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AudioIPCDriver - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOBluetoothSerialManager - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOSurface - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleProfileOSHooks"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "comapple_driverAudioIPCDevice"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "IOBluetoothSerialManager"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "IOSurfaceRoot"
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleUpstreamUserClient - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleUpstreamUserClientDriver"
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleUpstreamUserClient - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleUpstreamUserClientDriver"
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AudioIPCDriver - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOBluetoothSerialManager - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOSurface - requests to user space are disabled.
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "comapple_driverAudioIPCDevice"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "IOBluetoothSerialManager"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "IOSurfaceRoot"
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelNehalemProfile - requests to user space are disabled.
    Jan 12 21:57:11: --- last message repeated 1 time ---
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelPenrynProfile - requests to user space are disabled.
    Jan 12 21:57:11: --- last message repeated 1 time ---
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelYonahProfile - requests to user space are disabled.
    Jan 12 21:57:11: --- last message repeated 1 time ---
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelNehalemProfile - requests to user space are disabled.
    Jan 12 21:57:11: --- last message repeated 1 time ---
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelPenrynProfile - requests to user space are disabled.
    Jan 12 21:57:11: --- last message repeated 1 time ---
    Jan 12 21:57:11 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelYonahProfile - requests to user space are disabled.
    Jan 12 21:57:11: --- last message repeated 1 time ---
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 12 21:57:11 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: telYonahProfile - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelMeromProfile - requests to user space are disabled.
    Jan 12 21:57:27: --- last message repeated 1 time ---
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelNehalemProfile - requests to user space are disabled.
    Jan 12 21:57:27: --- last message repeated 1 time ---
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelPenrynProfile - requests to user space are disabled.
    Jan 12 21:57:27: --- last message repeated 1 time ---
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelYonahProfile - requests to user space are disabled.
    Jan 12 21:57:27: --- last message repeated 1 time ---
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelMeromProfile - requests to user space are disabled.
    Jan 12 21:57:27: --- last message repeated 1 time ---
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromPerformanceMonitor"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromSPR"
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOFireWireIP - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "IOFireWireIP"
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleTyMCEDriver - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleTyMCEDriver"
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleSMBusPCI - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.GeForce - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "AppleSMBusPCI"
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "NVKernel"
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.GeForce - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "NVKernel"
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.GeForce - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "NVKernel"
    Jan 12 21:57:27 Macintosh kernel[0]: Can't load kext com.apple.GeForce - requests to user space are disabled.
    Jan 12 21:57:27 Macintosh kernel[0]: Couldn't alloc class "NVKernel"
    Jan 12 21:57:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AudioIPCDriver - requests to user space are disabled.
    Jan 12 21:57:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOBluetoothSerialManager - requests to user space are disabled.
    Jan 12 21:57:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOSurface - requests to user space are disabled.
    Jan 12 21:57:29 Macintosh kernel[0]: Can't load kext com.AmbrosiaSW.AudioSupport - requests to user space are disabled.
    Jan 12 21:57:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.AppleProfileFamily - requests to user space are disabled.
    Jan 12 21:57:29 Macintosh kernel[0]: Couldn't alloc class "comapple_driverAudioIPCDevice"
    Jan 12 21:57:29 Macintosh kernel[0]: Couldn't alloc class "IOBluetoothSerialManager"
    Jan 12 21:57:29 Macintosh kernel[0]: Couldn't alloc class "IOSurfaceRoot"
    Jan 12 21:57:29 Macintosh kernel[0]: Couldn't alloc class "comAmbrosiaSWAudioSupport"
    Jan 12 21:57:29 Macintosh kernel[0]: Couldn't alloc class "AppleProfileOSHooks"
    Jan 13 19:15:37 localhost kernel[0]: npvhash=4095
    Jan 13 19:15:37 localhost kernel[0]: PAE enabled
    Jan 13 19:15:37 localhost kernel[0]: 64 bit mode enabled
    Jan 13 19:15:37 localhost kernel[0]: Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    Jan 13 19:15:37 localhost kernel[0]: vmpagebootstrap: 700152 free pages and 282888 wired pages
    Jan 13 19:15:37 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 13 19:15:37 localhost kernel[0]: migtable_maxdispl = 73
    Jan 13 19:15:37 localhost kernel[0]: SAFE BOOT DETECTED - only valid OSBundleRequired kexts will be loaded.
    Jan 13 19:15:37 localhost kernel[0]: Kext _kernel_ is not loadable during safe boot; omitting its personalities.
    Jan 13 19:15:37 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Jan 13 19:15:37 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Jan 13 19:15:37 localhost kernel[0]: calling mpopolicyinit for Quarantine
    Jan 13 19:15:37 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Jan 13 19:15:37 localhost kernel[0]: calling mpopolicyinit for Sandbox
    Jan 13 19:15:37 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Jan 13 19:15:37 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Jan 13 19:15:37 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jan 13 19:15:37 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 13 19:15:37 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 13 19:15:37 localhost kernel[0]: MAC Framework successfully initialized
    Jan 13 19:15:37 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Jan 13 19:15:37 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Jan 13 19:15:37 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 13 19:15:37 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jan 13 19:15:37 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Jan 13 19:15:37 localhost kernel[0]: rooting via boot-uuid from /chosen: 588C67B9-5BF3-345F-9F37-B85AB3F33F66
    Jan 13 19:15:37 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 13 19:15:37 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Jan 13 19:15:37 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Jan 13 19:15:37 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Jan 13 19:15:37 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST3500418ASQ Media/IOGUIDPartitionScheme/Customer@2
    Jan 13 19:15:37 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Jan 13 19:15:37 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 34159efffe298300; max speed s800.
    Jan 13 19:15:37 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833
    Jan 13 19:15:48 localhost kernel[0]: Waiting for DSMOS...
    Jan 13 19:15:53 localhost kernel[0]: NVEthernet: Ethernet address 34:15:9e:29:83:00
    Jan 13 19:15:53 localhost kernel[0]: systemShutdown false
    Jan 13 19:15:59 localhost kernel[0]: NVEthernet::setLinkStatus - Valid but not Active
    Jan 13 19:16:00 Macintosh kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Jan 13 19:16:00 Macintosh kernel[0]: NVEthernet::setLinkStatus - link Valid and Active
    Jan 13 19:16:00 Macintosh kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Jan 13 19:16:00 Macintosh kernel[0]: NVEthernet::setLinkStatus - link Valid and Active
    Jan 13 19:16:31 Macintosh kernel[0]: Previous Shutdown Cause: 3
    Jan 13 19:16:31 Macintosh kernel[0]: NVDANV50HAL loaded and registered.
    Jan 13 19:16:31 Macintosh kernel[0]: DSMOS has arrived
    Jan 13 19:27:27 Macintosh kernel[0]: systemShutdown true
    Jan 13 19:27:29: --- last message repeated 1 time ---
    Jan 13 19:27:29 Macintosh kernel[0]: Kext loading now disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Kext unloading now disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Kext autounloading now disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Kernel requests now disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleSMBusPCI - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleSMBusPCI"
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleHDAController - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleHDAController"
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.AppleProfileFamily - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AudioIPCDriver - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOBluetoothSerialManager - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOSurface - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleProfileOSHooks"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "comapple_driverAudioIPCDevice"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "IOBluetoothSerialManager"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "IOSurfaceRoot"
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleUpstreamUserClient - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleUpstreamUserClientDriver"
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleUpstreamUserClient - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleUpstreamUserClientDriver"
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AudioIPCDriver - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOBluetoothSerialManager - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOSurface - requests to user space are disabled.
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "comapple_driverAudioIPCDevice"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "IOBluetoothSerialManager"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "IOSurfaceRoot"
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelNehalemProfile - requests to user space are disabled.
    Jan 13 19:27:29: --- last message repeated 1 time ---
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelPenrynProfile - requests to user space are disabled.
    Jan 13 19:27:29: --- last message repeated 1 time ---
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelYonahProfile - requests to user space are disabled.
    Jan 13 19:27:29: --- last message repeated 1 time ---
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelNehalemProfile - requests to user space are disabled.
    Jan 13 19:27:29: --- last message repeated 1 time ---
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelPenrynProfile - requests to user space are disabled.
    Jan 13 19:27:29: --- last message repeated 1 time ---
    Jan 13 19:27:29 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelYonahProfile - requests to user space are disabled.
    Jan 13 19:27:29: --- last message repeated 1 time ---
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 13 19:27:29 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: oc class "AppleRawPhysicalMemoryAddressSpace"
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelNehalemProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelPenrynProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelYonahProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelMeromProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelNehalemProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelPenrynProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelYonahProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.driver.AppleIntelMeromProfile - requests to user space are disabled.
    Jan 13 19:27:43: --- last message repeated 1 time ---
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelNehalemSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelPenrynPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelYonahPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromPerformanceMonitor"
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "AppleIntelMeromSPR"
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOFireWireIP - requests to user space are disabled.
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "IOFireWireIP"
    Jan 13 19:27:43 Macintosh kernel[0]: Can't load kext com.apple.GeForce - requests to user space are disabled.
    Jan 13 19:27:43 Macintosh kernel[0]: Couldn't alloc class "NVKernel"
    Jan 13 19:27:49 Macintosh kernel[0]: Can't load kext com.apple.driver.AudioIPCDriver - requests to user space are disabled.
    Jan 13 19:27:49 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOBluetoothSerialManager - requests to user space are disabled.
    Jan 13 19:27:49 Macintosh kernel[0]: Can't load kext com.apple.iokit.IOSurface - requests to user space are disabled.
    Jan 13 19:27:49 Macintosh kernel[0]: Can't load kext com.AmbrosiaSW.AudioSupport - requests to user space are disabled.
    Jan 13 19:27:49 Macintosh kernel[0]: Can't load kext com.apple.iokit.AppleProfileFamily - requests to user space are disabled.
    Jan 13 19:27:49 Macintosh kernel[0]: Couldn't alloc class "comapple_driverAudioIPCDevice"
    Jan 13 19:27:49 Macintosh kernel[0]: Couldn't alloc class "IOBluetoothSerialManager"
    Jan 13 19:27:49 Macintosh kernel[0]: Couldn't alloc class "IOSurfaceRoot"
    Jan 13 19:27:49 Macintosh kernel[0]: Couldn't alloc class "comAmbrosiaSWAudioSupport"
    Jan 13 19:27:49 Macintosh kernel[0]: Couldn't alloc class "AppleProfileOSHooks"
    Jan 13 19:28:23 localhost kernel[0]: npvhash=4095
    Jan 13 19:28:23 localhost kernel[0]: PAE enabled
    Jan 13 19:28:23 localhost kernel[0]: 64 bit mode enabled
    Jan 13 19:28:23 localhost kernel[0]: Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386
    Jan 13 19:28:23 localhost kernel[0]: vmpagebootstrap: 950969 free pages and 23879 wired pages
    Jan 13 19:28:23 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 13 19:28:23 localhost kernel[0]: migtable_maxdispl = 73
    Jan 13 19:28:23 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Jan 13 19:28:23 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Jan 13 19:28:23 localhost kernel[0]: calling mpopolicyinit for Quarantine
    Jan 13 19:28:23 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Jan 13 19:28:23 localhost kernel[0]: calling mpopolicyinit for Sandbox
    Jan 13 19:28:23 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Jan 13 19:28:23 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Jan 13 19:28:23 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jan 13 19:28:23 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 13 19:28:23 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 13 19:28:23 localhost kernel[0]: MAC Framework successfully initialized
    Jan 13 19:28:23 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Jan 13 19:28:23 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Jan 13 19:28:23 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 13 19:28:23 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jan 13 19:28:23 localhost kernel[0]: mbinit: done (64 MB memory set for mbuf pool)
    Jan 13 19:28:23 localhost kernel[0]: rooting via boot-uuid from /chosen: 588C67B9-5BF3-345F-9F37-B85AB3F33F66
    Jan 13 19:28:23 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 13 19:28:23 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Jan 13 19:28:23 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Jan 13 19:28:23 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Jan 13 19:28:23 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/ST3500418ASQ Media/IOGUIDPartitionScheme/Customer@2
    Jan 13 19:28:23 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Jan 13 19:28:23 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 34159efffe298300; max speed s800.
    Jan 13 19:28:23 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833
    Jan 13 19:28:37 localhost kernel[0]: NVEthernet: Ethernet address 34:15:9e:29:83:00
    Jan 13 19:28:37 localhost kernel[0]: systemShutdown false
    Jan 13 19:28:38 localhost kernel[0]: Waiting for DSMOS...
    Jan 13 19:28:40 Macintosh kernel[0]: NVEthernet::setLinkStatus - Valid but not Active
    Jan 13 19:28:41 Macintosh kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    Jan 13 19:28:41 Macintosh kernel[0]: NVEthernet::setLinkStatus - link Valid and Active
    Jan 13 19:28:44 Macintosh kernel[0]: NVDANV50HAL loaded and registered.
    Jan 13 19:28:45 Macintosh kernel[0]: Atheros: mac 128.2 phy 13.0 radio 12.0
    Jan 13 19:28:45 Macintosh kernel[0]: AirPort_AthrFusion21: Ethernet address d4:9a:20:61:bc:bb
    Jan 13 19:28:45 Macintosh kernel[0]: IO80211Controller::dataLinkLayerAttachComplete(): adding AppleEFINVRAM notification
    Jan 13 19:28:45 Macintosh kernel[0]: IO80211Interface::efiNVRAMPublished():
    Jan 13 19:28:45 Macintosh kernel[0]: Previous Shutdown Cause: 3
    Jan 13 19:28:54 Macintosh kernel[0]: BootCache: hit rate below threshold (1881 hits on 4211 lookups)
    Jan 13 19:28:55 Macintosh kernel[0]: DSMOS has arrived
    Jan 13 19:28:57 Macintosh kernel[0]: tap kernel extension version 20080121 <[email protected]>
    Jan 13 19:28:57 Macintosh kernel[0]: tun kernel extension version 20080121 <[email protected]>
    Jan 13 20:53:46 Macintosh kernel[0]: SiLabsUSBDriver(this=0x1685a380)::start Version is 2408 built on Fri Apr 24 12:45:35 EDT 2009 - Stop routine is located at 0x586b50aa
    Jan 13 20:53:46 Macintosh kernel[0]: SiLabsUSBDriver(provider=0x16cc2f00)::start device 1 under 10.6.0 succeeded device(0x9a45004) vid/pid is 4047 4100
    Jan 13 21:04:49 Macintosh kernel[0]: BootCache: too many history clusters (151, limit 151)

  • Broken folder icon but boots in safe mode

    I'm totally puzzled.
    When I boot the computer either from the HDD or my bootable back-up, i get the broken folder icon.
    But i can boot just fine in safe mode from the HDD - in fact, that's how i'm typing this message right now.
    I have turned off all login items.
    I repaired permissions on disk utility.
    What else can i do (short of my genius bar appointment on Monday)?
    Thanks in advance for any ideas.

    Do you mean a flashing question mark in a folder?
    DALE

  • Accessing File/Folder icons for current Look and Feel

    Hi,
    I'm looking to get the Icon for files and folders that the current UIManager uses for some work I'm doing. Please could you help.
    I'm getting strange results from the method I'm using, which is to create a temporary file and do: Icon i = FileSystemView.getFileSystemView().getSystemIcon(tempFile);
    I don't like the idea of having to create a temporary file to do this - isn't there another way to do it? - for instance asking "get default file icon"/"get default folder icon".
    I could download a jpg image of the file/folder icons, but this is static - and I want my method to get the icons used for the current look and feel I'm using.
    There must be a simple way to do this right? I mean, java uses a method to get the icons for the current look and feel.. Oh.. Please help!
    - Edd.

    Try these:
    UIManager.getIcon("FileView.directoryIcon");
    UIManager.getIcon("FileView.fileIcon");Leif Samuelsson
    Java Swing Team
    Sun Microsystems, Inc.

  • In Firefox4, can I lose the folder icons from the Bookmarks Bar while keeping icons everywhere else (because the folder icons are superfluous and extend the horizontal list of bookmark folders beyond the width of the window)?

    I've just installed Firefox4 for Mac (OS 10.6.7) and can no longer see all my bookmark folders at once across the top -- because the folder icons make the Bookmarks Bar too wide. Yet, I like the icons on the other bars, so I don't want to turn them off globally. Is there a way to just lose the folder icons -- which don't appear to serve a purpose anyway?

    Small correction to original post. Machine is an iMac 2.4ghz Intel Core 2 Duo. (I was at home when I made the first post.) But the bookmarks menu behavior still exists today and FF 5 is essentially unusable.
    System details next to the post are not for machine with the bug in question.
    Found a copy of FF4 to use until a solution is found. Turned off automatic updates to preserve this version.

  • Folder icon, whirring sound, clicking noise, freezes, freezes itunes....

    okay...my ipod (with the click wheel) is definitely messed up. a few months ago i accidentally dropped it, and it started having a sad face and then the folder icon. i took it to an apple store and they restored it for me. it started working fine and everything was hunky-dory...until a few weeks ago it happened again, except i didn't drop it this time! (i think it just did it to mess with me or something)...so anyways...i've tried all the stuff i can think of: recharging, resets, disk mode...but nothing seems to work! and don't tell me to hook it up to my computer because everytime i do that and try to open itunes, it freezes!!! so i can't even restore it...and when i try to go through "my computer" and click on the usb port for the ipod, it freezes...so i'm starting to think all is lost...and a new ipod is starting to sound pretty good, but i'm hoping i can save my $300 and fix this one....can anyone help me???

    Hard drive upgrade services:
    MCE Technologies
    DT & T Computer Services
    Sources for compatible drives:
    Other World Computing
    Newegg
    Online instructions:
    http://www.pbfixit.com/Guide/50.12.0.html
    http://www.powerbooktech.com/knowledge,name-Hard-Drive,type-6.htm

Maybe you are looking for