Mikesphotaes
Suspended / Banned
- Messages
- 7,842
- Name
- Mike
- Edit My Images
- No
Money!
dont know it was a personal drive of one of our users. she's now looking at a large bill for data recovery.@neil_g
I am really sorry to hear about the issues you have experienced. I hope they were under warranty and you were able to get a replacement.
As far as it concerns the bridge board - it is integrated to keep the form factor of the drive small and it helps prevent issues that could happen with the bridge board being a separate component.
Cheers
~clip~ Motherboards have huge capacitors to ensure steady voltage and current supplies. The external drive don't have that as it relies on the USB supplies from the motherboard which can vary.
No it is not. If you understand how the powers are regulated on a motherboard. Motherboard volt lines are protected by high capacity capacitors. That's why u see those marketing elements of black cap Japanese capacitors. Where the USB volt lines are regulated by MOSFET which are prone to fluctuations. A cheap board will have bear to nothing protection. A top end board will have a less than adaquate capacitor in front of the volt line.Isn't that a contradiction?
Hmm...No it is not. If you understand how the powers are regulated on a motherboard. Motherboard volt lines are protected by high capacity capacitors. That's why u see those marketing elements of black cap Japanese capacitors. Where the USB volt lines are regulated by MOSFET which are prone to fluctuations. A cheap board will have bear to nothing protection. A top end board will have a less than adaquate capacitor in front of the volt line.
@Dorian_WD ..
FOR THE LOVE OF GOD WHY.. have WD in all their wisdom soldered the USB3 connector straight to the hard drive control board on their My Passport models?
:banghead:
Motherboard volt lines are protected by high capacity capacitors.
How do you know this was due to worse quality power? There are 101 reasons it could have died including poor design in the enclosure (which is probably more likely TBH).I do have one died due to electrical issues.
Small form factor and cost.So you go and buy another one... because we're all that stupid![]()
Small form factor and cost.
We've a project using about 250 of these being mailed back and forth to seed data into a data centre for remote backup. Had a few fail which is disappointing as I have two of the older usb2 types (512gb and 1tb) that I've owned for years and live in a backpack that commutes by motorbike everyday in all weathers.
For backup at home, I have an online and, plus two offline large USB drives, swapped every other week and stored offsite.
Unfortunately for you, it is the one that will allow you to do what you want with the least hassle. What you want to do is probably a single command line and then dropping said command line into cron. I backup several machines (some Windows, some *nix) with a couple of well placed rsync commands.Yes. rsync is out of the question. I'm not a computer techie.
The real problem is that it's often easy to do simple things in a GUI, but quite often more difficult to do more complex things.The distros have been working hard to broaden the appeal of their desktop offerings. Making them easier to use these days.
You may think command line usability is low (I'd disagree with that, but then I use it day in, day out and know what it can do) but productivity with it is WAY higher than with a UI. Those that use command line don't do it as some form of badge of honour, we use it because it is the quickest way to get things done. Rather than searching for backup tools though, you probably want to be looking for mirroring software - it describes what you want to do.Anyway this is an old debate. And it's clear which is the more successful way. And it only pops up from time to time when someone has not spent time much time on usability, ergonomics, and learn-ability. Which is a particular interest of mine.
If you take on a Linux distro, you will end up needing the command line at some point. Or spend weeks looking for something that packages the command line for you in a way you want it. You could have written the one liner (because that's all it is) you need to sync the two filesystems by now and have it working - even from a standing start of knowing absolutely nothing. Take a plunge... you might see the lightRight so suggesting to someone that never uses the command line, that it is the right thing for them, regardless of their skill set, where they'd have to learn quite a lot just for that one task is probably not the best solution.
Dont put the linux distros down so. In the mean time they offer a lot in the GUI area. I use them purely via the GUIs. I'm just asking for a recommendation of good app. If you are not into GUIs then thats fine. Others might know about one though.
So... do you have something that works yet? If so, what is it?I'd hoped you'd have understood by now....
Yes. Did you get my point about using the right tool for the job?Did you get my point about user types not all being the same?
Yes. Did you get my point about using the right tool for the job?
Assuming you can access your NAS from the Linux machine as a "local drive" in some way (and you probably already know how to do that since you mention the tools you'd need to do it in the post a few up from this), the command you need is:
rsync -a <source dir> <dest dir>
Where <source dir> is the source directory, <dest dir> is the destination directory. If you want to make sure the files are kept in sync (i.e. when something gets deleted from the source dir, it gets deleted from the destination dir) it's:
rsync -a --delete <source dir> <dest dir>
If you want it to be verbose (sorry, I mean "tell you what's going on whilst I run this crazy command") so you can see what files are being copied (and deleted), it's:
rsync -a -v --delete <source dir> <dest dir>
To store the output so you can review it later, it's:
rsync -a -v --delete <source dir> <dest dir> > /tmp/files-copied.txt 2>&1
(OK, the last bit of that command is confusing, I admit).
To run it at set times (say every 15 minutes of every day) it's:
crontab -e
then in the file you are presented to edit it's:
0/15 * * * * <whatever the command you had above>
To find information on any command without using a GUI:
man <command name>
But I'm sure the GUI tool that you haven't found yet is much easier.
A lathe is a complex and precise tool. You would be confused the first time someone took you through using it - especially if it was a very brief introduction. Having said that, if you want to make objects that a lathe is suitable for producing, you'd persevere.... If you try and find someone to do it for you - you'd better understand the language they use and what a lathe can do if you want good results.I'm with Ian, my head is fair spinning after reading that with my breakfast![]()