I did something bad. I configured the MSI installer to unpack Strawberry over my existing Strawberry installation.

Deja vu: Strawberry Perl, from 5.18 to 5.22

That leaves one question: If your Strawberry installation has some value for you, why don't you have a backup? And what about the other data on your computer? Do you care about it?

Getting your data backed up is not that hard. I currently use UrBackup (free and open source) for Windows machines, it comes with an ISO image for bare metal recovery (from images), but also does file backups. It runs on a Linux machine with sufficient disk space, and only needs a small agent running on the Windows machines.


For unix machines, I use a script running rsync that creates incremental, hardlinked backups. It started as a script downloaded from somewhere on the WWW, but I have rewritten it several times to match my changing needs. Still, it basically does what that old script did:

  1. Mount the backup disk: mount /dev/some-disk /backup
  2. Create a hardlink copy of the previous backup: cp -al /backup/day-1 /backup/day-0
  3. Update the copy to the current state, i.e. create a backup: rsync -axHAXS --delete --numeric-ids /source /backup/day-0
  4. Rotate the backups, deleting the oldest one first:
    1. rm -rf /backup/day-3
    2. mv /backup/day-2 /backup/day-3
    3. mv /backup/day-1 /backup/day-2
    4. mv /backup/day-0 /backup/day-1
  5. Unmount the backup disk: umount /backup

That also works nicely and safely via ssh, so you can create a backup on a remote disk or RAID. Better yet, if you run a bunch of Unix machines and a backup server, you don't need anything but ssh and rsync installed on the Unix machines, the backup server can do the backup by tunneling rsync via ssh. We use exactly that setup at work.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

In reply to Re: Nooo!... Have I trashed my Strawberry? by afoken
in thread Nooo!... Have I trashed my Strawberry? by Intrepid

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.