sudo dd if=/dev/disk(# of the TM backup) of=/dev/disk(# of the disk you want to do the extra backup to).
The problem with this and similar solutions is that its rather slow. And one could use a delta synching tool, but one needs to make sure that that tool can deal with hard links correctly... I don't think that rsync can, for example. If a backup is done to a sparse bundle instead, delta copying becomes easy. However, there is a lot of technicality involved in all these solutions. Thats why I think that running two backups in parallel is the way to go.
Pretty sure rsync can deal with hard links of files, just not directories.
Thats the problem, since time machine heavily relies on hard linked directories. I had a disaster with an enterprise backup system once. I was careless not to exclude a time machine database from the backup set and few days later I got a rather angry call from the backup server administrator telling my that our machine has sent over 50TB worth of directory copies to the tape. Fun times![]()
Let me give some more details..
This external hd stills gives me access to files but clearly it is about to die. I want to somehow transfer all these files onto another drive before it dies.
I can’t do a simple drag n drop right of this entire folder right?
This external hd stills gives me access to files but clearly it is about to die. I want to somehow transfer all these files onto another drive before it dies.
OP:
DO get a second backup drive, but DON'T put your TM backup on it.
Instead, download either CarbonCopyCloner or SuperDuper, and create a bootable cloned backup. Both CCC and SD are FREE to download and use for 30 days. If you don't mind "doing a complete backup", SD will do this forever without registering (you do have to register to perform incremental backups with SD).
Now you will be backed up "two ways":
- Time Machine backup
- BOOTABLE cloned backup
A better "backup combination" than TM only!
due to error code 36
So I just got a new external HD and tried format it to mac os journaled but I kept getting a stupid "not enough space error" even though it was a brand new drive.
So I formatted the entire disk and it seemed to work and it allowed me to format the drive after that.
I went ahead and drag/dropped the back up from the Old HD to the new HD and i got an error code 36.
I came to turn on my old mac to give it to my mom and found out the mac does NOT start up and crashes. Did tests/etc and found out the internal HD has failed. I have a new hd waiting to go in but I dont want to remove this old hd until i can somehow get my data restored somehow.
OP wrote:
"Is there anyway to take whats left on the old macbook and put it on this NEW ext hd? If so then i dont have to worry about this old ext hd. If there isn't then my only way to retain what i have is from this old ext hd which isn't allowing me to transfer at the moment due to error code 36."
I said it before, and I'll say it again:
CarbonCopyCloner.
I'm still not sure of what exactly you want to do.
Do you want a second backup of a working Mac?
or
Do you just want to copy the contents of one drive to another drive?
What are your goals here?
I have an ext HD that once in a blue moon gets recognized but wont allow me to transfer the content due to error code 36.
And how is this drive formatted now?
If the contents seem ok on it, you could try and dd it over to another drive. (dd pretty much clones it)
The command would be "sudo dd if=/dev/disk(ID of Input drive) of=/dev/disk(ID of output drive)
It won't show progress, and it could take quite a while. If you want to see progress you need to install pv to your path and run sudo dd if=(same as before) | pv | sudo dd of=(same as before)
what is DD?
dd is a Unix command that weirdly enough stands for copy and convert. In the example I gave it clones if (input file) to of (output file)
And said files can also be entire drives.
so how would i do a DD or find a tutorial on this method?
Also, if you know the name of a command but not how to use it you can write "man (name of command)" in the shell and you'll get a manualso how would i do a DD or find a tutorial on this method?