LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 02-01-2013, 07:34 AM   #1
SBFree
Member
 
Registered: Nov 2004
Distribution: Ubuntu
Posts: 70

Rep: Reputation: 15
Recover files from hfsplus partition, Mac file recovery


Hi:
A coworker says they 'lost' their Mac laptop drive and had no backup of media files. He gave me the drive. I would like to recover the media he wants.
I connected the drive and gparted describes it as having 3 partitions:
a fat32 EFI, and two hfs+ partitions called Macintosh HD & Recovery HD.
I can mount the partition hfs+ partition 'Macintosh HD'
with
mount -t hfsplus /dev/sdb2 /mac
but get a permission denied message trying to open or copy the folders that look like media.
I do not want to write to the drive by changing the file permissions.

Is there a way for me to copy folders from this drive without changing the permissions of the folders?

Thanks,
Scott
 
Old 02-01-2013, 07:53 AM   #2
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Personally I would never try to play around and mount stuff but create a disk or partition copy first. That way you have a backup should the HW fail and you can work on the copy without altering it or the original HW. (And if you mount then use "-o ro".) Like with NTFS native OS tools understand their file system best. In absence of that opportunity and depending on the distribution you use you may have a "hfsutils" package for further analysis, or see Gentoo: diskdev_cmds, or try Testdisk and Photorec as they have HFS+ support.
 
1 members found this post helpful.
Old 02-01-2013, 11:31 AM   #3
SBFree
Member
 
Registered: Nov 2004
Distribution: Ubuntu
Posts: 70

Original Poster
Rep: Reputation: 15
Thanks. I have saved and restored partitions with partimage & fsarchiver but never copied a partition. What do you suggest? Thanks for the insight in to how to get started without disturbing the original any more than I may have by mounting it.
Regards
 
Old 02-01-2013, 12:00 PM   #4
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
If you don't need to anticipate HW trouble then 'dd' (man 'dd' fo more) should do or else use whatever tool you're comfortable with that produces raw disk images (proprietary ones, basically). Else see dd_rescue and ddrescue, they're not the same, dcfldd, linen, etc, etc... 'dmesg', 'sfdisk -l', 'blkid' or 'cat /proc/partitions' output to confirm which partition you should image and then to copy the source partition (say "/dev/sdc2") to a file on the mounted "/mnt/bkup" filesystem the simplest invocation is to run 'dd if=/dev/sdc2 of=/mnt/bkup/sdc2.dd'. If you lack disk space and a trade-off wrt time is not a problem you could compress it on the fly: 'dd if=/dev/sdc2|bzip2 > /mnt/bkup/sdc2.dd.bz2'. (As you can see 'dd' uses stdout so network transfers with nc or SSH are easy too.)
 
Old 02-02-2013, 06:55 AM   #5
SBFree
Member
 
Registered: Nov 2004
Distribution: Ubuntu
Posts: 70

Original Poster
Rep: Reputation: 15
Thanks.
Haven't used dd before and tried:
sudo dd if=/dev/sdb2 of=/dev/sda1 conv=notrunc,noerror

Then I made a directory called /recov and tried:
sudo mount -t hfsplus /dev/sda1 /recov

Got error:
mount: wrong fs type, bad option, bad superblock on /dev/sda1,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so

Have to do more reading on dd I guess
Thanks in advance for any help
 
Old 02-02-2013, 07:48 AM   #6
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
I suggested you dump output to a file. hfsutils tools may but tools like Testdisk, Photorec, Foremost, scalpel, pyFLAG, TASK, the Sleuthkit, etc, etc don't require a mounted file system to be able to analyze it (some will take care of any prepping themselves). But hey, if you're not inclined to take cues from what's posted then all I do is shrug and say "only useless things and those for use by skilled operators come without manual"...
 
Old 02-02-2013, 08:11 AM   #7
SBFree
Member
 
Registered: Nov 2004
Distribution: Ubuntu
Posts: 70

Original Poster
Rep: Reputation: 15
Sorry for seeming like had not taken your advice about writing to a file. Before you posted at 1:00 PM I had started dd to make a copy of the partition and then went to work. I didn't get to see your comments until after I returned.

If I dump the output to a file with something like:
dd if=/dev/sdc2 of=/mnt/bkup/sdc2.dd
how will I read the file that is created? dd is new for me. I think I have not used it because of the references to 'disk destroyer'

If I dump to a file do I need to specify bs= to improve performance?
Regards,
 
Old 02-02-2013, 10:41 AM   #8
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by SBFree View Post
Sorry for seeming like had not taken your advice about writing to a file. Before you posted at 1:00 PM I had started dd to make a copy of the partition and then went to work. I didn't get to see your comments until after I returned.
I see. No need to say sorry then.


Quote:
Originally Posted by SBFree View Post
If I dump the output to a file with something like: dd if=/dev/sdc2 of=/mnt/bkup/sdc2.dd how will I read the file that is created?
Kind of depends. Tools I mentioned before work OK with raw disk images files: just supply the complete path and file name. For tools that don't, like the hfsutils tools, you just loop-mount the partition file or let 'kpartx' handle it in case of a full disk image.


Quote:
Originally Posted by SBFree View Post
dd is new for me. I think I have not used it because of the references to 'disk destroyer'
LOL, like Partimage or FSArchiver aren't? ;-p


Quote:
Originally Posted by SBFree View Post
If I dump to a file do I need to specify bs= to improve performance?
The simplest explanation I read is that you should picture using [i,o]bs= as "read(blocksize), write(blocksize), read(blocksize), ...". In short you don't "need" to unless there's a reason. For example with a failing disk you may want to nibble the smallest possible small block size to increase your chances (do read about the difference between ddrescue and dd_rescue) but in common cases (unless the machine has little RAM or the destination optimizes writes differently) you wouldn't be interested in the the effects of say the system bus, disk controllers, drive caches, partial reads, kernel caching or sysctls and just use any block size that is n times the disk block size.
There's lots of opinions (we even got a whole thread devoted to using 'dd' somewhere) but IMHO the only way to know for sure is to test it each time you think it may influence performance. But sometimes you just don't have that luxury.
 
Old 02-05-2013, 07:33 AM   #9
SBFree
Member
 
Registered: Nov 2004
Distribution: Ubuntu
Posts: 70

Original Poster
Rep: Reputation: 15
Just wanted to say thanks for the insights and leads. I recovered 19,000+ photos and movies the teacher had made and not backed up. Now it's up to them to sort through them.
I got over my fear of dd thanks to you. I guess from my registration, I've been using Linux for 8 years and still feel I have a ton to learn.
Scott
 
Old 02-05-2013, 08:11 AM   #10
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by SBFree View Post
Just wanted to say thanks for the insights and leads. I recovered 19,000+ photos and movies the teacher had made and not backed up. Now it's up to them to sort through them.
You're welcome. Note images may store info (EXIF) so exiftools may at least help sort them by shot date or display any comments. Thanks for the feedback. Please mark thread solved. And yes, I learn stuff every day too.
 
  


Reply

Tags
copy, hfsplus, permissions, recovery



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
File Recovery for Mac ceyixhe Linux - Hardware 2 08-07-2009 02:14 PM
Trying to recover failing HD but Knoppix only sees recovery partition. azmodien Linux - Software 6 03-12-2009 05:49 PM
LXer: Recover Linux Files In Few Clicks With Stellar Phoenix Linux Recovery LXer Syndicated Linux News 0 09-23-2008 11:50 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 12:33 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration