Results 1 to 4 of 4

Thread: Accessing Protected Mac OS X Files

  1. #1
    Join Date
    Dec 2010
    Beans
    2

    Accessing Protected Mac OS X Files

    I'm a frequent Ubantu user, and keep a boot disk on hand, which I use to access the files on crashed computers to recover data for people. I've never had any problems in the past as I've only gotten Windows computers. I've been asked to look at a Macbook Pro with OS X 10.4
    I can access most of the files except for the user's Desktop, Pictures, Movies, Music, and Library. I'm told that I don't have the permissions required.
    The Mac has never been password protected, and I can't run the computer with OS X to change any of the settings. I don't want to use a recovery CD until I have all of the user's very important files.
    Is there a way to remove the permission requirement or at least access the files? I can cause whatever damage I want to the OS X core files since I'm reformatting once I'm done, just the documents/pictures/ect. need to be left intact.

  2. #2
    Join Date
    Oct 2010
    Beans
    58
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: Accessing Protected Mac OS X Files

    I would find another mac and boot the troubled HD in "target mode". You will have to use firewire to connect to the other mac, then press and hold T while booting the troubled drive. You will then see the troubled HD on the other mac desktop, and should be able to access it's files without permission troubles. If the troubled HD is too corrupted to boot in target mode, connect it via usb/firewire to the other mac, then run repair disk in Disc Utility. See if it can repair the disc enough to boot into target mode.

    Check this article for more on Target Mode


    Hope this helps.

  3. #3
    Join Date
    Dec 2010
    Beans
    2

    Re: Accessing Protected Mac OS X Files

    Thank you. I ended up reinstalling OS X and archiving (came on the recovery disk). The computer saved all of the user's files and data, and the computer turned on as if it had never crashed.

  4. #4
    Join Date
    Jan 2007
    Beans
    552

    Re: Accessing Protected Mac OS X Files

    Glad it worked. In case you need it in the future, the easiest thing is probably to use sudo to copy the user's files:

    Code:
    sudo cp -a "/media/Macintosh HD/Users/crashy" /media/backupdisk
    the permission problem is because HFS+ supports unix style permissions, so when the drive is mounted they are respected by linux. Naturally the UID and GID are different though so that makes them inaccessible unless you sudo or create a custom user with the same UID and GID as the OSX user.

    you don't see this problem on NTFS disks because the permission scheme is so different that linux just mounts them with permissions disabled.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •