If you thought Linux wasn’t ready for desktop prime-time…
…this might convince you.
What there is though is “tens-of-thousands of Goobuntu users. This includes graphic designers, engineers, management, and sales people.”
If you thought Linux wasn’t ready for desktop prime-time…
…this might convince you.
What there is though is “tens-of-thousands of Goobuntu users. This includes graphic designers, engineers, management, and sales people.”
In my role as Maitland Christian School’s IT manager, I’ve been working on a non-proprietary, enterprise-grade backup system that will eventually replace our current ShadowProtect installation.
There are a few reasons for this:
As of today, I’ve completed testing the ingredients of our new backup system, which are as follows.
Given this is primarily a Windows environment, it’s unfortunate to depend on software that isn’t NTFS-aware, but none of the usual suspects offer an equivalent to rsync’s --link-dest
option, which creates full snapshots using hard links. This option makes it possible to create Time Machine like replicas of entire filesystems as they appear at a given point in time, without duplicating files that haven’t changed since the last sync. Furthermore, individual replicas can be deleted ad-hoc without damaging others. Awesome!
To minimise the time and scripting involved in restoring data when needed (and also to make it safe for end-users to – hypothetically! – access snapshots straight off our backup server), it’s important to retain NTFS permissions and ownership. Here’s the command that does it (run immediately after rsync):
robocopy SOURCE DEST /mir /copy:sou /is /it /xl /xx
Note that if you don’t use /mir
, directory permissions won’t be copied. Annoying but true. At least NTFS permissions get attached to hard links and not the underlying files, though! (Not being an NTFS guru, I wasn’t sure if this would be the case or not.)
This ensures that files don’t change while you’re copying them. Microsoft explain it all here.
I’ll let you know if/when I have backup scripts that could be used elsewhere!
Tech: has it really changed our lives?
I’m voting yes. So did Shawn Blanc.