Should library be on its own drive?

Quick question since I just bought a G-Tech G-Speed Q drive;  I am thinking about putting all my media(video, photos, music, etc) in one place so I can stop hooking up 10 different hard drives in a mess of wires each time I have a project to do.  Is it ok to put my Aperture library on an external drive(G-Speed Q) with other media or does it cause archiving issues since I do a lot of touch ups on photos, etc?
Thanks,
Brian

The Library can be anywhere connected to your computer.  Apple recommends against putting it on a NAS.  I've run large Libraries over FW400 with only minor performance degradation.
So that's "can".
What's recommended is to put the Library on the drive with the fastest throughput on your system.  Anything else will be slower.
Also recommended -- but this requires a bit of learning -- is to convert your Images' Masters from Managed to Referenced.  Referenced Masters can be stored on slower drives with much less of a performance hit than you'll suffer putting your Library on a slower drive.
Since Referenced Masters are usually on a different drive than the Library (the standard set-up is to put the Library on your system drive and your Referenced Masters on an external drive), it is possible to open your Library in Aperture with your Referenced Masters off-line.  (Aperture automatically brings them on-line whenever the volume on which they reside is available.)  Images with off-line Masters cannot be adjusted, printed, or exported at full-size.  You will still be able to edit the Images' metadata, however, and will have access to the large thumbnails Aperture keeps (they are called "Previews").
This system works very well for many, and especially for those with portable computers and/or small system drives.
You should read this page in the User Manual.  As it says:
"Aperture lets you choose how you organize your photos on disk."

Similar Messages

  • Having Aperture library on its own drive?

    I'm wondering if it would be advantageous to move the Aperture library to its own drive. I currently have 2 different internal RAID 0 volumes. One of them is comprised of two WD Raptor drives and is my boot drive and contains my applications and Aperture library. The other drive contains (some of) the referenced files and my data. Given that I am a heavy Aperture user (350,000 referenced images in a 150gb library) I'm wondering if I wouldn't be better off having the library be the only thing on the Raptors. I'm guessing that with a library this big, disk fragmentation could be a major bottleneck, plus I would also gain some speed advantages by having my volume only be 50% full (instead of 75%).
    Do you think I am making this overcomplicated for a small speed advantage, or I might I see significant gains?
    thanks,
    Dave
    Message was edited by: davidwittig

    Hi both,
    Firstly i typo'ed the RAID number (sorry but sounds like you realized).
    Subjective / empirical results from my own tests with my needs in mind:
    I've noticed small performance improvements moving from FW400 to eSATA externals but frankly with 8Mpix/24Mb files sizes for the RAW's it's not been a significant contribution to decision criteria for me. Moving from USB 2 to FW400 was significant, esp. for launching Aperture, importing and exporting. During editing/adjustments, FW400 was quite acceptable.
    As for RAM, moving from 2.5Gb to 4.5Gb gained me some when I was also running PS CS3 and other apps. (Mail, Safari, MS Office 2004/Rosetta etc.). At 4.5Gb, I rarely run into much virtual memory paging. My suggestion is to launch Activity Monitor and just see how you are using RAM for your workload. More RAM will achieve nothing at all if no paging to disk is taking place.
    Aperture is reasonably multi-threaded but import to some extent and export primarily are the best examples of where the extra cores add value. Once into image manipulation, my 4-cores tick along at idle for the most part and sadly I Activity Monitor doesn't show GPU performance. Maybe the X1900 G5 card is maxed out (likely) but I don't know. I did a test with 2 x graphics cards under Aperture v1.1 but it showed no improvement whatsoever. Unknown whether Aperture v2.x will multi-thread gpu calls but I think not .... possibly core image limitation in Leopard.

  • Should my operating system be on its own drive?

    Hi,
    I've heard some people say OS needs its own drive, but people on this forum are known to have said OS and programs together are okay.
    So my question is, is it better to separate OS and programs, or are the benefits very slim?
    Thanks!
    Mr D

    Photon,
    I have run multi-SSD RAID 0 arrays on various workstations and servers since 2011. No, it is certainly not "mainstream" theory, yes, you loose the ability for SSD vendor utilities to do cool SSD stuff (utilities from Samsung, Intel, etc.), and lastly are SSD RAID 0 arrays fast, yes, they are fast indeed!
    My workhouse x58 build from 2011 uses a 5x 64GB Crucial C300 array on a Areca controller for the OS/boot drive (1500 MB/s reads, 500 MB/s writes). And my new 8-core 2014 build uses a 8x 128GB Crucial M550 array partitioned with 250GB for OS/programs and the rest for scratch, swap, and a bit of work area (also on an Areca controller with 28 channels, 2800 MB/s reads and 2300 MB/s writes). Is this for everybody, I would not say "no", I would say "heck no"! Do realize that when you have a 28-port SAS/SATA controller (I have lots of hard drives too), that having lots of small SSDs can provide good bang-for-the-buck vs. single or dual large SSDs (512GB or 1TB SSDs are pricey). Price wise, the 8x Crucial drives cost me just under what a single 1TB Samsung 850 Pro is selling for today - expensive, but not so crazy considering the cost for an 8-core build and 64GB of RAM.
    Finally, does a RAID 0 OS/programs drive help Premiere Pro performance?(this is an Adobe Premiere forum section) No, not really. Does it help some other applications, absolutely. Do all programs open quickly, yup. Does putting Adobe bridge "scratch" files on a big SSD RAID help, yes indeed! I am not using Lightroom, but suspect that is another application that would likely benefit from a large SSD array.
    The best performing SSDs to do a RAID 0 with are the Intel 730 series drives, but those drives are still pretty pricey. The higher end Crucial drives (now being re-branded to Micron) really scale well with RAIDs. I've read good and bad things about using the 850 Pro drives for a RAID.
    Regards,
    Jim

  • I just received a nano for Christmas. I bought an iwatch wristband but I can't get the face to rotate.  Should this happen on its own or do I need to set it manually?

    I recently received a nano for Christmas but i cant get the face to rotate. Should this happen on its own or do I need to set it manually?

    I guess it helps to read the manual... haha... just figured it out!

  • When should a subclass have its own fields and when should it use its super

    When should a subclass have its own fields and when should it use its superclass' fields?
    Hi, thank you for reading this post!
    Let me use a specific example to ask my question.
    public class BankAccount {
         private double accountBalance;
         public double getBalance() {
              return this.accountBalance;
    public class SavingsAccount extends BankAccount {
         private double accountBalance;
         public double getBalance() {
              return this.accountBalance;
    }In the bank account example, both BankAccount and SavingsAccount will have a method getBalance(). Therefore, they
    both require a account balance field. My question is since getBalance() for both classes will perform the exact same
    operation, when should I omit declaring the getBalance() method and the accountBalance field in the subclass, and
    when should I include them?
    My own thought is when we never have to instantiate a superclass object (e.g. an abstract class), then we place
    common fields in the abstract superclass and have subclasses access these fields via protected getter/setters to
    access the superclass' fields. This is the principle of reuse.
    But when you do need to instantiate a superclass and the superclass does need to maintain its own fields, then
    I would need to duplicate the accountBalance field and getBalance() method in the subclass.
    Is my thinking correct or incorrect?
    Thank you in advance for your help!
    Eric
    Edited by: er**** on 22-Aug-2011 20:19

    er**** wrote:
    If SavingsAccount inherit BankAccount.getBalance()...getBalance() would return BankAccount's accountBalance. This is NOT the correct result we want.Actually, I think it's precisely what you want.
    We want getBalance() to return BankAccount's accountBalance when we use a BankAccount object, and SavingsAccount's accountBalance when we use a SavingsAccount object.I seriously doubt that. I think you're confusing a BankAccount with a Customer, who can have more than one account.
    In every system I've ever seen, a SavingsAccount IS-A BankAccount - that is to say, it's a genuine subtype. Now, it may well contain other fields ('interest'?) that a normal account wouldn't, but 'balance' ain't one of them.
    Winston

  • Should OS be in its own partition on a 40G drive?

    After fighting with constant kernel panics in strange places (i.e., quitting Safari, booting Finder) I've decided to do an erase and install from the original panther disc and do the upgrades back 10.4.11 to see if that solves the problems.
    I've never partitioned my HD, but I'm wondering if there is a reason to put the system in its own partition. If so, how much of the 40G do I dedicate to it?
    I am the only user, so I want everything at the shared level and only my music and work files on my user space.

    As Malcolm says, don't partition. You have a relatively small drive and partitioning will cramp OSX which needs a lot of free disk space to run optimally. The only reason I can see to put OSX on its own partition is if you want to have multiple copies on a computer. The other reason to partition is for convenience in making backups but that's going beyond your immediate question.

  • Should Wireless be in its own MPLS VRF?

    Hi,
    I already have an answer I like on this one, "YES!".
    Unfortunately I don't live in Mike-land while I'm at work. I need some reference architectures or authoritative security guides that explain why this is a best-practice, (at least where MPLS VRF's are available for use).
    My short list of reasons is:
    - More refined segementation
    - Easier standardization practices and associated documentation for tier I/IIs support staffs
    - Easier to trouble-shoot when route tables are differentiated, (wireless VRF's and wired VRF's)
    - Easier to observe and isolate traffic, (at firewall or router) in case of security breach
    ...I could go on.
    Any good documentation on this out there?  I can't find much.
    Any help appreciated,
    M.

    As Malcolm says, don't partition. You have a relatively small drive and partitioning will cramp OSX which needs a lot of free disk space to run optimally. The only reason I can see to put OSX on its own partition is if you want to have multiple copies on a computer. The other reason to partition is for convenience in making backups but that's going beyond your immediate question.

  • Installing Windows XP to its own drive - and install question

    Am I able to install Windows on half of a formatted 500GB hard drive or do I have to install on entire drive?
    I have already partitioned the drive with 2 partitions and want to install Windows on one of the partitions.
    When Windows starts during installation, asked what drive I want to use (not the same screen where you choose the BootCamp partition - before that) and offers choices to delete partition or create one.
    I have done this before - can't seem to remember what to do.
    Thanks,
    Don

    Hi Don,
    for the BootCamp Assistant to be able to partition an internal harddisk, it has to find the drive to be filled with one single volume using the 'Mac OS Extended (Journaled)' file system and the GPT (GUID Partition Table) as partition scheme.
    If already partitioned with Disk Utility for example, the BootCamp Assistant usually refuses to 'touch' that harddisk.
    Personally I would go with the 50:50 approach. At least that's what I have on my third HD.
    I never tried XP only on a HD with my Mac Pro.
    Later Windows versions like Vista and Windows 7 work very well as single installs.
    But XP relys heavy on the EFI-to-BIOS emulation Apple uses for BootCamp.
    And besides what's the point to have a big unused/unneeded amount of diskspace assigned to XP, when you can use the second partition on that HD for some OSX useage.
    Regards
    Stefan

  • Does Time machine need its own drive exclusively?

    Hello,
    I want to buy a thunderbolt duo drive from Western digital or use in my MBA. Is it possible to use this drive for time machine purpose as well as normal external drive for itunes and jpegs?
    Does this work or does time machine an external drive exclusively?
    Thanx in advance

    Time Machine will eventually take up all the free space on the partition it's backing up to. In addition, having your backups on the same drive as the original data won't help when that drive fails.
    (70080)

  • How do you assign an InDesign server instance to its own drive?

    I am working on optimizing the performance of our InDesign server and read about the possibility of assigning drives to the individual instances in the performance guide. Is there a configuration file or command-line argument for configuring the working drive for each server instance?

    I am not sure about that. Do you mean that all I have to do is provide the interface <cc:attribute name="value" type="lvl1.lvl2.someClass"/> and when I run the method, the returned result will be written into the expression provided in "value"?

  • CD/DVD drive open on its own - Equium L40

    Hi,
    I have a Equium L40-10X laptop bought recently from Pc World. It's been working fine until recently my cd/dvd drive popped open on its own. I closed it and then about 10 minutes later it did it again. This happens every so often. After a bit of research I found out it could have been a spyware issue. Scanned, and removed all traces etc. Problem appeared to be gone, but alas, the drive once again popped open.
    Recently the drive is not reading discs as well. It seems to work when it wants for any time between 10 seconds and an hour at a time. The things got a mind of its own....and when it's not working, the button to open the drive doesn??t seem to work. I have to use a paperclip to open the drive.
    Either I have a haunted laptop or there's something wrong.
    Has anyone had any experience of anything like this before or have any advice on what to do?
    Thanks, Jon.

    Hi mate
    I didnt notice something like this before but I presume its a mechanical problem.
    Dont think 3rd party software (program, spyware, virus, etc) could cause this issue.
    Additionally you have said that the drive is not reading discs as well.
    In such case I would recommend contacting the ASP in your country and to ask for the drive check and if necessary for an ODD drive replacement.
    If the warranty is valid the replacement should be done for free.
    Best regards

  • Splitting event into its own library

    My main iPhoto library is growing to the point where it will barely fit on a DVD.
    I'd like to split out the larger of the two events in this library into its own library.
    I do have iPhoto Library Manager...
    I'd like to know how to do this as I really should get around to making my periodic DVD backups.

    Yeah, I did just that - but as for the actual move, I was momentarily stumped until I realized I just had to click and drag the event in question into the new library.
    Done and done, now am "starting over" by moving all the pics previously tagged with keywords into new events.
    I said it before and I'll say it again - I simply do not know why I was so hesitant to use iPhoto in the first place! It's far better than my old "folder tree" system.
    Thanks for the big hint.
    Message was edited by: Dave Dahle

  • My iMac suddenly restarted on its own, saying there was a problem.   When I saw that, I noticed iPhoto was "finding discrepancies and is now rebuilding my entire library."   Ideas?

    Using
    Mac (21.5-inch Late 2009), OS X Mavericks (10.9)
    My iMac suddenly restarted on its own, saying there was a problem.   When I saw that, I noticed iPhoto was "finding discrepancies and is now rebuilding my entire library."     Am currently repairing permissions and running Intego virus scan.   Ideas?    Thanks...Ralph

    Thanks Kirk and Thomas....I did appear to have a kernel panic.   The contents of the panic are shown below.   I used disc permissions repair on the internal and external drives and all seem to be ok.     iPhoto is completely rebuilt and all is well there.    I use Time Machine and a dedicated hard drive for its contents.   Been using Macs since my original computer....a brand new Mac II.....this is a new experience.   Here's the info displayed on the panic.   Thanks a bunch...Ralph
    Anonymous UUID:       9B916146-180D-BE8C-5A9D-ABC23CCA6DBF
    Fri Feb 13 20:04:49 2015
    panic(cpu 2 caller 0xffffff800b65518d): "a freed zone element has been modified: expected 0xdb989fca874ef542 but found 0xffffff800bc73bb0, bits changed 0x2467604a8c89cef2, at offset 0 of 256 in zone: kalloc.256"@/SourceCache/xnu/xnu-2422.115.10/osfmk/kern/zalloc.c:461
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8017f6b390 : 0xffffff800b623139
    0xffffff8017f6b410 : 0xffffff800b65518d
    0xffffff8017f6b450 : 0xffffff800b65296f
    0xffffff8017f6b4b0 : 0xffffff800b652249
    0xffffff8017f6b5b0 : 0xffffff800b62abff
    0xffffff8017f6b5e0 : 0xffffff800ba4f98d
    0xffffff8017f6b610 : 0xffffff800babb287
    0xffffff8017f6b660 : 0xffffff7f8bc85032
    0xffffff8017f6b680 : 0xffffff7f8bc84309
    0xffffff8017f6b6b0 : 0xffffff7f8bf9b7f5
    0xffffff8017f6b730 : 0xffffff7f8bf9abf6
    0xffffff8017f6b790 : 0xffffff7f8bbf3720
    0xffffff8017f6b7e0 : 0xffffff7f8bbf5cef
    0xffffff8017f6b840 : 0xffffff7f8bbfb4a7
    0xffffff8017f6b900 : 0xffffff800b80e9ee
    0xffffff8017f6b960 : 0xffffff800b7c636c
    0xffffff8017f6ba60 : 0xffffff800b801566
    0xffffff8017f6bab0 : 0xffffff800b7c8b06
    0xffffff8017f6bb10 : 0xffffff800b972381
    0xffffff8017f6bb60 : 0xffffff800b8015d6
    0xffffff8017f6bbb0 : 0xffffff800b8086ac
    0xffffff8017f6bca0 : 0xffffff800b804eb7
    0xffffff8017f6bd40 : 0xffffff800b80788e
    0xffffff8017f6bd90 : 0xffffff800b98481f
    0xffffff8017f6bdc0 : 0xffffff800b978df0
    0xffffff8017f6be70 : 0xffffff800b7fb8a6
    0xffffff8017f6bea0 : 0xffffff800b7e5f13
    0xffffff8017f6bed0 : 0xffffff800b7df24a
    0xffffff8017f6bf40 : 0xffffff800b7e5eb7
    0xffffff8017f6bf50 : 0xffffff800ba419f3
    0xffffff8017f6bfb0 : 0xffffff800b6f4c86
          Kernel Extensions in backtrace:
             com.apple.iokit.IOStorageFamily(1.9)[9B09B065-7F11-3241-B194-B72E5C23548B]@0xff ffff7f8bbef000->0xffffff7f8bc13fff
             com.apple.iokit.IOSCSIArchitectureModelFamily(3.6.7)[9E10AF10-FA6C-3261-B939-5D 0BC025ED9E]@0xffffff7f8bc7f000->0xffffff7f8bca9fff
             com.apple.iokit.IOSCSIBlockCommandsDevice(3.6.7)[EF296673-2159-39B8-8A9C-4010FF BF952E]@0xffffff7f8bf9a000->0xffffff7f8bfaefff
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.6.7)[9E10AF10-FA6C-3261-B939-5D 0BC025ED9E]@0xffffff7f8bc7f000
                dependency: com.apple.iokit.IOStorageFamily(1.9)[9B09B065-7F11-3241-B194-B72E5C23548B]@0xff ffff7f8bbef000
    BSD process name corresponding to current thread: launchd
    Mac OS version:
    13F34
    Kernel version:
    Darwin Kernel Version 13.4.0: Wed Dec 17 19:05:52 PST 2014; root:xnu-2422.115.10~1/RELEASE_X86_64
    Kernel UUID: 45486BF2-BDDE-34CB-8C71-606FF3FE181B
    Kernel slide:     0x000000000b400000
    Kernel text base: 0xffffff800b600000
    System model name: iMac14,1 (Mac-031B6874CF7F642A)
    System uptime in nanoseconds: 155775824629548
    last loaded kext at 48168719622545: com.apple.driver.AppleUSBCDC 4.2.1b5 (addr 0xffffff7f8d6f4000, size 20480)
    last unloaded kext at 48228764926590: com.apple.driver.AppleUSBCDC 4.2.1b5 (addr 0xffffff7f8d6f4000, size 16384)
    loaded kexts:
    com.intego.virusbarrier.kext.realtime 217
    com.intego.netbarrier.kext.network 177
    com.intego.netbarrier.kext.process 177
    com.intego.netbarrier.kext.monitor 177
    com.apple.filesystems.smbfs 2.0.3
    com.apple.iokit.IOBluetoothSerialManager 4.2.7f4
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AGPM 100.14.34
    com.apple.driver.ApplePlatformEnabler 2.0.9d7
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.7f4
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.iokit.SCSITaskUserClient 3.6.7
    com.apple.driver.AppleUSBODD 3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.iokit.IOBluetoothFamily 4.2.7f4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleThunderboltEDMSink 2.1.3
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.7f4
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.24
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBHIDMouse 180.9
    com.apple.driver.AppleHIDMouse 180.9
    com.apple.driver.AppleUSBHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.7
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.6.7
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.7
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPOutAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 686.4.1
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.2
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    System Profile:
    Model: iMac14,1, BootROM IM141.0118.B01, 4 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 2.14f19
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343531533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343531533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x111), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.7f4 15112, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    USB Device: Hub
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Keyboard Hub
    USB Device: Apple Optical USB Mouse
    USB Device: Apple Keyboard
    USB Device: Hub
    USB Device: Hub
    USB Device: BUFFALO INC. USB-SATA Bridge
    USB Device: BUFFALO INC. USB-SATA Bridge
    USB Device: BUFFALO INC.USB-SATA Bridge
    USB Device: Apple USB SuperDrive
    Thunderbolt Bus: iMac, Apple Inc., 23.10

  • Aperture library seems to grow on its own

    I imported a large number of photos into the Aperture library from an external drive I used to back them up from my PC. I decided to do this instead of referencing them from the external drive. It was about 85G worth of data. When I was done it seemed in Finder that it took up approximately the same space - which made sense. On import Aperture chose its own collection of folders and projects - which is OK - but now that I am reorganizing the library seems to be growing even though I believe I am moving files - not copying them. It was a date structure because that is how it was in windows and I am breaking away from that so there are folders for years, but in each I am making projects for events or subject (then adding projects and folders in those as needed) - by moving them out of their original month project/folder. So I have a folder 2010 and if I highlight it I can see all of my photos from 2010. Under 2010 are projects and if I highlight them, the appropriate photos are shown. I assumed this was correct, but I now believe I have duplicates of all or most photos as when I look in finder properties my Aperture library is now 138.45 GB.
    Any ideas on what I might have done? Any ideas how to correct this? I cannot see the photo files in finder as I could in Explorer on the PC, so I do not know which files may be duplicates or how to correct this.
    Thanks -

    Assuming you have the back up drive still full of the images, you can simply create a new library by depressing the 'Option' key while launching Aperture > Create New.. button. This would allow you to start over.
    You could then import the images and wait a while (this might be a couple of hours depending on the amount of images) for Aperture to build all the previews. Once that is done, you can run the 'Get Info' command on the library package and see what the final size is.
    As for moving vs. copying, see this part of the user guide:
    http://documentation.apple.com/en/aperture/usermanual/#chapter=5%26section=14
    Aperture uses previews to show you the image data with all current instructions applied to it so you can work with the image. These take up space and result in a larger amount of space because they are in addition to the original files (which are not touched other than to be read by the program to build - or render - the preview you will be working with).
    You can control the size of the preview that is built by going to 'Aperture menu > Preferences... > Preview section'. Selecting a resolution size and quality will affect the overall space used by all the previews in Aperture. The default values are: Half Size and Quality = 8. The resolution listed that has an asterisk by it is your monitors resolution (if you have a corresponding monitor size with the list).
    Note - I use 1920 x 1920 (my monitor resolution) and Quality = 8, since I can easily change the drives in my machine and therefore space is less of a consideration than say a notebook or iMac.
    Deselecting 'New projects automatically generate previews' option in the same section will prevent Aperture from doing so and can keep the size of the library down. You can generate previews manually in the 'Photos > Update Preview (while holding down the 'Option' key ) - turns to 'Generate Preview'.
    Thumbnails (which are 1024 x 1024) are always generated and cannot be controlled, but some people are happy to use these for general browsing and just generate a preview when they need it.
    Aperture does use space, so you just need to decide how much you want to dedicate to it. The referenced image library scheme keeping the masters on an external drive and the library on the internal drive is used by many to work with space limitations.
    Note - you can still view the contents of the Aperture library by Control+Click (right-click) on library package > Show Package Contents command. Beware though, as changing any files in the package can corrupt the library. Just viewing the files in Finder without any changes is okay if you are confident in that type of work on a computer.
    Final note - as an example, with a 4 MB JPEG master file in my library, the preview is 733 KB at the settings I use (or about 18% of the original). This means that I could have 5 versions of the same image (plus the original master file) in the library. If I used just OS X and Photoshop, I would only get the original and one copy for the same price in space.

  • HT204053 Should a family share an apple id, or does each phone need its own apple id?

    Should a family share an apple id, or does each phone need its own apple id?

    Hello coachscott,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622?viewlocale=en_US
    Can I share my Apple ID with someone else?
    You shouldn't share your Apple ID account information with other people. Each person should have their own Apple ID.
    Best of luck,
    Mario

Maybe you are looking for

  • How do I get iCal in Lion to read my old 10.6 calendar files, notational velocity files

    Hi everyone, I recently upgraded from 10.6 to 10.8 and did a clean install. I backed everything up using Time Machine and have chosen to transfer most things manually as there were a lot of applications and system files that I did not want to copy ov

  • Performance Plus Vs Viewer

    Hi, I've got a report done in discoverer desktop and I want to delivery it to the end users through the web. I know that discoverer plus is to create reports as desktop and discoverer viewer is to view reports, but viewer doesn't give me good respons

  • Fixed number of pulse using agilent 33220A

    Hi all, I am trying to produce five pulses with Agilent 33220A function generator .. i am attaching my VI for your review... the problem is ,, i can able to send the command for digital pulse of required parameters ,, and the function generator start

  • Iphone 5 can't delete mail

    Lost trash can and all ways to delet mail. 

  • Image format support

    I'm not sure if I'm the correct forum, but what images can J2ME support and render to the screen? GIF? JPEG? PNG? BMP? And which j2me image class (if any) will I would be best? Are they the sane as J2SE? Many Thanks.