Encrypting Data on part of a file system.

A few months ago, using hints I found on the internet, I was able to use diskutil command line utililty to create an encrypted partition of the same sort as when turning FileVault on in Security Preferences.  File Vault doe not appear to offer a way to choose some pargt of the disk storage such as an entire drive of a folder on a drive.  I was able to do it and it worked.  When I mount the disk partition to the system (usualy by plugging it in and turning it on), I'm asked for the security pass phrase or key to decrypt it.  Once mounted with the key supplied, I can access it as any other mounted disk with the type of access restrictions that might be present on any disk.Since I want the data to be truly privatem U decline to put the key into the a known place such as the keychain.  I don't want just anyone who has a log on to this iMac to b e able to read this data.  I want them to need to enter a private key to mount the data. 
My only problem with this is the hoops I needed to go through to do this.  It is complicated and invovlves setting up special partitions for the purpose.
Searching Finder help for encrypting data it offered a solution for data on a removable drive.  The stepsare very simple and easy to do:
   a) Mount the files to be encrypted if they are not  online.  They also need to be in a folder or even an entire partition.
    b) Open Disk Utility (GUI version)
    c)Choose File > New > Disk Image From Folder (or New-> Disk Image ffrom a Device).
    d) Select the folder or disk you want to encrypt.
    e) A save dialog will pop up.  Select the name of the archive you wish to create and select a location.  I choose a removable disk partition which has enouh space.  Select Compressed if you wish.  Then Select Encryption and choose the key size for encryption from the drop dwon.  When you click Save, Disk Utility begins creating a disk image that is (possibly) compressed and probably encrypted.  Once done, the files in the folder or partiion are hiddent behind the encryption.  To get to them, you much open the DMG file and supply the password to unlock the encryption.  You can save the key in the keychain if you are not worreid about who can get in.  If you wish to restrict access to fewer people, keep the key secret and provide a recovery mechanism that is suitable for you need.
   f)  One the archive is created, the disk partition containing it may b4 mounted on the system (if it is not there already) and by opening the dmg file you will be asked for the key.  The system will validate that the key works and the encryption and comprewssion are working.  The archive will be mounted as a virual disk.  It can be accessed by any useer of that computer unless the file permissions get in the way.  Mounting it only when the computer is being used by authorized people allow you to mount and dismount the archive for use during a limited time.
I have a couple of questions here.  Is there an easier way to do this?  Is this encryption as strong as that used in FileVault? 

No. I don't know why it would not be, except it is easier for a person to leave the disk mounted where anyone can then see it. With FileVault forcing a password on wake from sleep, it will likely be encrypted if anyone found it.
I'm not sure why you went to the trouble you did before, except the instructions might have been to create an encrypted partition as opposed to creating the disk image. Disk images have been around for at least a decade.
If you plan on backing up the image with Time Machine, use a sparse bundle disk image as it will write the data to small files, called stripes. Only the stripes that change get backed up instead of the entire image.

Similar Messages

  • Encrypt data send from a non-SAP system to ECC.

    Hi,
    We are tryign to encrypt the credit card details send from web (non-sap system) via a xml file to ECC.
    From Basis side, I have exported the public key from the ECC for the web server to encrypt the CC details while sending via xml.
    The external web consultants encrypted the cc detail with the public key and send it via xml but that was not able to decrypt at the ECC side.
    The developers were using the FM 'CCARD_DEVELOPE'at ECC to decrypt the data in the xml file. It was saying SSF error: No data transfered.
    Meanwhile SAP CryptoLib is installed and credit card encryption/decryption is working fine for CC details entered via GUI interface.
    Is there anything I am missing out here to encrypt CC details send from a Non-SAP system to ECC.? Do we need to load the SAP cryptolib in the non-SAP system to ecrypt this data at the senders end. Or is there a alternate solution for this ?
    We are in ECC6.0/RHEL/Oracle10204.
    Appreciate your help.
    Thanks

    Hi Nelis,
    Thanks for your reply.
    This note does not get any information regarding encrypting data from a non-SAP system to SAp system.
    I am looking setup/information for encrypting data from a non-SAP system to SAP system.
    Thanks

  • Writting documents to data base or to a file system?

    I have this facility to write documents to the database. The DBA wants to change it to a user file systems.
    What is the best practice? Where can I find documentation about it?
    Thanks in advance.

    Using which technology ?
    With java it is quite easy and you have lot of example in th JSP/Servlet code that explain how to upload from the browser to a file system.
    Within PLSQL it is different since it is running inside the DB so you'll have to use output package to put the content of the blob in a file.
    Regards
    Tugdual

  • Warming up File System Cache for BDB Performance

    Hi,
    We are using BDB DPL - JE package for our application.
    With our current machine configuration, we have
    1) 64 GB RAM
    2) 40-50 GB -- Berkley DB Data Size
    To warm up File System Cache, we cat the .jdb files to /dev/null (To minimize the disk access)
    e.g
         // Read all jdb files in the directory
         p = Runtime.getRuntime().exec("cat " + dirPath + "*.jdb >/dev/null 2>&1");
    Our application checks if new data is available every 15 minutes, If new Data is available then it clears all old reference and loads new data along with Cat *.jdb > /dev/null
    I would like to know that if something like this can be done to improve the BDB Read performance, if not is there any better method to Warm Up File System Cache ?
    Thanks,

    We've done a lot of performance testing with how to best utilize memory to maximize BDB performance.
    You'll get the best and most predictable performance by having everything in the DB cache. If the on-disk size of 40-50GB that you mention includes the default 50% utilization, then it should be able to fit. I probably wouldn't use a JVM larger than 56GB and a database cache percentage larger than 80%. But this depends a lot on the size of the keys and values in the database. The larger the keys and values, the closer the DB cache size will be to the on disk size. The preload option that Charles points out can pull everything into the cache to get to peak performance as soon as possible, but depending on your disk subsystem this still might take 30+ minutes.
    If everything does not fit in the DB cache, then your best bet is to devote as much memory as possible to the file system cache. You'll still need a large enough database cache to store the internal nodes of the btree databases. For our application and a dataset of this size, this would mean a JVM of about 5GB and a database cache percentage around 50%.
    I would also experiment with using CacheMode.EVICT_LN or even CacheMode.EVICT_BIN to reduce the presure on the garbage collector. If you have something in the file system cache, you'll get reasonably fast access to it (maybe 25-50% as fast as if it's in the database cache whereas pulling it from disk is 1-5% as fast), so unless you have very high locality between requests you might not want to put it into the database cache. What we found was that data was pulled in from disk, put into the DB cache, stayed there long enough to be promoted during GC to the old generation, and then it was evicted from the DB cache. This long-lived garbage put a lot of strain on the garbage collector, and led to very high stop-the-world GC times. If your application doesn't have latency requirements, then this might not matter as much to you. By setting the cache mode for a database to CacheMode.EVICT_LN, you effectively tell BDB to not to put the value or (leaf node = LN) into the cache.
    Relying on the file system cache is more unpredictable unless you control everything else that happens on the system since it's easy for parts of the BDB database to get evicted. To keep this from happening, I would recommend reading the files more frequently than every 15 minutes. If the files are in the file system cache, then cat'ing them should be fast. (During one test we ran, "cat *.jdb > /dev/null" took 1 minute when the files were on disk, but only 8 seconds when they were in the file system cache.) And if the files are not all in the file system cache, then you want to get them there sooner rather than later. By the way, if you're using Linux, then you can use "echo 1 > /proc/sys/vm/drop_caches" to clear out the file system cache. This might come in handy during testing. Something else to watch out for with ZFS on Solaris is that sequentially reading a large file might not pull it into the file system cache. To prevent the cache from being polluted, it assumes that sequentially reading through a large file doesn't imply that you're going to do a lot of random reads in that file later, so "cat *.jdb > /dev/null" might not pull the files into the ZFS cache.
    That sums up our experience with using the file system cache for BDB data, but I don't know how much of it will translate to your application.

  • Corrupt DMG file - "No Mountable File Systems"

    Hello, I have an important backup DMG file that I can't mount. When I try, I get this error..."No Mountable File Systems".
    I have tried the following with no success...
    - repairing the DMG in Disk Utility.
    - converting the DMG in Disk Utility to a R/W image.
    - Repair in Data Rescue 3
    - Repair in Disk Warrior
    - Repair in File Salvage (this actually recovered a single mp3 file, so this makes me think the data is still there)
    - Repair in Stellar Phoenix
    - Repair in Disk Drill
    I have read on one of these forums (I can't seem to find it anymore) that someone had a similar issue and someone helped them through a lot of digging around in the broken file (something to do with headers?)...and in the end they managed to repair the broken DMG file. I would really like to repair this file, so just in case someone who knows how to fix this sort of thing, I've shared the file here...
    files.me.com/jeffvandyck/x4qv9c
    I have a few other files like this and would really like to recover those as well. I'm relatively technical, and once I understand what I'm looking for I can try to fix the others.
    Thanks in advance for any help!
    Cheers,
    Jeff

    Output of hdid -nomount -verbose -debug
    Jeffs-MacBook-Pro:~ Jeff$ hdid /Users/Jeff/Jeff\ Projects.dmg -nomount -verbose -debug
    calling DIHLDiskImageAttach with
    agent: hdid
    mount-required: false
    debug: true
    quiet: false
    image-options:
    drive-options:
    main-url: /Users/Jeff/Jeff Projects.dmg
    verbose: true
    mount-attempted: false
    2011-10-10 13:30:57.030 hdiutil[438:60f] DIHLDiskImageAttach: creating DIHelperProxy
    2011-10-10 13:30:57.032 hdiutil[438:60f] [DIHelperProxy alloc]
    2011-10-10 13:30:57.032 hdiutil[438:60f] [DIHelperProxy alloc] returning self 0x100500a20, retainCount 1
    2011-10-10 13:30:57.033 hdiutil[438:60f] DIHLDiskImageAttach: running DIHelperProxy
    2011-10-10 13:30:57.033 hdiutil[438:60f] [DIHelperProxy performOperationReturning] entry
    2011-10-10 13:30:57.034 hdiutil[438:60f] [DIHelperProxy performOperationReturning] detaching thread
    2011-10-10 13:30:57.034 hdiutil[438:2603] [DIHelperProxy workerThread] entry
    2011-10-10 13:30:57.034 hdiutil[438:2603] [DIHelperProxy workerThread] setting up server
    2011-10-10 13:30:57.035 hdiutil[438:2603] [DIHelperProxy threadSetupServer] entry
    2011-10-10 13:30:57.035 hdiutil[438:2603] [DIHelperProxy threadSetupServer] setting up _headerConnection
    2011-10-10 13:30:57.035 hdiutil[438:2603] [DIHelperProxy threadSetupServer] setting up _headerConnection rootObject
    2011-10-10 13:30:57.036 hdiutil[438:2603] [DIHelperProxy threadSetupServer] adding NSConnectionDidInitializeNotification notification
    2011-10-10 13:30:57.036 hdiutil[438:2603] [DIHelperProxy threadSetupServer] exiting
    2011-10-10 13:30:57.036 hdiutil[438:2603] [DIHelperProxy workerThread] launching
    2011-10-10 13:30:57.037 hdiutil[438:2603] [DIHelperProxy threadLaunchToolAuthenticated] entry
    2011-10-10 13:30:57.038 hdiutil[438:2603] launching helper tool at "/System/Library/PrivateFrameworks/DiskImages.framework/Resources/diskimages-he lper".
    2011-10-10 13:30:57.038 hdiutil[438:2603] [DIHelperProxy threadLaunchToolAuthenticated] adding NSTaskDidTerminateNotification notification
    2011-10-10 13:30:57.038 hdiutil[438:2603] [DIHelperProxy thread LaunchToolAuthenticated] launching
    2011-10-10 13:30:57.039 hdiutil[438:2603] [DIHelperProxy threadLaunchToolAuthenticated] exiting
    2011-10-10 13:30:57.040 hdiutil[438:2603] [DIHelperProxy workerThread] running runloop
    2011-10-10 13:30:57.040 hdiutil[438:2603] DIHelperProxy threadRunRunLoop] entry, retainCount 3
    2011-10-10 13:30:57.049 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] entry
    2011-10-10 13:30:57.049 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] adding new NSConnectionDidDieNotification notification
    2011-10-10 13:30:57.049 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] removing old NSConnectionDidDieNotification notification
    2011-10-10 13:30:57.050 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] removing old connection rootObject
    2011-10-10 13:30:57.050 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] invalidating old connection
    2011-10-10 13:30:57.050 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] releasing old connection
    2011-10-10 13:30:57.051 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] and replacing with new connection
    2011-10-10 13:30:57.051 hdiutil[438:2603] [DIHelperProxy helperConnectionInitialized] exit
    2011-10-10 13:30:57.052 hdiutil[438:2603] [DIHelperProxy connectToFramework] entry, helper 0x10011d350
    2011-10-10 13:30:57.052 hdiutil[438:2603] [DIHelperProxy connectToFramework] exit
    2011-10-10 13:30:57.152 hdiutil[438:2603] [DIHelperProxy sendOperationToHelper] entry
    2011-10-10 13:30:57.153 hdiutil[438:2603] [DIHelperProxy sendOperationToHelper] starting operation with helper
    2011-10-10 13:30:57.155 hdiutil[438:2603] [DIHelperProxy sendOperationToHelper] exit
    2011-10-10 13:30:57.159 hdiutil[438:2603] [DIHelperProxy frameworkCallbackWithDictionary] entry
    status proc called: initialize
    myStatusProc: returning 0
    2011-10-10 13:30:57.159 hdiutil[438:2603] [DIHelperProxy frameworkCallbackWithDictionary] exit
    2011-10-10 13:30:57.160 diskimages-helper[440:2003] _imageOptions: {
        "enable-keychain" = 1;
    2011-10-10 13:30:57.162 diskimages-helper[440:2003] _driveOptions: {
        autodiskmount = 0;
        "unmount-timeout" = 0;
    2011-10-10 13:30:57.162 diskimages-helper[440:2003] DIHelperAttach: performOperation: initializing framework
    2011-10-10 13:30:57.163 diskimages-helper[440:2003] {
        agent = hdid;
        "auto-fsck-failure-override-type" = callback;
        "auto-open-ro-root" = 0;
        "auto-open-rw-root" = 0;
        "auto-stretch" = 0;
        "bundlebs-checkpointing" = 0;
        "bundlebs-localcloseonflush" = 0;
        "bundlebs-localcloseonidle" = 0;
        "bundlebs-localcloseonsleep" = 0;
        "bundlebs-localfdcount" = 6;
        "bundlebs-remotecloseonflush" = 0;
        "bundlebs-remotecloseonidle" = 0;
        "bundlebs-remotecloseonsleep" = 0;
        "bundlebs-remotefdcount" = 3;
        "burn-apple-supported-devices-only" = 0;
        "burn-no-underrun-protection" = 0;
        "burn-synthesize-content" = 1;
        "bzip2-level" = 0;
        "callback-with-sla" = 1;
        debug = 1;
        "disable-encrypted-images" = 0;
        "disable-kernel-mounting" = 1;
        "disable-owners" = 0;
        "drive-options" = <62706c69 73743030 d0080000 00000000 01010000 00000000 00010000 00000000 00000000 00000000 0009>;
        "enable-owners" = 0;
        "filevault-default-case-sensitive-file-system" = "Case-sensitive Journaled HFS+";
        "filevault-default-encryption-type" = "AES-128";
        "filevault-default-file-system" = "Journaled HFS+";
        "filevault-default-image-type" = SPARSEBUNDLE;
        "filevault-default-partition-type" = SPUD;
        "filevault-default-volume-name" = FileVault;
        "force-idme" = 0;
        "hfsplus-stretch-parameters" =     {
            "hfsplus-stretch-allocation-block-size" = 4096;
            "hfsplus-stretch-allocation-file-size" = 8388608;
            "hfsplus-stretch-threshold" = 524288;
        "idle-timeout" = 15;
        "ifd-format" = UDZO;
        "ifd-ignore-io-errors" = 1;
        "ifd-segment-size" = 0;
        "iff-format" = UDZO;
        "iff-fs" = "HFS+";
        "iff-layout" = SPUD;
        "iff-source-owners" = auto;
        "iff-spotlight-indexing" = 0;
        "iff-temp-sparse-band-size" = 20480;
        "iff-temp-use-rw-if-possible" = 1;
        "iff-usehelper" = 1;
        "ignore-bad-checksums" = 0;
        "image-options" = <62706c69 73743030 d0080000 00000000 01010000 00000000 00010000 00000000 00000000 00000000 0009>;
        "main-url" = "file://localhost/Users/Jeff/Jeff%20Projects.dmg";
        "mount-attempted" = 0;
        "mount-point" = "/Volumes/";
        "mount-private" = 0;
        "mount-required" = 0;
        "mount-type" = in;
        "nbi-spotlight-indexing" = 0;
        operation = DIHelperAttach;
        "progress-delay" = 5;
        "pthread-reader-cap" = 4;
        quiet = 0;
        "reauthenticate-upon-wake" = 1;
        "skip-auto-fsck-for-system-images" = 1;
        "skip-idme" = 1;
        "skip-idme-reveal" = 0;
        "skip-idme-trash" = 0;
        "skip-previously-verified" = 1;
        "skip-sla" = 0;
        "skip-verify" = 1;
        "skip-verify-locked" = 0;
        "skip-verify-remote" = 1;
        "sparsebundle-compactonidle" = 0;
        "suppress-uiagent" = 1;
        "unmount-timeout" = 0;
        "use-compressed-xml" = 0;
        "use-keychain" = 1;
        verbose = 1;
        "zlib-level" = 1;
    DILoadDriver: checking for disk image driver
    DILoadDriver: DI_kextExists() returned 0x00000000 (0)
    DIIsInitialized: returning NO
    2011-10-10 13:30:57.169 diskimages-helper[440:2003] -checkForPreviouslyAttachedImage: entry
    2011-10-10 13:30:57.169 diskimages-helper[440:2003]
    file://localhost/Users/Jeff/Jeff%20Projects.dmg - (null) ((null), (null)). perm=0
    DIIsInitialized: returning YES
    DIBackingStoreNewWithCFURL: entry with
    file://localhost/Users/Jeff/Jeff%20Projects.dmg
    skip-permissions-check: true
    DIBackingStoreInstantiatorProbe: entry
    file://localhost/Users/Jeff/Jeff%20Projects.dmg
    skip-permissions-check: true
    DIBackingStoreInstantiatorProbe: probing interface 0 CBSDBackingStore
    CBSDBackingStore::newProbe score 100 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  0, score      100, CBSDBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 1 CBundleBackingStore
    CBundleBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  1, score    -1000, CBundleBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 2 CRAMBackingStore
    CRAMBackingStore::probe: scheme "file": not ram: or ramdisk: scheme.
    CRAMBackingStore::probe: score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  2, score    -1000, CRAMBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 3 CCarbonBackingStore
    CCarbonBackingStore::newProbe: setting initial rval to +100
    CCarbonBackingStore::newProbe score 100 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  3, score      100, CCarbonBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 4 CDevBackingStore
    CDevBackingStore::newProbe: not /dev/disk or /dev/rdisk (/Users/Jeff/Jeff Projects.dmg).CDevBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  4, score    -1000, CDevBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 5 CCURLBackingStore
    CCURLBackingStore::probe: scheme is: file
    CCURLBackingStore::probe: not recognized URL scheme.
    CCURLBackingStore::probe: score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  5, score    -1000, CCURLBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 6 CVectoredBackingStore
    CVectoredBackingStore::newProbe not "vectored" scheme.
    CVectoredBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  6, score    -1000, CVectoredBackingStore
    DIBackingStoreInstantiatorProbe: selecting CBSDBackingStore
    DIBackingStoreNewWithCFURL: CBSDBackingStore
    CBSDBackingStore::setNoFollow: setting _noFollow to 0
    DIBackingStoreNewWithCFURL: instantiator returned 0
    DIBackingStoreNewWithCFURL: returning 0x00000000
    2011-10-10 13:30:57.170 diskimages-helper[440:2003] -checkForPreviouslyAttachedImage: resolving file://localhost/Users/Jeff/Jeff%20Projects.dmg returned 0
    2011-10-10 13:30:57.170 diskimages-helper[440:2003] -checkForPreviouslyAttachedImage: imageUID (
        "d234881026:i2592177"
    ) shadowUID (null)
    ***** testing:
    0: d234881026:i939052
    (null)
    (null)
    ***** testing:
    0: d234881026:i939052
    (null)
    (null)
    ***** testing:
    0: d234881026:i939052
    (null)
    (null)
    2011-10-10 13:30:57.173 diskimages-helper[440:2003] DIHelperAttach: performOperation: resolving disk image
    DIIsInitialized: returning YES
    DIIsInitialized: returning YES
    DIBackingStoreNewWithCFURL: entry with
    file://localhost/Users/Jeff/Jeff%20Projects.dmg
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIBackingStoreInstantiatorProbe: entry
    file://localhost/Users/Jeff/Jeff%20Projects.dmg
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIBackingStoreInstantiatorProbe: probing interface 0 CBSDBackingStore
    CBSDBackingStore::newProbe score 100 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  0, score      100, CBSDBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 1 CBundleBackingStore
    CBundleBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  1, score    -1000, CBundleBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 2 CRAMBackingStore
    CRAMBackingStore::probe: scheme "file": not ram: or ramdisk: scheme.
    CRAMBackingStore::probe: score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  2, score    -1000, CRAMBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 3 CCarbonBackingStore
    CCarbonBackingStore::newProbe: setting initial rval to +100
    CCarbonBackingStore::newProbe score 100 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  3, score      100, CCarbonBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 4 CDevBackingStore
    CDevBackingStore::newProbe: not /dev/disk or /dev/rdisk (/Users/Jeff/Jeff Projects.dmg).CDevBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  4, score    -1000, CDevBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 5 CCURLBackingStore
    CCURLBackingStore::probe: scheme is: file
    CCURLBackingStore::probe: not recognized URL scheme.
    CCURLBackingStore::probe: score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  5, score    -1000, CCURLBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 6 CVectoredBackingStore
    CVectoredBackingStore::newProbe not "vectored" scheme.
    CVectoredBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.dmg
    DIBackingStoreInstantiatorProbe: interface  6, score    -1000, CVectoredBackingStore
    DIBackingStoreInstantiatorProbe: selecting CBSDBackingStore
    DIBackingStoreNewWithCFURL: CBSDBackingStore
    CBSDBackingStore::setPermission: opening /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000002 -> 0x00000026 (locks are MANDATORY)
    (RW lock acquired)
    CBSDBackingStore::setPermission: kDI_PERM_READWRITE granted.
    CBSDBackingStore::setNoFollow: setting _noFollow to 0
    DIBackingStoreNewWithCFURL: instantiator returned 0
    DIBackingStoreNewWithCFURL: returning 0x00000000
    DIResolveURLToBackingStore: processing level 1 encodings.
    DIFileEncodingNewWithBackingStore: entry for encoding level 1
    DIFileEncodingInstantiatorProbe: entry for level 1
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIFileEncodingInstantiatorProbe: probing level 1 interface 0 CMacBinaryEncoding
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: about to open /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::getNoFollow: returning 0
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000002 -> 0x00000026 (locks are MANDATORY)
    (RW lock acquired)
    CBSDBackingStore::openDataFork: returning 0
    CBSDBackingStore::closeDataFork fSIZE = 868220928
    00000000: 7801 edd0 3101 0000 00c2 a0f5 4fed 6d07   | x...1.......O.m. |
    00000010: 8840 61c0 8001 0306 0c18 3060 c080 0103   | [email protected]`.... |
    00000020: 060c 1830 60c0 8001 0306 0c18 3060 c080   | ...0`.......0`.. |
    00000030: 0103 060c 1830 60c0 8001 0306 0c18 3060   | .....0`.......0` |
    00000040: c080 0103 060c 1830 60c0 8001 0306 0c18   | .......0`....... |
    00000050: 3060 c080 0103 060c 1830 60c0 8001 0306   | 0`.......0`..... |
    00000060: 0c18 3060 c080 0103 060c 1830 60c0 8001   | ..0`.......0`... |
    00000070: 0306 0c18 3060 c080 0103 060c 1830 60c0   | ....0`.......0`. |
    diskimages-helper: fileNameLength          $00000001
    diskimages-helper: resourceForkLength      $0C183060
    diskimages-helper: dataForkLength          $80010306
    diskimages-helper: commentLength           $000060C0
    diskimages-helper: MacBinary III signature   \001\003\006\f (0x0103060C)
    diskimages-helper: header CRC              $00001830
    diskimages-helper: minimum decoder version $0000000C
    diskimages-helper: encoder version         $00000006
    no MacBinary III signature - checking for MacBinary I or IIDIFileEncodingInstantiatorProbe: interface  0, score    -1000, CMacBinaryEncoding
    DIFileEncodingInstantiatorProbe: probing level 1 interface 1 CAppleSingleEncoding
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: about to open /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::getNoFollow: returning 0
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000002 -> 0x00000026 (locks are MANDATORY)
    (RW lock acquired)
    CBSDBackingStore::openDataFork: returning 0
    00000000: d0ed 0178 0000 0131 00c2 a0f5 4fed 6d07   | ...x...1....O.m. |
    00000010: 8840 61c0 8001 0306 180c 3060 c080 0103   | [email protected]`.... |
    00000020: 060c 1830 60c0 .... .... .... .... ....   | ...0`........... |
    CBSDBackingStore::closeDataFork fSIZE = 868220928
    CAppleSingleEncoding::isAppleSingleFile loadAppleSingleHeader failed with error 22
    DIFileEncodingInstantiatorProbe: interface  1, score    -1000, CAppleSingleEncoding
    DIFileEncodingInstantiatorProbe: probing level 1 interface 2 CEncryptedEncoding
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: about to open /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::getNoFollow: returning 0
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000002 -> 0x00000026 (locks are MANDATORY)
    (RW lock acquired)
    CBSDBackingStore::openDataFork: returning 0
    CEncryptedEncoding::copyHeaderInformation: inBackingStore->openDataFork returned 0
    CEncryptedEncoding::copyHeaderInformation: inBackingStore->getDataForkLength (stub header) returned 0
    CEncryptedEncoding::copyHeaderInformation: backingStore data fork length is 868220928
    CEncryptedEncoding::copyHeaderInformation: reading V1 header from offset 868219652
    CEncryptedEncoding::copyHeaderInformation: inBackingStore->readDataFork (stub header) returned 0
    CEncryptedEncoding::copyHeaderInformation: not recognized as v1 header
    CEncryptedEncoding::copyHeaderInformation: reading V2 header from offset 0
    CEncryptedEncoding::copyHeaderInformation: inBackingStore->readDataFork (stub header) returned 0
    CEncryptedEncoding::copyHeaderInformation: not recognized as v2 header
    CBSDBackingStore::closeDataFork fSIZE = 868220928
    (null)
    DIFileEncodingInstantiatorProbe: interface  2, score    -1000, CEncryptedEncoding
    DIFileEncodingInstantiatorProbe: nothing to select.
    DIFileEncodingNewWithBackingStore: probe fails to find appropriate CFileEncoding class.
    DIFileEncodingNewWithBackingStore: returning 0x0000006B
    DIResolveURLToBackingStore: level 1 encoding match failed. 107.
    (continuing)
    DIResolveURLToBackingStore: processing level 2 encodings.
    DIFileEncodingNewWithBackingStore: entry for encoding level 2
    DIFileEncodingInstantiatorProbe: entry for level 2
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIFileEncodingInstantiatorProbe: probing level 2 interface 0 CUDIFEncoding
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: about to open /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::getNoFollow: returning 0
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000002 -> 0x00000026 (locks are MANDATORY)
    (RW lock acquired)
    CBSDBackingStore::openDataFork: returning 0
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: returning 0
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: returning 0
    CBSDBackingStore::closeDataFork fSIZE = 868220928
    CUDIFEncoding::newProbe: failing because backing store is not UDIF file
    DIFileEncodingInstantiatorProbe: interface  0, score    -1000, CUDIFEncoding
    DIFileEncodingInstantiatorProbe: nothing to select.
    DIFileEncodingNewWithBackingStore: probe fails to find appropriate CFileEncoding class.
    DIFileEncodingNewWithBackingStore: returning 0x0000006B
    DIResolveURLToBackingStore: level 2 encoding match failed. 107.
    (continuing)
    DIResolveURLToBackingStore: processing level 3 encodings.
    DIFileEncodingNewWithBackingStore: entry for encoding level 3
    DIFileEncodingInstantiatorProbe: entry for level 3
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIFileEncodingInstantiatorProbe: probing level 3 interface 0 CSegmentedNDIFEncoding
    checkTypeCreator:     /   
    checkTypeCreator: returning     , score 0
    CSegmentedNDIFEncoding::isSegmentedNDIFFile checkTypeCreator failed
    DIFileEncodingInstantiatorProbe: interface  0, score    -1000, CSegmentedNDIFEncoding
    DIFileEncodingInstantiatorProbe: probing level 3 interface 1 CSegmentedUDIFEncoding
    CSegmentedUDIFEncoding::isSegmentedUDIFFile backing store is not of type CUDIFEncoding
    DIFileEncodingInstantiatorProbe: interface  1, score    -1000, CSegmentedUDIFEncoding
    DIFileEncodingInstantiatorProbe: probing level 3 interface 2 CSegmentedUDIFRawEncoding
    CSegmentedUDIFRawEncoding::isSegmentedUDIFRawFile looking for segment 2 "file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart"
    DIIsInitialized: returning YES
    DIBackingStoreNewWithCFURL: entry with
    file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIBackingStoreInstantiatorProbe: entry
    file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIBackingStoreInstantiatorProbe: probing interface 0 CBSDBackingStore
    CBSDBackingStore::newProbe stat() failed.  No such file or directory.
    CBSDBackingStore::newProbe score 1 for file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    DIBackingStoreInstantiatorProbe: interface  0, score        1, CBSDBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 1 CBundleBackingStore
    CBundleBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    DIBackingStoreInstantiatorProbe: interface  1, score    -1000, CBundleBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 2 CRAMBackingStore
    CRAMBackingStore::probe: scheme "file": not ram: or ramdisk: scheme.
    CRAMBackingStore::probe: score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    DIBackingStoreInstantiatorProbe: interface  2, score    -1000, CRAMBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 3 CCarbonBackingStore
    CCarbonBackingStore::newProbe stat() failed.  No such file or directory.
    CCarbonBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    DIBackingStoreInstantiatorProbe: interface  3, score    -1000, CCarbonBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 4 CDevBackingStore
    CDevBackingStore::newProbe: not /dev/disk or /dev/rdisk (/Users/Jeff/Jeff Projects.002.dmgpart).CDevBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    DIBackingStoreInstantiatorProbe: interface  4, score    -1000, CDevBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 5 CCURLBackingStore
    CCURLBackingStore::probe: scheme is: file
    CCURLBackingStore::probe: not recognized URL scheme.
    CCURLBackingStore::probe: score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    DIBackingStoreInstantiatorProbe: interface  5, score    -1000, CCURLBackingStore
    DIBackingStoreInstantiatorProbe: probing interface 6 CVectoredBackingStore
    CVectoredBackingStore::newProbe not "vectored" scheme.
    CVectoredBackingStore::newProbe score -1000 for file://localhost/Users/Jeff/Jeff%20Projects.002.dmgpart
    DIBackingStoreInstantiatorProbe: interface  6, score    -1000, CVectoredBackingStore
    DIBackingStoreInstantiatorProbe: selecting CBSDBackingStore
    DIBackingStoreNewWithCFURL: CBSDBackingStore
    DIBackingStoreNewWithCFURL: instantiator returned 2
    DIBackingStoreNewWithCFURL: returning 0x00000002
    DIResolveURLToBackingStore: unable to resolve to any backing store class. 2.
    CSegmentedUDIFRawEncoding::isSegmentedUDIFRawFile failed because could not find second segment.
    DIFileEncodingInstantiatorProbe: interface  2, score    -1000, CSegmentedUDIFRawEncoding
    DIFileEncodingInstantiatorProbe: nothing to select.
    DIFileEncodingNewWithBackingStore: probe fails to find appropriate CFileEncoding class.
    DIFileEncodingNewWithBackingStore: returning 0x0000006B
    DIResolveURLToBackingStore: level 3 encoding match failed. 107.
    (continuing)
    DIIsInitialized: returning YES
    DIDiskImageNewWithBackingStore: entry with
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIDiskImageInstantiatorProbe: entry
    image-path: /Users/Jeff/Jeff Projects.dmg
    enable-keychain: true
    DIDiskImageInstantiatorProbe: probing interface 0 CDARTDiskImage
    DIDiskImageInstantiatorProbe: interface  0, score        0, CDARTDiskImage
    DIDiskImageInstantiatorProbe: probing interface 1 CDiskCopy42DiskImage
    DIDiskImageInstantiatorProbe: interface  1, score        0, CDiskCopy42DiskImage
    DIDiskImageInstantiatorProbe: probing interface 2 CNDIFDiskImage
    checkTypeCreator:     /   
    checkTypeCreator: returning     , score 0
    CNDIFDiskImage::checkExtension: dmg
    CNDIFDiskImage::newProbe: checkExtension gives score -1000.
    DIDiskImageInstantiatorProbe: interface  2, score    -1000, CNDIFDiskImage
    DIDiskImageInstantiatorProbe: probing interface 3 CUDIFDiskImage
    CUDIFDiskImage::checkBackingStoreType: backing store is wrong type
    DIDiskImageInstantiatorProbe: interface  3, score    -1000, CUDIFDiskImage
    DIDiskImageInstantiatorProbe: probing interface 5 CRawDiskImage
    checkBackingStoreType returned score 0 type    
    checkTypeCreator returned score 0 type    
    CRawDiskImage::checkExtension: dmg
    checkExtension returned score 100 type WRDU
    CBSDBackingStore::setPermission: opening /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000000 -> 0x00000014 (locks are MANDATORY)
    (RO lock acquired)
    CBSDBackingStore::setPermission: kDI_PERM_READONLY granted
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: about to open /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::getNoFollow: returning 0
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000000 -> 0x00000014 (locks are MANDATORY)
    (RO lock acquired)
    CBSDBackingStore::openDataFork: returning 0
    ===== iso scan =====
    (null)
    (null)
    ===============================
    none
    0:
              partition-name: whole disk
              partition-start: 0
              partition-synthesized: true
              partition-length: 1695744
              partition-hint: unknown partition
    block-size: 512
    burnable: false
    appendable: false
    CBSDBackingStore::closeDataFork fSIZE = 868220928
    CRawDiskImage::checkExtension: dmg
    CRawDiskImage: checkExtension returns score 100
    DIDiskImageInstantiatorProbe: interface  5, score      100, CRawDiskImage
    DIDiskImageInstantiatorProbe: probing interface 6 CShadowedDiskImage
    DIDiskImageInstantiatorProbe: interface  6, score     -100, CShadowedDiskImage
    DIDiskImageInstantiatorProbe: probing interface 7 CSparseDiskImage
    CSparseDiskImage::checkExtension: dmg
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: about to open /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::getNoFollow: returning 0
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000000 -> 0x00000014 (locks are MANDATORY)
    (RO lock acquired)
    CBSDBackingStore::openDataFork: returning 0
    CBSDBackingStore::closeDataFork fSIZE = 868220928
    DIDiskImageInstantiatorProbe: interface  7, score        0, CSparseDiskImage
    DIDiskImageInstantiatorProbe: probing interface 8 CSparseBundleDiskImage
    CSparseBundleDiskImage::checkExtension: dmg
    CSparseBundleDiskImage::newProbe: returning 0
    DIDiskImageInstantiatorProbe: interface  8, score        0, CSparseBundleDiskImage
    DIDiskImageInstantiatorProbe: probing interface 9 CCFPlugInDiskImage
    DIDiskImageInstantiatorProbe: interface  9, score    -1000, CCFPlugInDiskImage
    DIDiskImageInstantiatorProbe: probing interface 10 CWrappedDiskImage
    DIDiskImageInstantiatorProbe: interface 10, score     -100, CWrappedDiskImage
    DIDiskImageInstantiatorProbe: selecting CRawDiskImage
    DIDiskImageNewWithBackingStore: CRawDiskImage
    checkBackingStoreType returned score 0 type    
    checkTypeCreator returned score 0 type    
    CRawDiskImage::checkExtension: dmg
    checkExtension returned score 100 type WRDU
    CBSDBackingStore::setPermission: opening /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000002 -> 0x00000026 (locks are MANDATORY)
    (RW lock acquired)
    CBSDBackingStore::setPermission: kDI_PERM_READWRITE granted.
    CBSDBackingStore::openDataFork: /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::openDataFork: about to open /Users/Jeff/Jeff Projects.dmg
    CBSDBackingStore::getNoFollow: returning 0
    CBSDBackingStore::OpenLockFriendly: mapping flags 0x00000002 -> 0x00000026 (locks are MANDATORY)
    (RW lock acquired)
    CBSDBackingStore::openDataFork: returning 0
    DIDiskImageNewWithBackingStore: instantiator returned 0
    DIDiskImageNewWithBackingStore: returning 0x00000000
    2011-10-10 13:30:57.258 diskimages-helper[440:2003] DIHelperAttach: performOperation: resolving shadow/section options
    2011-10-10 13:30:57.258 diskimages-helper[440:2003] resolveShadowAndSectionOptions: returned 0
    2011-10-10 13:30:57.258 diskimages-helper[440:2003] DIHelperAttach: performOperation: checking in-use (1)
    DIBackingStore::inUse: this->_fUniqueID
    0: d234881026:i2592177
    DI_kextCreateDiskImageIdentifierArray: exiting
    0:
              writeable-components:

  • Data Migration tool from legacy file sys to iFS

    Is there an existing tool used for
    data migration from a lagacy file system
    to iFS?
    Thanks in advance for any sugesstions..
    Elvis...

    Hi Elvis,
    Not at the moment, but I'll be happy to log it as an enhancement request for the future, please post your requirements for more details.

  • Windows 7 problem with EFS (Encrypting file system)

    Hello colleagues!
    I think this topic is related more to the security.
    The problem is a bit unusual and google doesn't give me a clear answers, but maybe anyone came across
    with similar problem...
    In general, I suspect that my problem is EFS (Encrypting file system), ie
    service that automatically encrypts files using a digital signature (certificate).
    A little background:
    - On the work PC it was necessary to reinstall
    the system, according to corporate rules all the content we have is encrypted using EFS (Encrypted files are highlighted with green color as you know).
    I have copied all the data on a portable drive and also copied the certificates (certmgr.msc).
    The system was reinstalled. The only change - it was x32 and became x64.
    - It was necessary to free up some space on the hard drive (the file
    system on it is NTFS), so,  I temporary copied all the files on my home PC. My work certificate was installed on it too, because
    I work from home
    sometimes.
    When the  work PC was repaired, I've moved all the files back in
    the same way (ie on the portable HDD, then to the work PC).
    All files were working, but when I needed MS Word documents, it became clear that something was wrong.
    When I've opened the document, it gaveme a window with weird symbols and prompts me to select the encoding ... of course -
    no encoding was fit.
    Started to explore all the documents, it appears that some part of them were working,
    someof them not - all the old documents were working, ie the ones, which
    were created before deploying EFS (newly created or copied files immediately encrypted).
    So, now I am sure that the
    documents were somehow re-encrypted, at least on a portable hard drive, they do not look as encrypted (not highlighted in green), but it's still not open.
    Completely stopped opening all the documents that have
    been encrypted (for all types of files, ie it is not just an MS Word, but also pdf, presentations, charts, and even the pictures).
    Tell me, who faced similar?
    How can it all back? I have no possibility to restore those documents from another sources.

    Try copy those corrupted files and make sure you are using the same certificate and then re-encrypt the copied files and try decrypt them.
    If possible, use the same account as you used for encryption.

  • Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wr

    Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wrong?

    Are you 100% sure that every detail of your information is the same in each place?
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html

  • Detailed Data Structure of ReFS file system in context of Forensic analysis

    Hi
    Please explain detailed Data Structure of ReFS file system  in context of Forensic analysis ?
    Regards

    Hi,
    I am not expert about this, this page links to ReFS resources that include Microsoft documentation
    As of today, ReFS is only available in Windows Server 2012 and ReFS is expected to be part of the flagship Windows desktop OS.
    Resilient File System Overview
    https://technet.microsoft.com/en-us/library/hh831724.aspx?f=255&MSPPError=-2147217396
    Improve File Server Data Resiliency with ReFS in Windows Server 2012
    http://blogs.technet.com/b/keithmayer/archive/2012/10/15/refs-in-windows-server-2012.aspx#.Ug0MvpLksaQ
    Windows Server 2012: Does ReFS replace NTFS? When should I use it?
    http://blogs.technet.com/b/askpfeplat/archive/2013/01/02/windows-server-2012-does-refs-replace-ntfs-when-should-i-use-it.aspx
    Resilient file system, MSDN reference
    https://msdn.microsoft.com/en-us/library/windows/desktop/hh848060%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396
    forensic images of ReFS volumes, and data structures.
    http://www.williballenthin.com/forensics/refs/
    Please note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Years of data gone, backup DMG won't mount "No mountable file systems"

    Could someone help me here, I have this problem.
    The reason for this was that I ran into some complications with my boot camp windows install and wanted to start over. After returning the boot camp FAT partition space to Mac OS X it froze while attempting to create a new boot camp partition. "Boot Camp Assistant" suggested I backup my "Macintosh HD" and re-partition my HD because "some files could not be moved." Ok so, I backed-up my "Macintosh HD" volume to a DMG using Disk Utility selecting the volume and clicking new image icon, it is compressed, it is Leopard. I then booted with Leopard install DVD and began the restore process. Everything was working smoothly until the progress bar stopped animating, waited awhile and forced restart. When I restarted my internal HD had only an "Applications" folder which ended its contents with a half copied iDVD.app preceded by 73 other apps successfully restored. Now worst of all my Backup DMG produces the "No mountable file systems" error. Help, oh please help!
    hdiutil imageinfo produces this:
    Format: UDRW
    Backing Store Information:
    Name: Macintosh HD.dmg
    URL: file://localhost/Volumes/Macintosh%20HD/Macintosh%20HD.dmg
    Class Name: CBSDBackingStore
    Format Description: raw read/write
    Checksum Type: none
    partitions:
    appendable: false
    partition-scheme: none
    block-size: 512
    burnable: false
    partitions:
    0:
    partition-length: 92073985
    partition-synthesized: true
    partition-hint: unknown partition
    partition-name: whole disk
    partition-start: 0
    Properties:
    Partitioned: false
    Software License Agreement: false
    Compressed: no
    Kernel Compatible: true
    Encrypted: false
    Checksummed: false
    Checksum Value:
    Size Information:
    Total Bytes: 47141880320
    Compressed Bytes: 47141880320
    Total Non-Empty Bytes: 47141880320
    Sector Count: 92073985
    Total Empty Bytes: 0
    Compressed Ratio: 1
    Class Name: CRawDiskImage
    Segments:
    0: /Volumes/Macintosh HD/Macintosh HD.dmg
    Resize limits (per hdiutil resize -limits):
    92073985 92073985 92073985
    Message was edited by: Marcus S

    Ok, here is the output. It shows there is a problem with the resource fork XML, just like yours Shad Guy. If only their were some specs available I could try to fix it myself. An Apple engineer could most likely fix this in 20 min.
    Also, thanks for your help man, having people tell me to give up is the worst.
    hdiutil udifxmldet
    "Macintosh HD.dmg" has 1365301792551680312 bytes of embedded XML data.
    hdiutil: udifxmldet: unable to read XML data at offset 2841561349885781055 from "Macintosh HD.dmg": 29 (Illegal seek).
    hdiutil: udifxmldet failed - Illegal seek
    hdiutil udifderez
    hdiutil: udifderez: could not get resource fork of "Macintosh HD.dmg": Function not implemented (78)
    hdiutil: udifderez failed - Function not implemented
    ------------------------

  • Crystal Reports XI String [255] limit with the File System Data driver...

    I was trying to create a Crystal Reports XI report to return security permissions of files and folders.  I have been able to successfully connect and return data using the File System Data driver as the Data Source; however the String limit on the ACL NT Security Field is 255 characters.  The full string of data to be returned can be much longer than the 255 limit and I cannot find how to manipulate that parameter. 
    I am currently on Crystals XI and Crystal XI R2 and have applied the latest service packs but still see the issue.  My Crystal Reports Database DLL for File System data ( crdb_FileSystem.dll ) is at Product Version 11.5.10.1263.
    Is it possible to change string limits when using the File System Data driver as the Data Source?  If so, how can that be accomplished.  If not, is there another method to retrieve information with the Windows File System Data being the Data Source?  Meaning, could I reach my end game objective of reporting on the Windows ACL's with Crystal through another method?

    Hello,
    This is a known issue. Early versions you could not create folder structures longer than 255 characters. With the updates to the various OS's this is now possible but CR did not allocate the same space required.
    It's been tracked as an enhancement - ADAPT01174519 but set for a future release.
    There are likely other ways of getting the info and then putting it into an Excel file format and using that as the data source.
    I did a Google search and found this option: http://www.tomshardware.com/forum/16772-45-display-explorer-folders-tree-structure-export-excel
    There are tools out there to do this kind of thing....
    Thank you
    Don
    Note the reference to msls.exe appears to be a trojan: http://www.greatis.com/appdata/d/m/msls.exe.htm so don't install it.
    Edited by: Don Williams on Mar 19, 2010 8:45 AM

  • Setting Date value in File Name while scheduling report to File System

    I am trying to set the file name as %SI_Name% Current Date.extension in Destination section while scheduling a crystal report to File system.
    So in Use Specific Name section i have added %SI_NAME% %SI_STARTTIME%.%EXT%.
    Schedule works fine for me and I get the document in the file location with name  'Title 2009-06-26-12-53-17.pdf".
    But I dont want time to be printed in the title, so the title should be "Title 2009-06-26.pdf". How i can achieve this.
    -Raghu

    Is there any way to achieve this?
    -Raghu
    Edited by: Raghavendra Barekere on Jul 5, 2009 3:09 PM

  • SSIS File System Task Move File Could not find part of the path error

    Hi All,
    I am getting error in production when try to move files from one folder to another folder. But on Dev environment working fine. 
    An error occurred with the following error message: "Could not find a part of the path 'C:\Archive\ABC.txt'
    My package configuration details.
    1) For Each loop Container 
               Prop’s:
    Enumerator: For Each File Enumerator
    Folder: C:\
    Files: *.txt
    Retrieve File name --> Fully qualified 
    In Tab Variable mapping: User::name --0
    2) File System task
    Props:
    Destination Connection: c:\archive\
    Overwrite destination: True
    Operation: Move file
    Is Source Path Variable: True
    Source Variable: User::name
    Please share your suggestions on this.
    Regards,
    Vaishu

    Hi Vaishu ,
    Try below links :
    http://www.allaboutmssql.com/2012/09/sql-server-integration-services-rename.html
    http://social.technet.microsoft.com/wiki/contents/articles/18776.ssis-move-a-folder-from-one-drive-to-another-drive-using-the-file-system-task.aspx
    sathya - www.allaboutmssql.com ** Mark as answered if my post solved your problem and Vote as helpful if my post was useful **.

  • Moving files to another directory got an error message [File System Task] Error: An error occurred with the following error message: "Could not find a part of the path.".

    Hi all,
    I am having a list of files in a folder named datafiles and I am processing them one by one when I finish each one I want to move the file into a folder archive.
    I am having a variable named filename and archivefilename and two fileconnections  one is originalfiles and archivefiles
    archivefilename=replace( @[User::filename],"datafiles","archive")
    orginalfiles connection is an expression =@user:filename
    archivefies connection is an expression=@user:archivefilename
    the filename comes from reading the folder that contains those files
    public void Main()
                string[] filenames;
                filenames = Directory.GetFiles(@"C:\luminis\datafiles\");
                Array.Sort(filenames);
                Dts.Variables["filelist"].Value = filenames;
                Dts.TaskResult = (int)ScriptResults.Success;
    The folder c:\luminis\archive\ exists
    why I am getting this error
    My filesystem task : destinationpathvariable =false
    destinationconnection:archivefile
    overwrite=true
    operation=movefile
    issourcepathvariable=false
    sourceconnection=original file
    why am i getting this error[File System Task] Error: An error occurred with the following error message: "Could not find a part of the path.".
    sohairzaki

    there may be 2 problem...
    1> specify a target directory only, not with the file name. 
    OR
    2> Try using the unc,path format \\computername\sharename\
    let us know your observation...
    Let us TRY this | Mail me
    My Blog :: http://quest4gen.blogspot.com/

  • Getting XML data of SSIS Package (which is located in File System) from a query

    Hi,
    We have around 200 SSIS packages deployed to File System. These pacakges are being scheduled using SQL Agent job.
    So, currently I have a list of all the packages and their respective File Path.
    Note : **They are NOT deployed to Server**.
    Now, my task is to search all the packages which has a specific connection in it.
    From the below blog, I got to know we can achieve this by querying the XML data of the SSIS Package.
    https://www.simple-talk.com/sql/ssis/-exploring-ssis-architecture-and-execution-history-through-scripting/.
    But in the above article they are getting the XML definition of the Package from msdb(as it was deployed to server).
    In my requirement, SSIS Packages are in File System. Is there any way to to get the XML definition of these packages using a query.
    Please let me know if the above requirement is not clear or if any further information is required.
    Thanks
    Raksha

    Hi Visakh & Praveen,
    Thanks for the response. 
    @Visakh: The query provided by you gives the information about all the connection strings in the package.
    @Praveen: The query in the link provided by you lists the values of all the properties of the package like MaxerrorCount, CreatorName, CreatorDate and other properties.
    I think, we may have to slightly modify this query to get the connection string values
    Praveen, nice to hear from you after a long time and that too in this forum !! :) Hope you are doing good.
    Thanks
    Raksha

Maybe you are looking for

  • SSL/TLS - secure connection could not be established but passes diagnostics

    Any other ideas for the ever popular inability to create a secure connection issue? I've tried just about everything I could find in all the posts on this issue and continue to get the inability to create a secure connection messag4e when logging in.

  • Contribute 4 Jumbled Layout

    I am having a problem. I have a site that was being edited in Contribute 3 with no trouble. When we upgraded to contribute 4 the site's layout gets jumbled when you are in edit mode. Graphics appear on top of each other and there are large spaces bet

  • Using FCP 4.5HD and a PowerMac dual/dual core model ...

    I'm currently using a PowerMac dual 2.0 Mac and am running FCP 4.5HD without any problems ... PERIOD! However, I'm now considering a move to the next level of Power Macintosh (the dual/dual core model that's currently available on the Apple Web Store

  • Drives other than my primary drive slow to open in finder/photoshop

    Hi, I have upgraded my Mac Pro to have all the bays filled up with drives. I set my primary drive (bay 1) for only applications. I set drive 2 to have documents/media and drive 3 as a scratch drive. The other drives outside of my applications drive g

  • Wish to change/update security questions on iCloud account

    Wish to change/update security questions for my iCloud account. I just changes the password, but could not change old security questions. Thabk you.